Page 5750 Inventory Comment Sheet
- App
- Base Application
- Namespace
- Microsoft.Inventory.Comment
- Versions
- 17-28
- Source table
- 5748
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Inventory/Comment/InventoryCommentSheet.Page.al52 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.Comment;
page 5750 "Inventory Comment Sheet"
{
AutoSplitKey = true;
Caption = 'Comment Sheet';
DataCaptionFields = "Document Type", "No.";
DelayedInsert = true;
LinksAllowed = false;
MultipleNewLines = true;
PageType = List;
SourceTable = "Inventory Comment Line";
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field(Date; Rec.Date)
{
ApplicationArea = Comments;
}
field(Comment; Rec.Comment)
{
ApplicationArea = Comments;
}
field("Code"; Rec.Code)
{
ApplicationArea = Comments;
Visible = false;
}
}
}
}
actions
{
}
trigger OnNewRecord(BelowxRec: Boolean)
begin
Rec.SetUpNewLine();
end;
}