Page extension 99000780 Mfg. Finance Manager RC, source in 29

Source29

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";
            }
        }
    }
}