Codeunit 3914 Retention Policy Upgrade in 27

App
System Application
Namespace
System.DataAdministration

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Retention Policy/src/Upgrade/RetentionPolicyUpgrade.Codeunit.al21 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;

codeunit 3914 "Retention Policy Upgrade"
{
    Subtype = Upgrade;
    Access = Internal;
    InherentEntitlements = X;
    InherentPermissions = X;

    trigger OnUpgradePerCompany()
    var
        RetentionPolicyInstaller: Codeunit "Retention Policy Installer";
    begin
        RetentionPolicyInstaller.AddAllowedTables(); // also sets the tag!
    end;
}