Page extension 99000834 Mfg. Planning Component List

App
Base Application
Namespace
Microsoft.Inventory.Planning
Versions
27-28
Extends
Planning Component List

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Manufacturing/Inventory/Planning/MfgPlanningComponentList.PageExt.al29 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.Inventory.Planning;

pageextension 99000834 "Mfg. Planning Component List" extends "Planning Component List"
{
    layout
    {
        addafter(Description)
        {
            field("Scrap %"; Rec."Scrap %")
            {
                ApplicationArea = Planning;
                ToolTip = 'Specifies the percentage of the item that you expect to be scrapped in the production process.';
                Visible = false;
            }
        }
        addafter("Location Code")
        {
            field("Routing Link Code"; Rec."Routing Link Code")
            {
                ApplicationArea = Planning;
                ToolTip = 'Specifies a routing link code to link a planning component with a specific operation.';
            }
        }
    }
}