Page 9849 Included PermissionSet FactBox
- App
- System Application
- Namespace
- System.Security.AccessControl
- Versions
- 21-28
- Source table
- 9862
Versions171819202122232425262728
Source in 29
src/System Application/App/Permission Sets/src/IncludedPermissionSetFactBox.Page.al53 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.Security.AccessControl;
/// <summary>
/// Factbox for viewing the first level related permission sets.
/// </summary>
page 9849 "Included PermissionSet FactBox"
{
PageType = ListPart;
SourceTable = "PermissionSet Buffer";
SourceTableTemporary = true;
Extensible = false;
InsertAllowed = false;
ModifyAllowed = false;
DeleteAllowed = false;
Editable = false;
ShowFilter = false;
LinksAllowed = false;
layout
{
area(Content)
{
repeater(PermissionSets)
{
field("Role ID"; Rec."Role ID")
{
ApplicationArea = All;
Caption = 'Permission Set';
ToolTip = 'Specifies the permission set.';
}
field(Name; Rec.Name)
{
ApplicationArea = All;
Caption = 'Name';
ToolTip = 'Specifies the name of the permission set.';
}
}
}
}
procedure UpdateIncludedPermissionSets(PermissionSetRoleId: Text)
var
PermissionSetRelationImpl: Codeunit "Permission Set Relation Impl.";
begin
PermissionSetRelationImpl.UpdateIncludedPermissionSets(PermissionSetRoleId, Rec);
CurrPage.Update(false);
end;
}