Page 9825 Plans FactBox, source in 25

Source242526272829metadata in 25

src/System Application/App/Azure AD Plan/src/PlansFactBox.Page.al41 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 plans.
/// </summary>
page 9825 "Plans FactBox"
{
    Caption = 'Plans';
    Editable = false;
    LinksAllowed = false;
    PageType = ListPart;
    ShowFilter = false;
    SourceTable = Plan;
    ContextSensitiveHelpPage = 'ui-how-users-permissions';
    InherentEntitlements = X;
    InherentPermissions = X;
    Permissions = tabledata Plan = r;

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

}