Table 2509 Extension Pending Setup in 27
- App
- System Application
- Namespace
- System.Apps
Versions171819202122232425262728latest
Source in 27
src/System Application/App/Extension Management/src/ExtensionPendingSetup.Table.al44 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.Apps;
/// <summary>This table is used to store information about extensions that was installed but did not run the setup.</summary>
table 2509 "Extension Pending Setup"
{
Caption = 'Extension Pending Setup';
Extensible = false;
ReplicateData = false;
InherentEntitlements = rX;
InherentPermissions = rX;
fields
{
field(1; "User Id"; Guid)
{
Caption = 'User Id';
DataClassification = SystemMetadata;
}
field(2; "App Id"; Guid)
{
Caption = 'App Id';
DataClassification = SystemMetadata;
}
field(3; "Created On"; DateTime)
{
Caption = 'Created On';
DataClassification = SystemMetadata;
}
}
keys
{
key(Key1; "User Id")
{
Clustered = true;
}
}
}Fields, 3
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | User Id | Guid | - |
| 2 | App Id | Guid | - |
| 3 | Created On | DateTime | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| Key1, clustered | User Id | - |