Page 9216 Time Zones Lookup in 27

App
System Application
Namespace
System.DateTime
Source table
2000000164

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Time Zone Selection/src/TimeZonesLookup.Page.al42 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.DateTime;

/// <summary>
/// List page that contains all Time zones.
/// </summary>
page 9216 "Time Zones Lookup"
{
    Caption = 'Time Zones';
    PageType = List;
    SourceTable = "Time Zone";
    Permissions = tabledata "Time Zone" = r;
    InherentEntitlements = X;
    InherentPermissions = X;

    layout
    {
        area(Content)
        {
            repeater(Group)
            {
                field(ID; Rec.ID)
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the ID of the time zone.';
                }
                field("Display Name"; Rec."Display Name")
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the full name of the time zone.';
                }
            }
        }
    }

}