Table 3700 Manual Setup in 24
- 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.
Versions171819202122232425262728latest
Source2425
Source in 24
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
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Name | Text[50] | - |
| 2 | App ID | Guid | - |
| 3 | Description | Text[250] | - |
| 4 | Keywords | Text[250] | - |
| 5 | Setup Page ID | Integer | - |
| 6 | Icon | Media | - |
| 7 | Extension Name | Text[250] | - |
| 8 | Category | Enum Manual Setup Category | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| Key1, clustered | Name | - |