Query 775 Plan in 24
- App
- System Application
- Namespace
- System.Azure.Identity
Versions171819202122232425262728latest
Source in 24
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")
{
}
}
}
}