Page 547 Reminder Attach Ending Line

App
Base Application
Namespace
Microsoft.Sales.Reminder
Versions
25-28
Source table
504

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Sales/Reminder/TermsAndLevels/ReminderAttachEndingLine.Page.al36 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 ending text lines for reminder PDF attachment documents.
/// </summary>
page 547 "Reminder Attach Ending Line"
{
    PageType = ListPart;
    SourceTable = "Reminder Attachment Text Line";
    Caption = 'Reminder Attachment Ending 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';
                    ApplicationArea = All;
                }
            }
        }
    }
}