Table 99000854 Inventory Profile Track Buffer, source in 29

Source29

src/Layers/W1/BaseApp/Inventory/Tracking/InventoryProfileTrackBuffer.Table.al79 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.Tracking;
using Microsoft.Inventory.Planning;

table 99000854 "Inventory Profile Track Buffer"
{
    Caption = 'Inventory Profile Track Buffer';
    ReplicateData = false;
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Line No."; Integer)
        {
            Caption = 'Line No.';
            DataClassification = SystemMetadata;
        }
        field(2; Priority; Integer)
        {
            Caption = 'Priority';
            DataClassification = SystemMetadata;
        }
        field(3; "Demand Line No."; Integer)
        {
            Caption = 'Demand Line No.';
            DataClassification = SystemMetadata;
        }
        field(4; "Sequence No."; Integer)
        {
            Caption = 'Sequence No.';
            DataClassification = SystemMetadata;
        }
        field(21; "Source Type"; Integer)
        {
            Caption = 'Source Type';
            DataClassification = SystemMetadata;
        }
        field(23; "Source ID"; Code[20])
        {
            Caption = 'Source ID';
            DataClassification = SystemMetadata;
        }
        field(72; "Quantity Tracked"; Decimal)
        {
            AutoFormatType = 0;
            Caption = 'Quantity Tracked';
            DataClassification = SystemMetadata;
        }
        field(73; "Surplus Type"; Enum "Planning Surplus Type")
        {
            Caption = 'Surplus Type';
            DataClassification = SystemMetadata;
        }
        field(75; "Warning Level"; Option)
        {
            Caption = 'Warning Level';
            DataClassification = SystemMetadata;
            OptionCaption = ',Emergency,Exception,Attention';
            OptionMembers = ,Emergency,Exception,Attention;
        }
    }

    keys
    {
        key(Key1; "Line No.", Priority, "Demand Line No.", "Sequence No.")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}