Table 1994 User Checklist Status, source in 25
Source242526272829metadata 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")
{
}
}
}