Codeunit 154 Navigation Bar Subscribers in 27

App
System Application
Namespace
System.Environment.Configuration

Events, 3

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Navigation Bar Subscribers/src/NavigationBarSubscribers.Codeunit.al35 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>Collection of the default subscribers to system events and corresponding overridable integration events.</summary>
codeunit 154 "Navigation Bar Subscribers"
{
    Access = Public;
    InherentEntitlements = X;
    InherentPermissions = X;

    /// <summary>Notifies that the Default Open Company Settings has been invoked.</summary>
    /// <param name="Handled">The flag which if set, would stop executing the event.</param>
    [IntegrationEvent(false, false)]
    internal procedure OnBeforeDefaultOpenCompanySettings(var Handled: Boolean)
    begin
    end;

    /// <summary>Notifies that the Default Open Role Based Setup Experience has been invoked.</summary>
    /// <param name="Handled">The flag which if set, would stop executing the event.</param>
    [IntegrationEvent(false, false)]
    internal procedure OnBeforeDefaultOpenRoleBasedSetupExperience(var Handled: Boolean)
    begin
    end;

    /// <summary>Notifies that the Default Open General Setup Experience has been invoked.</summary>
    /// <param name="Handled">The flag which if set, would stop executing the event.</param>
    [IntegrationEvent(false, false)]
    internal procedure OnBeforeDefaultOpenGeneralSetupExperience(var Handled: Boolean)
    begin
    end;
}

Events, 3

KindNameParametersObsolete
Integration eventOnBeforeDefaultOpenCompanySettings(var Boolean)-
Integration eventOnBeforeDefaultOpenRoleBasedSetupExperience(var Boolean)-
Integration eventOnBeforeDefaultOpenGeneralSetupExperience(var Boolean)-