Table 2509 Extension Pending Setup in 24

App
System Application
Namespace
System.Apps

Fields, 3Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 24

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

IdNameTypeObsolete
1User IdGuid-
2App IdGuid-
3Created OnDateTime-

Keys, 1

NameFieldsObsolete
Key1, clusteredUser Id-