Page 9826 User Plans FactBox, source in 25

Source242526272829metadata in 25

src/System Application/App/Azure AD Plan/src/UserPlansFactBox.Page.al42 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 the plans assigned to users.
/// </summary>
page 9826 "User Plans FactBox"
{
    Caption = 'User Plans';
    Editable = false;
    LinksAllowed = false;
    PageType = ListPart;
    ShowFilter = false;
    SourceTable = "User Plan";
    InsertAllowed = false;
    ModifyAllowed = false;
    DeleteAllowed = false;
    Permissions = tabledata "User Plan" = r;

    layout
    {
        area(Content)
        {
            repeater(Group)
            {
                field(Name; Rec."Plan Name")
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the name of the plan.';
                    Caption = 'Name';
                }
            }
        }
    }

}