Table 5646 Depreciation Table Buffer
- App
- Base Application
- Namespace
- Microsoft.FixedAssets.Depreciation
- Versions
- 17-28
Versions171819202122232425262728
Source29
Source in 29
src/Layers/W1/BaseApp/FixedAssets/Depreciation/DepreciationTableBuffer.Table.al47 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.Depreciation;
table 5646 "Depreciation Table Buffer"
{
Caption = 'Depreciation Table Buffer';
ReplicateData = false;
DataClassification = CustomerContent;
fields
{
field(1; "Entry No."; Integer)
{
Caption = 'Entry No.';
DataClassification = SystemMetadata;
}
field(2; "No. of Days in Period"; Integer)
{
Caption = 'No. of Days in Period';
DataClassification = SystemMetadata;
}
field(3; "Period Depreciation %"; Decimal)
{
AutoFormatType = 0;
Caption = 'Period Depreciation %';
DataClassification = SystemMetadata;
DecimalPlaces = 1 : 1;
}
}
keys
{
key(Key1; "Entry No.")
{
Clustered = true;
}
}
fieldgroups
{
}
}