Table 1996 Checklist Setup in 27

App
System Application
Namespace
System.Environment.Configuration

Fields, 3Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Guided Experience/src/Checklist Initialization/ChecklistSetup.Table.al43 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;

table 1996 "Checklist Setup"
{
    Access = Internal;
    InherentEntitlements = X;
    InherentPermissions = X;
    ReplicateData = false;

    fields
    {
        field(1; "Is Setup Done"; Boolean)
        {
            DataClassification = SystemMetadata;
            Caption = 'Is Setup Done';
        }

        field(2; "Is Setup in Progress"; Boolean)
        {
            DataClassification = SystemMetadata;
            Caption = 'Is Setup in Progress';
        }

        field(3; "DateTime when Setup Started"; DateTime)
        {
            DataClassification = SystemMetadata;
            Caption = 'Date when Setup Started';
        }
    }

    keys
    {
        key(key1; "Is Setup Done")
        {
            Clustered = true;
        }
    }
}

Fields, 3

IdNameTypeObsolete
1Is Setup DoneBoolean-
2Is Setup in ProgressBoolean-
3DateTime when Setup StartedDateTime-

Keys, 1

NameFieldsObsolete
key1, clusteredIs Setup Done-