Page 5184 Comment Archive List, source in 29

Source29

src/Layers/W1/BaseApp/Modules/Foundation/Comments/CommentArchiveList.Page.al45 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.Foundation.Comment;

page 5184 "Comment Archive List"
{
    Caption = 'Comment Archive List';
    DataCaptionFields = "No.", "Version No.";
    Editable = false;
    LinksAllowed = false;
    PageType = List;
    SourceTable = "Comment Line Archive";

    layout
    {
        area(content)
        {
            repeater(Control1)
            {
                ShowCaption = false;
                field("No."; Rec."No.")
                {
                    ApplicationArea = Comments;
                }
                field(Date; Rec.Date)
                {
                    ApplicationArea = Comments;
                }
                field(Comment; Rec.Comment)
                {
                    ApplicationArea = Comments;
                }
                field("Code"; Rec.Code)
                {
                    ApplicationArea = Comments;
                    Visible = false;
                }
            }
        }
    }
}