Table 3700 Manual Setup

App
System Application
Namespace
System.Environment.Configuration
Versions
17-25, not in 28
Obsolete
Removed 23.0, seen from 18. The Manual Setup module and its objects have been consolidated in the Guided Experience module. Use the Guided Experience Item table instead.

Fields, 8Keys, 1Obsolete, 1

Versions171819202122232425262728

Source2425

Source in 25

src/System Application/App/Guided Experience/src/Manual Setup/ManualSetup.Table.al80 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.Environment.Configuration;

using System.Apps;

#pragma warning disable AS0039
table 3700 "Manual Setup"
{
    Access = Internal;
    InherentEntitlements = X;
    InherentPermissions = X;
    Caption = 'Manual Setup';
    TableType = Temporary;

    ObsoleteState = Removed;
    ObsoleteTag = '23.0';
    ObsoleteReason = 'The Manual Setup module and its objects have been consolidated in the Guided Experience module. Use the Guided Experience Item table instead.';
    ReplicateData = false;

    fields
    {
        field(1; Name; Text[50])
        {
            Caption = 'Name';
        }
        field(2; "App ID"; Guid)
        {
            Caption = 'App ID';
        }
        field(3; Description; Text[250])
        {
            Caption = 'Description';
        }
        field(4; Keywords; Text[250])
        {
            Caption = 'Keywords';
        }
        field(5; "Setup Page ID"; Integer)
        {
            Caption = 'Setup Page ID';
        }
        field(6; Icon; Media)
        {
            Caption = 'Icon';
        }
        field(7; "Extension Name"; Text[250])
        {
            Caption = 'Extension Name';
            FieldClass = FlowField;
            CalcFormula = lookup("Published Application".Name where(ID = field("App ID")));
            Editable = false;
        }
        field(8; Category; Enum "Manual Setup Category")
        {
            Caption = 'Category';
            Editable = false;
        }
    }

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

    fieldgroups
    {
        fieldgroup(Brick; Description, Name, Icon, Category)
        {
        }
    }
}
#pragma warning restore AS0039