GetGrpAccessByEnt Method
- Last UpdatedNov 06, 2025
- 1 minute read
'Usage
Dim entId As Integer
Dim value As DataSet
value = GrpEntLink.GetGrpAccessByEnt(entId)
Parameters
- entId
- Required. Holds the ID of the entity for which access data is to be retrieved.
Return Value
Returns a DataSet that contains all the records in the Grp_Ent_Link table that satisfy the specified filters. If no matching records are found, an empty DataSet is returned.
The columns of the returned DataSet are described below.
|
ColumnName |
Description |
|---|---|
|
grp_id |
An integer that is the ID of the entity. |
|
ent_access |
A Booolean that is a flag that specifies whether the user group has access privileges to the entity. |
|
max_subtree_access |
An integer that indicates the maximum access level for all descendants of the specified entity. It indicates whether each group has access to ANY (max_subtree_access = 1) of its children or NONE (max_subtree_access = 0) of them. |
|
min_subtree_access |
An integer that indicates the minimum access level for all descendants of the specified entity. It indicates whether each group has access to ALL (max_subtree_access = 1) of its children or not (max_subtree_access = 0). |
|
last_edit_by |
A string that is the ID of the user who added or last updated this record. |
|
last_edit_at |
A date/time that indicates when the record was added or last updated. |