Page 5891 Phys. Inventory Comment Sheet, source in 29
Source29
src/Layers/W1/BaseApp/Inventory/Counting/Comment/PhysInventoryCommentSheet.Page.al59 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.Counting.Comment;
page 5891 "Phys. Inventory Comment Sheet"
{
AutoSplitKey = true;
Caption = 'Phys. Inventory Comment Sheet';
DataCaptionFields = "Document Type", "Order No.", "Recording No.";
DelayedInsert = true;
MultipleNewLines = true;
PageType = List;
SourceTable = "Phys. Invt. Comment Line";
layout
{
area(content)
{
repeater(Control40)
{
ShowCaption = false;
field(Date; Rec.Date)
{
ApplicationArea = Warehouse;
}
field(Comment; Rec.Comment)
{
ApplicationArea = Warehouse;
}
field("Code"; Rec.Code)
{
ApplicationArea = Warehouse;
Visible = false;
}
}
}
area(factboxes)
{
systempart(Control1905767507; Notes)
{
ApplicationArea = Notes;
Visible = true;
}
}
}
actions
{
}
trigger OnNewRecord(BelowxRec: Boolean)
begin
Rec.SetUpNewLine();
end;
}