Table 6721 Booking Mgr. Setup, source in 29

Source29

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

namespace Microsoft.Booking;

table 6721 "Booking Mgr. Setup"
{
    Caption = 'Booking Mgr. Setup';
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Primary Key"; Code[10])
        {
            AllowInCustomizations = Never;
            Caption = 'Primary Key';
        }
        field(2; "Booking Mgr. Codeunit"; Integer)
        {
            Caption = 'Booking Mgr. Codeunit';
            InitValue = 6722;
        }
    }

    keys
    {
        key(Key1; "Primary Key")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}