Enum 1107 Cost Register Source, source in 29

Source29

src/Layers/W1/BaseApp/CostAccounting/Ledger/CostRegisterSource.Enum.al29 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.CostAccounting.Ledger;

enum 1107 "Cost Register Source"
{
    Extensible = true;
    AssignmentCompatibility = true;

    value(0; "Transfer from G/L")
    {
        Caption = 'Transfer from G/L';
    }
    value(1; "Cost Journal")
    {
        Caption = 'Cost Journal';
    }
    value(2; Allocation)
    {
        Caption = 'Allocation';
    }
    value(3; "Transfer from Budget")
    {
        Caption = 'Transfer from Budget';
    }
}