Page 1994 Checklist Item Roles, source in 28

Source242526272829metadata in 28

src/System Application/App/Guided Experience/src/Checklist Administration/ChecklistItemRoles.Page.al34 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.Environment.Configuration;

/// <summary>
/// Lists the roles that a checklist item should be displayed to.
/// </summary>
page 1994 "Checklist Item Roles"
{
    Caption = 'Checklist Item Roles';
    PageType = ListPart;
    SourceTable = "Checklist Item Role";
    Editable = true;
    Permissions = tabledata "Checklist Item Role" = rimd;

    layout
    {
        area(Content)
        {
            repeater(Control1)
            {
                field("Role ID"; Rec."Role ID")
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the ID of the role.';
                }
            }
        }
    }
}