Page 7710 ADCS Users

App
Base Application
Namespace
Microsoft.Warehouse.ADCS
Versions
17-28
Source table
7710

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Warehouse/ADCS/ADCSUsers.Page.al44 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 Microsoft.Warehouse.ADCS;

page 7710 "ADCS Users"
{
    AdditionalSearchTerms = 'scanner,handheld,automated data capture,barcode';
    ApplicationArea = ADCS;
    Caption = 'ADCS Users';
    DelayedInsert = true;
    PageType = List;
    SourceTable = "ADCS User";
    UsageCategory = Lists;

    layout
    {
        area(content)
        {
            repeater(Group)
            {
                Caption = 'Group';
                field(Name; Rec.Name)
                {
                    ApplicationArea = ADCS;
                    Caption = 'Name';
                }
                field(Password; Rec.Password)
                {
                    ApplicationArea = ADCS;
                    Caption = 'Password';
                    ExtendedDatatype = Masked;
                }
            }
        }
    }

    actions
    {
    }
}