Page 9823 User Plan Members FactBox

App
System Application
Namespace
System.Azure.Identity
Versions
17-28
Source table
9005

Versions171819202122232425262728

Source242526272829

Source in 29

src/System Application/App/Azure AD Plan/src/UserPlanMembersFactBox.Page.al40 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>
/// ListPart page that contains all the user plan members.
/// </summary>
page 9823 "User Plan Members FactBox"
{
    Caption = 'Users in Plan';
    Editable = false;
    PageType = ListPart;
    SourceTable = "User Plan";
    ContextSensitiveHelpPage = 'ui-how-users-permissions';
    Permissions = tabledata "User Plan" = r;

    layout
    {
        area(Content)
        {
            repeater(Group)
            {
                field("User Name"; Rec."User Name")
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the short name for the user.';
                }
                field("Plan Name"; Rec."Plan Name")
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the subscription plan.';
                }
            }
        }
    }

}