Codeunit 9828 Default PS in Plan Impl in 24
- App
- System Application
- Namespace
- System.Azure.Identity
- Obsolete
- Pending 22.0. Getting the default permissions will be done only inside the Azure AD Plan module.
Versions171819202122232425262728latest
Source2425
Source in 24
src/System Application/App/Azure AD Plan/src/Plan Configuration/Default Permssions/DefaultPSInPlanImpl.Codeunit.al58 lines, Copyright (c) Microsoft Corporation. MIT
#if not CLEAN22
// ------------------------------------------------------------------------------------------------
// 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;
codeunit 9828 "Default PS in Plan Impl"
{
Access = Internal;
InherentEntitlements = X;
InherentPermissions = X;
Permissions = tabledata "Default Permission Set In Plan" = r;
ObsoleteState = Pending;
ObsoleteReason = 'Getting the default permissions will be done only inside the Azure AD Plan module.';
ObsoleteTag = '22.0';
procedure AddPermissionSetToPlan(RoleId: Code[20]; AppId: Guid; Scope: Option)
begin
StoredDefaultPermissionSetInPlan.Init();
StoredDefaultPermissionSetInPlan."Plan ID" := SelectedPlanId;
StoredDefaultPermissionSetInPlan."Role ID" := RoleId;
StoredDefaultPermissionSetInPlan.Scope := Scope;
StoredDefaultPermissionSetInPlan."App ID" := AppId;
if StoredDefaultPermissionSetInPlan.Insert() then;
end;
procedure GetPermissionSets(PlanId: Guid; var DefaultPermissionSetInPlanBuffer: Record "Permission Set In Plan Buffer")
var
DefaultPermissionSetInPlan: Record "Default Permission Set In Plan";
DefaultPermissionSetInPlanCodeunit: Codeunit "Default Permission Set In Plan";
begin
SelectedPlanId := PlanId;
DefaultPermissionSetInPlanBuffer.DeleteAll();
StoredDefaultPermissionSetInPlan.DeleteAll();
DefaultPermissionSetInPlanCodeunit.OnGetDefaultPermissions(SelectedPlanId);
DefaultPermissionSetInPlan.SetRange("Plan ID", SelectedPlanId);
if DefaultPermissionSetInPlan.FindSet() then
repeat
AddPermissionSetToPlan(DefaultPermissionSetInPlan."Role ID", DefaultPermissionSetInPlan."App ID", DefaultPermissionSetInPlan.Scope);
until DefaultPermissionSetInPlan.Next() = 0;
if StoredDefaultPermissionSetInPlan.FindSet() then
repeat
DefaultPermissionSetInPlanBuffer.TransferFields(StoredDefaultPermissionSetInPlan);
DefaultPermissionSetInPlanBuffer.Insert();
until StoredDefaultPermissionSetInPlan.Next() = 0;
end;
var
StoredDefaultPermissionSetInPlan: Record "Permission Set In Plan Buffer";
SelectedPlanId: Guid;
}
#endifProcedures, 2
| Name | Parameters | Returns | Access | Obsolete |
|---|---|---|---|---|
| AddPermissionSetToPlan | (Code[20], Guid, Option) | public | - | |
| GetPermissionSets | (Guid, var Record Permission Set In Plan Buffer) | public | - |