Page 329 Reservation Wksh. Batches

App
Base Application
Namespace
Microsoft.Inventory.Tracking
Versions
23-28
Source table
345

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Inventory/Tracking/ReservationWkshBatches.Page.al40 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.Tracking;

page 329 "Reservation Wksh. Batches"
{
    PageType = List;
    ApplicationArea = Reservation;
    SourceTable = "Reservation Wksh. Batch";
    CardPageId = "Reservation Wksh. Batch Card";
    Editable = false;

    layout
    {
        area(Content)
        {
            repeater(GroupName)
            {
                ShowCaption = false;
                field(Name; Rec.Name)
                {
                    Caption = 'Name';
                }
                field(Description; Rec.Description)
                {
                    Caption = 'Description';
                }
                field("No. of Lines"; Rec."No. of Lines")
                {
                    ApplicationArea = Reservation;
                    ToolTip = 'Specifies the number of lines in this worksheet batch.';
                    Visible = false;
                }
            }
        }
    }
}