Table 4331 Agent Creation Control Lookup

App
System Application
Namespace
System.Agents
Versions
28

Fields, 3Keys, 1

Versions171819202122232425262728

Source2829

Source in 29

src/System Application/App/Agent/Setup/AgentCreationControls/AgentCreationControlLookup.Table.al54 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.Agents;

table 4331 "Agent Creation Control Lookup"
{
    Access = Internal;
    Caption = 'Agent Creation Control Lookup';
    DataClassification = CustomerContent;
    InherentEntitlements = RIMDX;
    InherentPermissions = RIMDX;
    TableType = Temporary;

    fields
    {
        field(1; ID; Integer)
        {
            AutoIncrement = true;
            Caption = 'ID';
        }
        field(2; "Key"; Text[250])
        {
            Caption = 'Key';
            ToolTip = 'Specifies the key.';
        }
        field(3; Value; Text[2048])
        {
            Caption = 'Value';
            ToolTip = 'Specifies the value.';
        }
    }

    keys
    {
        key(Key1; ID)
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
        fieldgroup(DropDown; "Key")
        {
        }
        fieldgroup(Brick; "Key", Value)
        {
        }
    }
}