Codeunit 9085 Microsoft 365 License in 26

App
System Application
Namespace
System.Azure.Identity

Procedures, 3

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/Azure AD Plan/src/Plan Configuration/Microsoft365License.Codeunit.al43 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.Azure.Identity;

/// <summary>
/// Provides functionality to operate the Microsoft 365 License.
/// </summary>
codeunit 9085 "Microsoft 365 License"
{
    InherentEntitlements = X;
    InherentPermissions = X;

    /// <summary>
    /// Assign D365 Read Permission.
    /// </summary>
    /// <param name="ShowNotification">Show notification about license information regarding users in BC.</param>
    procedure AssignMicrosoft365ReadPermission(ShowNotification: Boolean)
    begin
        Microsoft365LicenseImpl.AssignMicrosoft365ReadPermission(ShowNotification);
    end;

    /// <summary>
    /// Opens the Business Central admin center.
    /// </summary>
    procedure OpenBCAdminCenter()
    begin
        Microsoft365LicenseImpl.OpenBCAdminCenter();
    end;

    /// <summary>
    /// Opens the M365 admin center.
    /// </summary>
    procedure OpenM365AdminCenter()
    begin
        Microsoft365LicenseImpl.OpenM365AdminCenter();
    end;

    var
        Microsoft365LicenseImpl: Codeunit "Microsoft 365 License Impl.";
}

Procedures, 3

NameParametersReturnsAccessObsolete
AssignMicrosoft365ReadPermission(Boolean)public-
OpenBCAdminCenter()public-
OpenM365AdminCenter()public-