Page 858 Cash Flow Comment List, source in 29
Source29
src/Layers/W1/BaseApp/CashFlow/Account/CashFlowCommentList.Page.al51 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.CashFlow.Comment;
page 858 "Cash Flow Comment List"
{
Caption = 'Cash Flow Comment List';
Editable = false;
PageType = List;
SourceTable = "Cash Flow Account Comment";
layout
{
area(content)
{
repeater(Control1000)
{
ShowCaption = false;
field("No."; Rec."No.")
{
ApplicationArea = Basic, Suite;
ToolTip = 'Specifies the number of the involved entry or record, according to the specified number series.';
}
field(Date; Rec.Date)
{
ApplicationArea = Basic, Suite;
ToolTip = 'Specifies the date of the cash flow comment.';
}
field(Comment; Rec.Comment)
{
ApplicationArea = Basic, Suite;
ToolTip = 'Specifies the comment for the record.';
}
field("Code"; Rec.Code)
{
ApplicationArea = Basic, Suite;
ToolTip = 'Specifies the code of the record.';
Visible = false;
}
}
}
}
actions
{
}
}