Page 9065 Plan Configurations Part, source in 29

Source242526272829

src/System Application/App/Azure AD Plan/src/Plan Configuration/PlanConfigurationsPart.Page.al43 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>
/// List part page to integrate the plan configurations.
/// </summary>
page 9065 "Plan Configurations Part"
{
    Caption = 'License Configurations';
    Editable = false;
    PageType = ListPart;
    SourceTable = "Plan Configuration";
    CardPageId = "Plan Configuration Card";
    Permissions = tabledata "Plan Configuration" = r;
    Extensible = false;

    layout
    {
        area(Content)
        {
            repeater(Group)
            {
                field("Plan Name"; Rec."Plan Name")
                {
                    ApplicationArea = All;
                    Caption = 'Licenses';
                    ToolTip = 'Specifies the name of the license.';
                }
                field(Customized; Rec.Customized)
                {
                    ApplicationArea = All;
                    Caption = 'Permissions Customized';
                    ToolTip = 'Specifies if the permissions are customized.';
                }
            }
        }
    }
}