Enum 5601 FA Ledger Entry FA Posting Type

App
Base Application
Namespace
Microsoft.FixedAssets.Ledger
Versions
17-28

Values, 11

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/FixedAssets/FixedAsset/FALedgerEntryFAPostingType.Enum.al59 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.FixedAssets.Ledger;

#pragma warning disable AL0659
enum 5601 "FA Ledger Entry FA Posting Type"
#pragma warning restore AL0659
{
    Extensible = true;
    AssignmentCompatibility = true;

    value(0; "Acquisition Cost")
    {
        Caption = 'Acquisition Cost';
    }
    value(1; Depreciation)
    {
        Caption = 'Depreciation';
    }
    value(2; "Write-Down")
    {
        Caption = 'Write-Down';
    }
    value(3; Appreciation)
    {
        Caption = 'Appreciation';
    }
    value(4; "Custom 1")
    {
        Caption = 'Custom 1';
    }
    value(5; "Custom 2")
    {
        Caption = 'Custom 2';
    }
    value(6; "Proceeds on Disposal")
    {
        Caption = 'Proceeds on Disposal';
    }
    value(7; "Salvage Value")
    {
        Caption = 'Salvage Value';
    }
    value(8; "Gain/Loss")
    {
        Caption = 'Gain/Loss';
    }
    value(9; "Book Value on Disposal")
    {
        Caption = 'Book Value on Disposal';
    }
    value(11; "Bonus Depreciation")
    {
        Caption = 'Bonus Depreciation';
    }
}