Page 329 Reservation Wksh. Batches, source in 29
Source29
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;
}
}
}
}
}