Page extension 99000780 Mfg. Finance Manager RC
- App
- Base Application
- Namespace
- Microsoft.Finance.RoleCenters
- Versions
- 26-28
- Extends
- Finance Manager Role Center
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Manufacturing/Finance/RoleCenters/MfgFinanceManagerRC.PageExt.al43 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Finance.RoleCenters;
using Microsoft.Inventory.Reports;
using Microsoft.Manufacturing.Document;
using Microsoft.Manufacturing.Reports;
pageextension 99000780 "Mfg. Finance Manager RC" extends "Finance Manager Role Center"
{
actions
{
addafter("Adjust Cost - Item Entries")
{
action("Update Unit Cost...")
{
ApplicationArea = Manufacturing;
Caption = 'Update Unit Costs...';
RunObject = report "Update Unit Cost";
}
}
addafter("Status")
{
action("Cost Shares Breakdown")
{
ApplicationArea = Manufacturing;
Caption = 'Cost Shares Breakdown';
RunObject = report "Cost Shares Breakdown";
}
}
addafter("Inventory Valuation")
{
action("Inventory Valuation - WIP")
{
ApplicationArea = Manufacturing;
Caption = 'Production Order - WIP';
RunObject = report "Inventory Valuation - WIP";
}
}
}
}