Table 2611 Feature Dependency in 27

App
System Application
Namespace
System.Environment.Configuration

Fields, 2Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Feature Key/src/FeatureDependency.Table.al39 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;

/// <summary>
/// Temporary table stores pairs of the dependent features.
/// </summary>
table 2611 "Feature Dependency"
{
    TableType = Temporary;
    InherentEntitlements = X;
    InherentPermissions = X;

    fields
    {
        field(1; "Feature Key"; Text[50])
        {
            Caption = 'Feature Key';
        }
        field(2; "Parent Feature Key"; Text[50])
        {
            Caption = 'Parent Feature Key';
        }
    }

    keys
    {
        key(PK; "Feature Key", "Parent Feature Key")
        { }
    }

    trigger OnInsert()
    begin
        // FeatureDependencyFacade.ValidateDependency(Rec);
    end;
}

Fields, 2

IdNameTypeObsolete
1Feature KeyText[50]-
2Parent Feature KeyText[50]-

Keys, 1

NameFieldsObsolete
PKFeature Key, Parent Feature Key-