Page 8366 MCP API Version Lookup, source in 28

Source2829metadata in 28

src/System Application/App/MCP/src/Configuration/Pages/MCPAPIVersionLookup.Page.al36 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.MCP;

page 8366 "MCP API Version Lookup"
{
    PageType = List;
    ApplicationArea = All;
    SourceTable = "MCP API Version";
    Caption = 'API Versions';
    Extensible = false;
    Editable = false;
    InsertAllowed = false;
    ModifyAllowed = false;
    DeleteAllowed = false;
    InherentEntitlements = X;
    InherentPermissions = X;

    layout
    {
        area(Content)
        {
            repeater(Control1)
            {
                field("API Version"; Rec."API Version")
                {
                    Caption = 'API Version';
                    ToolTip = 'Specifies the API version.';
                }
            }
        }
    }
}