Table 1601 Office Add-in Setup, source in 29

Source29

src/Layers/W1/BaseApp/CRM/Outlook/OfficeAddinSetup.Table.al40 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.CRM.Outlook;

table 1601 "Office Add-in Setup"
{
    Caption = 'Office Add-in Setup';
    DataClassification = CustomerContent;
    ReplicateData = false;

    fields
    {
        field(1; "Primary Key"; Code[10])
        {
            AllowInCustomizations = Never;
            Caption = 'Primary Key';
        }
        field(2; "Office Host Codeunit ID"; Integer)
        {
            Caption = 'Office Host Codeunit ID';
            InitValue = 1633;
        }
    }

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

    fieldgroups
    {
    }
}