Page 8367 MCP Query Config Tool Lookup in 28
- App
- System Application
- Namespace
- System.MCP
- Source table
- 2000000142
Versions171819202122232425262728latest
Source2829
Source in 28
src/System Application/App/MCP/src/Configuration/Pages/MCPQueryConfigToolLookup.Page.al63 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;
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;
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.';
}
}
}
}
}