Enum 5200 Employee Status, source in 29
Source29
src/Layers/W1/BaseApp/HumanResources/Employee/EmployeeStatus.Enum.al25 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.HumanResources.Employee;
enum 5200 "Employee Status"
{
Extensible = true;
AssignmentCompatibility = true;
value(0; Active)
{
Caption = 'Active';
}
value(1; Inactive)
{
Caption = 'Inactive';
}
value(2; Terminated)
{
Caption = 'Terminated';
}
}