Table 390 Availability at Date, source in 29

Source29

src/Layers/W1/BaseApp/Inventory/Availability/AvailabilityatDate.Table.al49 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.Availability;

table 390 "Availability at Date"
{
    Caption = 'Availability at Date';
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Period Start"; Date)
        {
            Caption = 'Period Start';
        }
        field(2; "Scheduled Receipt"; Decimal)
        {
            AutoFormatType = 0;
            Caption = 'Scheduled Receipt';
            DecimalPlaces = 0 : 5;
        }
        field(3; "Gross Requirement"; Decimal)
        {
            AutoFormatType = 0;
            Caption = 'Gross Requirement';
            DecimalPlaces = 0 : 5;
        }
        field(4; "Period End"; Date)
        {
            Caption = 'Period End';
        }
    }

    keys
    {
        key(Key1; "Period Start")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}