Table 1052 Reminder Terms Translation, source in 29
Source29
src/Layers/W1/BaseApp/Sales/Reminder/ReminderTermsTranslation.Table.al64 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;
using System.Globalization;
/// <summary>
/// Stores translated reminder note text for different languages linked to reminder terms.
/// </summary>
table 1052 "Reminder Terms Translation"
{
Caption = 'Reminder Terms Translation';
#if not CLEAN29
DrillDownPageID = "Reminder Terms Translation";
LookupPageID = "Reminder Terms Translation";
#endif
DataClassification = CustomerContent;
fields
{
/// <summary>
/// Specifies the reminder terms to which this translation belongs.
/// </summary>
field(1; "Reminder Terms Code"; Code[10])
{
Caption = 'Reminder Terms Code';
ToolTip = 'Specifies translation of reminder terms so that customers are reminded in their own language.';
TableRelation = "Reminder Terms";
}
/// <summary>
/// Specifies the language code for this translation.
/// </summary>
field(2; "Language Code"; Code[10])
{
Caption = 'Language Code';
ToolTip = 'Specifies the language that is used when translating specified text on documents to foreign business partner, such as an item description on an order confirmation.';
NotBlank = true;
TableRelation = Language;
}
/// <summary>
/// Contains the translated note about line fees that appears on reminder reports in this language.
/// </summary>
field(3; "Note About Line Fee on Report"; Text[150])
{
Caption = 'Note About Line Fee on Report';
ToolTip = 'Specifies that any notes about line fees will be added to the reminder.';
}
}
keys
{
key(Key1; "Reminder Terms Code", "Language Code")
{
Clustered = true;
}
}
fieldgroups
{
}
}