Table 1994 User Checklist Status in 25

App
System Application
Namespace
System.Environment.Configuration

Fields, 5Keys, 2

Versions171819202122232425262728latest

Source242526272829

Source in 25

src/System Application/App/Guided Experience/src/Checklist/UserChecklistStatus.Table.al60 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;

using System.Security.AccessControl;
using System.Reflection;

table 1994 "User Checklist Status"
{
    Access = Internal;
    InherentEntitlements = X;
    InherentPermissions = X;
    ReplicateData = false;

    fields
    {
        field(1; "User ID"; Code[50])
        {
            Caption = 'User ID';
            DataClassification = EndUserIdentifiableInformation;
            TableRelation = User."User Name";
            ValidateTableRelation = false;
        }
        field(2; "Role ID"; Code[30])
        {
            Caption = 'Role ID';
            DataClassification = SystemMetadata;
            TableRelation = "All Profile"."Profile ID";
        }
        field(3; "Checklist Status"; Enum "Checklist Status")
        {
            Caption = 'Checklist Status';
            DataClassification = SystemMetadata;
        }
        field(4; "Is Current Role Center"; Boolean)
        {
            Caption = 'Is Current Role Center';
            DataClassification = SystemMetadata;
        }
        field(5; "Is Visible"; Boolean)
        {
            Caption = 'Is Visible';
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(Key1; "User ID", "Role ID")
        {
            Clustered = true;
        }
        key(Key2; "User ID", "Is Current Role Center")
        {
        }
    }
}

Fields, 5

IdNameTypeObsolete
1User IDCode[50]-
2Role IDCode[30]-
3Checklist StatusEnum Checklist Status-
4Is Current Role CenterBoolean-
5Is VisibleBoolean-

Keys, 2

NameFieldsObsolete
Key1, clusteredUser ID, Role ID-
Key2User ID, Is Current Role Center-