Table 268 Item Amount, source in 29
Source29
src/Layers/W1/BaseApp/Inventory/Item/ItemAmount.Table.al46 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.Inventory.Item;
table 268 "Item Amount"
{
Caption = 'Item Amount';
DataClassification = CustomerContent;
fields
{
field(1; "Item No."; Code[20])
{
Caption = 'Item No.';
TableRelation = Item;
}
field(2; Amount; Decimal)
{
AutoFormatType = 1;
AutoFormatExpression = '';
Caption = 'Amount';
}
field(3; "Amount 2"; Decimal)
{
AutoFormatType = 1;
AutoFormatExpression = '';
Caption = 'Amount 2';
}
}
keys
{
key(Key1; Amount, "Amount 2", "Item No.")
{
Clustered = true;
}
}
fieldgroups
{
}
}