Page 80 Country/Region Translations
- App
- Base Application
- Namespace
- Microsoft.Foundation.Address
- Versions
- 22-28
- Source table
- 11
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/Foundation/Address/CountryRegionTranslations.Page.al33 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.Address;
page 80 "Country/Region Translations"
{
Caption = 'Country/Region Translations';
PageType = List;
ApplicationArea = All;
UsageCategory = None;
SourceTable = "Country/Region Translation";
layout
{
area(Content)
{
repeater(Lines)
{
field("Language Code"; Rec."Language Code")
{
ApplicationArea = All;
}
field(Name; Rec.Name)
{
ApplicationArea = All;
}
}
}
}
}