Table 3700 Manual Setup in 25

App
System Application
Namespace
System.Environment.Configuration
Obsolete
Removed 23.0. The Manual Setup module and its objects have been consolidated in the Guided Experience module. Use the Guided Experience Item table instead.

Fields, 8Keys, 1

Versions171819202122232425262728latest

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

Fields, 8

IdNameTypeObsolete
1NameText[50]-
2App IDGuid-
3DescriptionText[250]-
4KeywordsText[250]-
5Setup Page IDInteger-
6IconMedia-
7Extension NameText[250]-
8CategoryEnum Manual Setup Category-

Keys, 1

NameFieldsObsolete
Key1, clusteredName-