Table 5887 Pstd. Exp. Phys. Invt. Track, source in 29

Source29

src/Layers/W1/BaseApp/Inventory/Counting/Tracking/PstdExpPhysInvtTrack.Table.al62 lines, Copyright (c) Microsoft Corporation. MIT

#if not CLEANSCHEMA27 
// ------------------------------------------------------------------------------------------------
// 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.Counting.Tracking;

using Microsoft.Inventory.Counting.History;

table 5887 "Pstd. Exp. Phys. Invt. Track"
{
    Caption = 'Pstd. Exp. Phys. Invt. Track';
    DataClassification = CustomerContent;
    ObsoleteReason = 'Replaced by table Posted.Exp.Invt.Order.Tracking.';
    ObsoleteState = Removed;
    ObsoleteTag = '27.0';
    ReplicateData = false;

    fields
    {
        field(1; "Order No"; Code[20])
        {
            Caption = 'Order No';
            TableRelation = "Pstd. Phys. Invt. Order Hdr";
        }
        field(2; "Order Line No."; Integer)
        {
            Caption = 'Order Line No.';
            TableRelation = "Pstd. Phys. Invt. Order Line"."Line No." where("Document No." = field("Order No"));
        }
        field(3; "Serial No."; Code[50])
        {
            Caption = 'Serial No.';
        }
        field(4; "Lot No."; Code[50])
        {
            Caption = 'Lot No.';
        }
        field(30; "Quantity (Base)"; Decimal)
        {
            AutoFormatType = 0;
            Caption = 'Quantity (Base)';
            DecimalPlaces = 0 : 5;
        }
    }

    keys
    {
        key(Key1; "Order No", "Order Line No.", "Serial No.", "Lot No.")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}


#endif