Page 534 Reminder Attach Beginning Line, source in 29

Source29

src/Layers/W1/BaseApp/Sales/Reminder/TermsAndLevels/ReminderAttachBeginningLine.Page.al37 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.Sales.Reminder;

/// <summary>
/// Manages the beginning text lines for reminder PDF attachment documents.
/// </summary>
page 534 "Reminder Attach Beginning Line"
{
    PageType = ListPart;
    SourceTable = "Reminder Attachment Text Line";
    Caption = 'Reminder Attachment Beginning Text Line';
    Editable = true;
    AutoSplitKey = true;
    DelayedInsert = true;
    ModifyAllowed = true;
    DeleteAllowed = true;
    MultipleNewLines = true;

    layout
    {
        area(Content)
        {
            repeater(Lines)
            {
                field(Text; Rec.Text)
                {
                    Caption = 'Text';
                    ToolTip = 'Specifies the text of the reminder attachment beginning line for the selected language.';
                    ApplicationArea = All;
                }
            }
        }
    }
}