Page 620 IC Comment Sheet
- App
- Base Application
- Namespace
- Microsoft.Intercompany.Comment
- Versions
- 17-28
- Source table
- 424
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Finance/Intercompany/Comment/ICCommentSheet.Page.al60 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.Intercompany.Comment;
/// <summary>
/// List interface for managing comments on intercompany transactions.
/// Provides collaborative annotation capabilities for transaction communication between partner companies.
/// </summary>
page 620 "IC Comment Sheet"
{
AutoSplitKey = true;
Caption = 'IC Comment Sheet';
DataCaptionFields = "Table Name", "Transaction No.", "IC Partner Code";
DelayedInsert = true;
LinksAllowed = false;
MultipleNewLines = true;
PageType = List;
SourceTable = "IC Comment Line";
layout
{
area(content)
{
repeater(Control1)
{
ShowCaption = false;
field(Date; Rec.Date)
{
ApplicationArea = Intercompany;
ToolTip = 'Specifies the date the comment was created.';
}
field("Created By IC Partner Code"; Rec."Created By IC Partner Code")
{
ApplicationArea = Intercompany;
Caption = 'Created By';
ToolTip = 'The IC Partner Code of the company that created the comment.';
Editable = false;
}
field(Comment; Rec.Comment)
{
ApplicationArea = Intercompany;
ToolTip = 'Specifies the comment.';
}
}
}
}
actions
{
}
trigger OnNewRecord(BelowxRec: Boolean)
begin
Rec.SetUpNewLine();
end;
}