Page 8367 MCP Query Config Tool Lookup, source in 29

Source2829

src/System Application/App/MCP/src/Configuration/Pages/MCPQueryConfigToolLookup.Page.al69 lines, Copyright (c) Microsoft Corporation. MIT

#if not CLEAN29
// ------------------------------------------------------------------------------------------------
// 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;

using System.Reflection;

page 8367 "MCP Query Config Tool Lookup"
{
    PageType = List;
    ApplicationArea = All;
    SourceTable = "Query Metadata";
    Caption = 'MCP Query API Tools';
    Extensible = false;
    Editable = false;
    InsertAllowed = false;
    ModifyAllowed = false;
    DeleteAllowed = false;
    InherentEntitlements = X;
    InherentPermissions = X;
    ObsoleteState = Pending;
    ObsoleteReason = 'Replaced by page "MCP API Object Lookup", which lists API pages and API queries together.';
    ObsoleteTag = '29.0';

    layout
    {
        area(Content)
        {
            repeater(Control1)
            {
                field(ID; Rec.ID)
                {
                    Caption = 'ID';
                    ToolTip = 'Specifies the unique identifier for the query API tool.';
                }
                field(Name; Rec.Name)
                {
                    Caption = 'Name';
                    ToolTip = 'Specifies the name of the query API tool.';
                }
                field(EntityName; Rec.EntityName)
                {
                    Caption = 'Entity Name';
                    ToolTip = 'Specifies the entity name of the query API tool.';
                }
                field(APIPublisher; Rec.APIPublisher)
                {
                    Caption = 'API Publisher';
                    ToolTip = 'Specifies the API publisher of the query API tool.';
                }
                field(APIGroup; Rec.APIGroup)
                {
                    Caption = 'API Group';
                    ToolTip = 'Specifies the API group of the query API tool.';
                }
                field(APIVersion; Rec.APIVersion)
                {
                    Caption = 'API Version';
                    ToolTip = 'Specifies the API version of the query API tool.';
                }
            }
        }
    }
}
#endif