Table 1638 Invoiced Booking Item, source in 29

Source29

src/Layers/W1/BaseApp/OtherCapabilities/Booking/InvoicedBookingItem.Table.al37 lines, Copyright (c) Microsoft Corporation. MIT

namespace Microsoft.Booking;

table 1638 "Invoiced Booking Item"
{
    Caption = 'Invoiced Booking Item';
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Booking Item ID"; Text[250])
        {
            Caption = 'Booking Item ID';
        }
        field(2; "Document No."; Code[20])
        {
            Caption = 'Document No.';
        }
        field(3; Posted; Boolean)
        {
            Caption = 'Posted';
        }
    }

    keys
    {
        key(Key1; "Booking Item ID")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}