Page extension 99000761 Mfg. Purchasing Manager RC, source in 29
Source29
src/Layers/W1/BaseApp/Manufacturing/Purchases/RoleCenters/MfgPurchasingManagerRC.PageExt.al61 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.Purchases.RoleCenters;
using Microsoft.Manufacturing.Document;
using Microsoft.Manufacturing.Reports;
pageextension 99000761 "Mfg. Purchasing Manager RC" extends "Purchasing Manager Role Center"
{
actions
{
addafter("Certificates of Supply")
{
#if not CLEAN28
action("Subcontracting Worksheet")
{
ApplicationArea = Manufacturing;
Caption = 'Subcontracting Worksheets (Obsolete)';
#pragma warning disable AL0432
RunObject = page Microsoft.Manufacturing.Journal."Subcontracting Worksheet";
#pragma warning restore AL0432
ObsoleteReason = 'Will be replaced by the Subcontracting App.';
ObsoleteState = Pending;
ObsoleteTag = '28.0';
}
#endif
}
addafter("Jobs")
{
action("Planned Prod. Orders")
{
ApplicationArea = Manufacturing;
Caption = 'Planned Production Orders';
RunObject = page "Planned Production Orders";
}
action("Firm Planned Prod. Orders")
{
ApplicationArea = Manufacturing;
Caption = 'Firm Planned Prod. Orders';
RunObject = page "Firm Planned Prod. Orders";
}
}
addafter("Item/Vendor Catalog1")
{
action("Prod. Order - Shortage List")
{
ApplicationArea = Manufacturing;
Caption = 'Prod. Order - Shortage List';
RunObject = report "Prod. Order - Shortage List";
}
action("Prod. Order - Mat. Requisition")
{
ApplicationArea = Manufacturing;
Caption = 'Prod. Order - Mat. Requisition';
RunObject = report "Prod. Order - Mat. Requisition";
}
}
}
}