Enum 2610 Feature Status in 26

App
System Application
Namespace
System.Environment.Configuration

Values, 7

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/Feature Key/src/FeatureStatus.Enum.al42 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;

/// <summary>
/// Enum defines the feature statuses.
/// </summary>
enum 2610 "Feature Status"
{
    Extensible = false;
    value(0; Disabled)
    {
        Caption = 'Disabled';
    }
    value(1; Enabled)
    {
        Caption = 'Enabled';
    }
    value(2; Pending)
    {
        Caption = 'Pending Data Update';
    }
    value(3; Scheduled)
    {
        Caption = 'Scheduled Data Update';
    }
    value(4; Updating)
    {
        Caption = 'Updating Data';
    }
    value(5; Incomplete)
    {
        Caption = 'Incomplete Data Update';
    }
    value(6; Complete)
    {
        Caption = 'Completed Data Update';
    }
}

Values, 7

IdNameObsolete
0Disabled-
1Enabled-
2Pending-
3Scheduled-
4Updating-
5Incomplete-
6Complete-