Table 466 Payment Method Translation
- App
- Base Application
- Namespace
- Microsoft.Bank.BankAccount
- Versions
- 17-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Bank/BankAccount/PaymentMethodTranslation.Table.al63 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.Bank.BankAccount;
using System.Globalization;
/// <summary>
/// Stores multi-language translations for payment method descriptions.
/// Enables localized payment method names for international business operations.
/// </summary>
/// <remarks>
/// Links to Payment Method and Language tables. Used by Payment Method for description translation.
/// </remarks>
table 466 "Payment Method Translation"
{
Caption = 'Payment Method Translation';
DataClassification = CustomerContent;
fields
{
/// <summary>
/// Payment method code being translated.
/// </summary>
field(1; "Payment Method Code"; Code[10])
{
Caption = 'Payment Method Code';
TableRelation = "Payment Method";
}
/// <summary>
/// Language code for the 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 business partners abroad, such as an item description on an order confirmation.';
TableRelation = Language;
}
/// <summary>
/// Translated description text for the payment method in the specified language.
/// </summary>
field(3; Description; Text[100])
{
Caption = 'Description';
ToolTip = 'Specifies the translation of the payment method.';
}
}
keys
{
key(Key1; "Payment Method Code", "Language Code")
{
Clustered = true;
}
}
fieldgroups
{
}
}