Page 1052 Reminder Terms Translation

App
Base Application
Namespace
Microsoft.Sales.Reminder
Versions
17-28
Source table
1052

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Sales/Reminder/ReminderTermsTranslation.Page.al57 lines, Copyright (c) Microsoft Corporation. MIT

#if not CLEAN29
// ------------------------------------------------------------------------------------------------
// 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 language translations for reminder terms note text to support multi-language reminders.
/// </summary>
page 1052 "Reminder Terms Translation"
{
    Caption = 'Reminder Terms Translation';
    DataCaptionExpression = PageCaptionText;
    SourceTable = "Reminder Terms Translation";
    ObsoleteState = Pending;
    ObsoleteReason = 'Use page 1897 "Reminder Term Communication" instead.';
    ObsoleteTag = '29.0';

    layout
    {
        area(content)
        {
            repeater(Control1004)
            {
                ShowCaption = false;
                field("Reminder Terms Code"; Rec."Reminder Terms Code")
                {
                    ApplicationArea = Suite;
                    Visible = false;
                }
                field("Language Code"; Rec."Language Code")
                {
                    ApplicationArea = Suite;
                }
                field("Note About Line Fee on Report"; Rec."Note About Line Fee on Report")
                {
                    ApplicationArea = Suite;
                }
            }
        }
    }

    actions
    {
    }

    trigger OnOpenPage()
    begin
        PageCaptionText := Rec."Reminder Terms Code";
    end;

    var
        PageCaptionText: Text;
}
#endif