Table 8 Language
- App
- System Application
- Namespace
- System.Globalization
- Versions
- 17-28
Fields, 4Keys, 2Procedures, 1Obsolete, 1
Versions171819202122232425262728
Source in 29
src/System Application/App/Language/src/Language.Table.al67 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;
/// <summary>
/// Table that contains the available application languages.
/// </summary>
table 8 Language
{
Access = Public;
LookupPageId = Languages;
InherentEntitlements = RX;
InherentPermissions = RX;
fields
{
field(1; "Code"; Code[10])
{
DataClassification = SystemMetadata;
NotBlank = true;
}
field(2; Name; Text[50])
{
DataClassification = SystemMetadata;
}
field(6; "Windows Language ID"; Integer)
{
DataClassification = SystemMetadata;
BlankZero = true;
TableRelation = "Windows Language";
trigger OnValidate()
begin
CalcFields("Windows Language Name");
end;
}
field(7; "Windows Language Name"; Text[80])
{
CalcFormula = lookup("Windows Language".Name where("Language ID" = field("Windows Language ID")));
Editable = false;
FieldClass = FlowField;
}
}
keys
{
key(Key1; "Code")
{
Clustered = true;
}
key(Key2; "Windows Language ID")
{
}
}
fieldgroups
{
fieldgroup(Brick; Name)
{
}
}
}