Enum 1800 Company Setup Status

App
Base Application
Namespace
Microsoft.Utilities
Versions
18-28

Values, 5

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Utilities/CompanySetupStatus.Enum.al45 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.Utilities;

enum 1800 "Company Setup Status"
{
    Extensible = false;

    /// <summary>
    /// Undefined.
    /// </summary>
    value(0; " ")
    {
    }

    /// <summary>
    /// Setup completed.
    /// </summary>
    value(1; Completed)
    {
    }

    /// <summary>
    /// Setup is in progress.
    /// </summary>
    value(2; "In Progress")
    {
    }

    /// <summary>
    /// Setup ended in an error.
    /// </summary>
    value(3; Error)
    {
    }

    /// <summary>
    /// The user performing setup is missing permissions.
    /// </summary>
    value(4; "Missing Permission")
    {
    }
}