Table 1480 Edit in Excel Settings, source in 29

Source242526272829

src/System Application/App/Edit in Excel/src/EditinExcelSettings.Table.al39 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.Integration.Excel;

/// <summary>
/// Contains settings for Edit in Excel.
/// </summary>
table 1480 "Edit in Excel Settings"
{
    DataClassification = SystemMetadata;
    Extensible = false;
    DataPerCompany = false;
    ReplicateData = false;
    InherentEntitlements = RX;
    InherentPermissions = RX;

    fields
    {
        field(1; Id; Code[10])
        {
            DataClassification = SystemMetadata;
        }
        field(2; "Use Centralized deployments"; Boolean)
        {
            DataClassification = SystemMetadata;
        }
    }

    keys
    {
        key(Primary; Id)
        {
            Clustered = true;
        }
    }
}