Table 462 Payment Term Translation

App
Base Application
Namespace
Microsoft.Foundation.PaymentTerms
Versions
17-28

Fields, 3Keys, 1

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Foundation/PaymentTerms/PaymentTermTranslation.Table.al47 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.Foundation.PaymentTerms;

using System.Globalization;

table 462 "Payment Term Translation"
{
    Caption = 'Payment Term Translation';
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Payment Term"; Code[10])
        {
            Caption = 'Payment Term';
            TableRelation = "Payment Terms";
        }
        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.';
            TableRelation = Language;
        }
        field(3; Description; Text[100])
        {
            Caption = 'Description';
            ToolTip = 'Specifies the translation of the payment term.';
        }
    }

    keys
    {
        key(Key1; "Payment Term", "Language Code")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}