Codeunit 1807 Assisted Setup Upgrade

App
System Application
Namespace
System.Environment.Configuration
Versions
17-28
Obsolete
Pending 26.0, seen from 26. Table "Asssited Setup" has been removed in version 26.

Procedures, 2Obsolete, 1

Versions171819202122232425262728

Source242526272829

Source in 29

src/System Application/App/Guided Experience/src/Assisted Setup/AssistedSetupUpgrade.Codeunit.al27 lines, Copyright (c) Microsoft Corporation. MIT

#if not CLEANSCHEMA29
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Environment.Configuration;

codeunit 1807 "Assisted Setup Upgrade"
{
    Subtype = Upgrade;
    InherentEntitlements = X;
    InherentPermissions = X;
    Permissions = tabledata "Guided Experience Item" = r;
    ObsoleteReason = 'Table "Asssited Setup" has been removed in version 26.';
    ObsoleteState = Pending;
    ObsoleteTag = '26.0';

    procedure DeleteAssistedSetup()
    begin
    end;

    procedure UpgradeToGuidedExperienceItem()
    begin
    end;
}
#endif