Enum 2610 Feature Status in 28
- App
- System Application
- Namespace
- System.Environment.Configuration
Versions171819202122232425262728latest
Source in 28
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
| Id | Name | Obsolete |
|---|---|---|
| 0 | Disabled | - |
| 1 | Enabled | - |
| 2 | Pending | - |
| 3 | Scheduled | - |
| 4 | Updating | - |
| 5 | Incomplete | - |
| 6 | Complete | - |