Table 9004 Plan in 27

App
System Application
Namespace
System.Azure.Identity

Fields, 3Keys, 2

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Azure AD Plan/src/Plan.Table.al49 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.Azure.Identity;

/// <summary>
/// Displays a list of plans.
/// </summary>
table 9004 Plan
{
    Caption = 'Subscription Plan';
    DataPerCompany = false;
    ReplicateData = false;
    Access = Internal;
    InherentEntitlements = rX;
    InherentPermissions = rX;

    fields
    {
        field(1; "Plan ID"; Guid)
        {
            DataClassification = SystemMetadata;
            Caption = 'Plan ID';
        }
        field(2; Name; Text[50])
        {
            DataClassification = SystemMetadata;
            Caption = 'Name';
        }
        field(3; "Role Center ID"; Integer)
        {
            DataClassification = SystemMetadata;
            Caption = 'Role Center ID';
        }
    }

    keys
    {
        key(Key1; "Plan ID")
        {
            Clustered = true;
        }
        key(Key2; Name)
        {
        }
    }
}

Fields, 3

IdNameTypeObsolete
1Plan IDGuid-
2NameText[50]-
3Role Center IDInteger-

Keys, 2

NameFieldsObsolete
Key1, clusteredPlan ID-
Key2Name-