Query 775 Plan, source in 28

Source242526272829metadata in 28

src/System Application/App/Azure AD Plan/src/Plan.Query.al37 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;

using System.Security.AccessControl;

/// <summary>
/// Displays a list of plans.
/// </summary>
query 775 Plan
{
    Caption = 'Plan';
    InherentEntitlements = X;
    InherentPermissions = X;

    Permissions = tabledata Plan = r,
                  tabledata User = r;

    elements
    {
        dataitem(Plan; Plan)
        {
            column(Plan_ID; "Plan ID")
            {
            }
            column(Plan_Name; Name)
            {
            }
            column(Role_Center_ID; "Role Center ID")
            {
            }
        }
    }
}