Codeunit 8701 Table Information Cache in 27

App
System Application
Namespace
System.DataAdministration

Procedures, 1

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Table Information/src/TableInformationCache.Codeunit.al32 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;

/// <summary>
/// Exposes functionality to manage the Table Information Cache table and the Company Size Cache table.
/// </summary>
codeunit 8701 "Table Information Cache"
{
    Access = Public;

    /// <summary>
    /// Refreshes the data in the Table Information Cache and Company Size Cache tables for all companies.
    /// </summary>
    trigger OnRun()
    begin
        RefreshTableInformationCache();
    end;

    /// <summary>
    /// Refreshes the data in the Table Information Cache and Company Size Cache tables for all companies.
    /// </summary>
    procedure RefreshTableInformationCache()
    var
        TableInformationCacheImpl: Codeunit "Table Information Cache Impl.";
    begin
        TableInformationCacheImpl.RefreshTableInformationCache();
    end;
}

Procedures, 1

NameParametersReturnsAccessObsolete
RefreshTableInformationCache()public-