Page 1995 Checklist Item Users in 26

App
System Application
Namespace
System.Environment.Configuration
Source table
1993

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/Guided Experience/src/Checklist Administration/ChecklistItemUsers.Page.al48 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 users that a checklist item should be displayed to.
/// </summary>
page 1995 "Checklist Item Users"
{
    Caption = 'Checklist Users';
    PageType = ListPart;
    SourceTable = "Checklist Item User";
    Editable = true;
    Permissions = tabledata "Checklist Item User" = rimd;

    layout
    {
        area(Content)
        {
            repeater(Control1)
            {
                field("User Name"; Rec."User ID")
                {
                    ApplicationArea = All;
                    ToolTip = 'Specifies the user.';
                    Caption = 'User ID';
                    Visible = true;
                }
            }
        }
    }

    trigger OnInsertRecord(BelowxRec: Boolean): Boolean
    var
        ChecklistItemUser: Record "Checklist Item User";
    begin
        if ChecklistItemUser.Get(Rec.Code, Rec."User ID") then begin
            ChecklistItemUser."Assigned to User" := true;
            ChecklistItemUser.Modify();
            exit(false);
        end else
            ChecklistItemUser."Assigned to User" := true;
    end;
}