Table 8701 Company Size Cache in 27

App
System Application
Namespace
System.DataAdministration

Fields, 4Keys, 2

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Table Information/src/CompanySizeCache.Table.al48 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.DataAdministration;

table 8701 "Company Size Cache"
{
    DataPerCompany = false;
    ReplicateData = false;
    Access = Internal;
    DataClassification = SystemMetadata;
    InherentEntitlements = X;
    InherentPermissions = X;

    fields
    {
        field(1; "Company Name"; Text[30])
        {
            Caption = 'Company Name';
        }
        field(6; "Size (KB)"; Integer)
        {
            Caption = 'Size (KB)';
        }
        field(8; "Data Size (KB)"; Integer)
        {
            Caption = 'Data Size (KB)';
        }
        field(9; "Index Size (KB)"; Integer)
        {
            Caption = 'Index Size (KB)';
        }

    }

    keys
    {
        key(pk; "Company Name")
        {
            SumIndexFields = "Size (KB)", "Data Size (KB)", "Index Size (KB)";
        }
        key(sort; "Size (KB)")
        {
        }
    }
}

Fields, 4

IdNameTypeObsolete
1Company NameText[30]-
6Size (KB)Integer-
8Data Size (KB)Integer-
9Index Size (KB)Integer-

Keys, 2

NameFieldsObsolete
pkCompany Name-
sortSize (KB)-