Table 9021 Security Group Member Buffer in 26
- App
- System Application
- Namespace
- System.Security.AccessControl
Versions171819202122232425262728latest
Source in 26
src/System Application/App/Security Groups/src/SecurityGroupMemberBuffer.Table.al56 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>
/// The container used for fetching security group memberships.
/// </summary>
table 9021 "Security Group Member Buffer"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;
TableType = Temporary;
Caption = 'Security Group Member';
fields
{
field(1; "Security Group Code"; Code[20])
{
Caption = 'Security Group Code';
}
field(2; "User Security ID"; Guid)
{
Caption = 'User Security ID';
}
field(3; "Security Group Name"; Text[250])
{
Caption = 'Security Group Name';
}
field(4; "User Name"; Code[50])
{
CalcFormula = lookup(User."User Name" where("User Security ID" = field("User Security ID")));
Caption = 'User Name';
FieldClass = FlowField;
}
field(5; "User Full Name"; Text[80])
{
CalcFormula = lookup(User."Full Name" where("User Security ID" = field("User Security ID")));
Caption = 'User Full Name';
FieldClass = FlowField;
}
}
keys
{
key(Key1; "Security Group Code", "User Security ID")
{
Clustered = true;
}
}
}
Fields, 5
| Id | Name | Type | Obsolete |
|---|---|---|---|
| 1 | Security Group Code | Code[20] | - |
| 2 | User Security ID | Guid | - |
| 3 | Security Group Name | Text[250] | - |
| 4 | User Name | Code[50] | - |
| 5 | User Full Name | Text[80] | - |
Keys, 1
| Name | Fields | Obsolete |
|---|---|---|
| Key1, clustered | Security Group Code, User Security ID | - |