Table 3712 Translation in 27

App
System Application
Namespace
System.Globalization

Fields, 6Keys, 2

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Translation/src/Translation.Table.al78 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 System.Globalization;

table 3712 Translation
{
    Caption = 'Translation';
    Access = Internal;
    InherentEntitlements = X;
    InherentPermissions = X;

    fields
    {
        field(1; "Language ID"; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Language ID';
            TableRelation = Language."Windows Language ID";
        }
        field(2; "System ID"; Guid)
        {
            DataClassification = SystemMetadata;
            Caption = 'System ID';
            Editable = false;
        }
        field(3; "Table ID"; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Table ID';
            Editable = false;
        }
        field(4; "Field ID"; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Field ID';
            Editable = false;
        }
        field(5; Value; Text[2048])
        {
            DataClassification = CustomerContent;
            Caption = 'Value';
        }
        field(6; "Language Name"; Text[50])
        {
            CalcFormula = lookup(Language.Name where("Windows Language ID" = field("Language ID")));
            Caption = 'Language Name';
            Editable = false;
            FieldClass = FlowField;
        }
    }

    keys
    {
        key(Key1; "Language ID", "System ID", "Field ID")
        {
            Clustered = true;
        }
        key(Key2; "Table ID", "Field ID")
        {
        }
    }


    trigger OnInsert()
    begin
        TestField("Language ID");
    end;

    trigger OnModify()
    begin
        TestField("Language ID");
    end;
}

Fields, 6

IdNameTypeObsolete
1Language IDInteger-
2System IDGuid-
3Table IDInteger-
4Field IDInteger-
5ValueText[2048]-
6Language NameText[50]-

Keys, 2

NameFieldsObsolete
Key1, clusteredLanguage ID, System ID, Field ID-
Key2Table ID, Field ID-