Enum 6401 FS Work Order Line Post Rule

App
Base Application
Namespace
Microsoft.Integration.FieldService
Versions
24-28

Values, 3

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Integration/FieldService/FSWorkOrderLinePostRule.Enum.al31 lines, Copyright (c) Microsoft Corporation. MIT

#if not CLEANSCHEMA31
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Integration.FieldService;

enum 6401 "FS Work Order Line Post Rule"
{
    AssignmentCompatibility = true;
    Extensible = true;
#if CLEANSCHEMA28 // marking obsolete when the table is removed, deleting min. 1 version later
    ObsoleteReason = 'Field Service is moved to Field Service Integration app.';
    ObsoleteState = Pending;
    ObsoleteTag = '31.0';
#endif

    value(0; Never)
    {
        Caption = 'I will post project journal lines manually';
    }
    value(1; LineUsed)
    {
        Caption = 'when work order product/service is used';
    }
    value(2; WorkOrderCompleted)
    {
        Caption = 'when work order is completed';
    }
}
#endif