Page extension 6493 Serv. Workflow Item Entity

App
Base Application
Namespace
System.Automation
Versions
25-28
Extends
Workflow - Item Entity

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Service/System/ServWorkflowItemEntity.PageExt.al31 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 System.Automation;

pageextension 6493 "Serv. Workflow Item Entity" extends "Workflow - Item Entity"
{
    layout
    {
        addafter(qtyPicked)
        {
            field(serviceItemGroup; Rec."Service Item Group")
            {
                ApplicationArea = All;
                Caption = 'Service Item Group', Locked = true;
            }
            field(qtyOnServiceOrder; Rec."Qty. on Service Order")
            {
                ApplicationArea = All;
                Caption = 'Qty. on Service Order', Locked = true;
            }
            field(resQtyOnServiceOrders; Rec."Res. Qty. on Service Orders")
            {
                ApplicationArea = All;
                Caption = 'Res. Qty. on Service Orders', Locked = true;
            }
        }
    }
}