Table 463 Shipment Method Translation, source in 29

Source29

src/Layers/W1/BaseApp/Foundation/Shipping/ShipmentMethodTranslation.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.Shipping;

using System.Globalization;

table 463 "Shipment Method Translation"
{
    Caption = 'Shipment Method Translation';
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Shipment Method"; Code[10])
        {
            Caption = 'Shipment Method';
            TableRelation = "Shipment Method";
        }
        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 shipment method.';
        }
    }

    keys
    {
        key(Key1; "Shipment Method", "Language Code")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}