Codeunit 9202 Advanced Settings in 24

App
System Application
Namespace
System.Environment.Configuration

Events, 1

Versions171819202122232425262728latest

Source242526272829

Source in 24

src/System Application/App/Advanced Settings/src/AdvancedSettings.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 System.Environment.Configuration;

/// <summary>Advanced settings exposes integration events raised at Advance Settings Page open.</summary>
codeunit 9202 "Advanced Settings"
{
    Access = Public;
    InherentEntitlements = X;
    InherentPermissions = X;

    /// <summary>Notifies that the Open General Setup Experience has been invoked.</summary>
    /// <param name="PageID">The Page ID of the page been invoked.</param>
    /// <param name="Handled">The flag which if set, would stop executing the OpenGeneralSetupExperience of the assisted setup guide.</param>
    [IntegrationEvent(false, false)]
    internal procedure OnBeforeOpenGeneralSetupExperience(var PageID: Integer; var Handled: Boolean)
    begin
    end;
}

Events, 1

KindNameParametersObsolete
Integration eventOnBeforeOpenGeneralSetupExperience(var Integer, var Boolean)-