Table 6060 Hybrid Deployment Setup, source in 29

Source29

src/Layers/W1/BaseApp/HybridDeploymentSetup.Table.al42 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 System.Environment;

table 6060 "Hybrid Deployment Setup"
{
    Caption = 'Hybrid Deployment Setup';
    ReplicateData = false;
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Primary Key"; Code[10])
        {
            AllowInCustomizations = Never;
            Caption = 'Primary Key';
            DataClassification = SystemMetadata;
        }
        field(2; "Handler Codeunit ID"; Integer)
        {
            Caption = 'Handler Codeunit ID';
            DataClassification = SystemMetadata;
            InitValue = 6061;
        }
    }

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

    fieldgroups
    {
    }
}