Page 547 Reminder Attach Ending Line, source in 29
Source29
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;
}
}
}
}
}