Enum 1800 Company Setup Status, source in 29
Source29
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")
{
}
}