Codeunit 328 No. Series Upgrade in 24

App
Business Foundation
Namespace
Microsoft.Foundation.NoSeries

Versions171819202122232425262728latest

Source242526272829

Source in 24

src/Business Foundation/App/NoSeries/src/Upgrade/NoSeriesUpgrade.Codeunit.al22 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.Foundation.NoSeries;

codeunit 328 "No. Series Upgrade"
{
    Access = Internal;
    Subtype = Upgrade;
    InherentEntitlements = X;
    InherentPermissions = X;

    trigger OnUpgradePerCompany()
    var
        NoSeriesInstaller: Codeunit "No. Series Installer";
    begin
        NoSeriesInstaller.TriggerMovedTableSchemaSanityCheck();
        NoSeriesInstaller.SetupNoSeriesImplementation();
    end;
}