3.1.1.1.38.2.4 GetBuiltinUserRoles
The GetBuiltinUserRoles procedure retrieves all the built-in user role definitions that are in the table.
There are no input parameters for this function.
The following is the output parameter from this procedure.
Result_userRoles: An array of UserRoles.
The following are the processing steps involved:
Retrieve all the rows in the ADM_RoleDefinitionTable that have IsBuiltInRole set to TRUE.
Initialize Result_userRoles as a collection of UserRoles.
For each row that has been retrieved, perform the following steps:
Call the GetUserRoleById procedure of ADM_RoleDefinitionTable by passing RoleId of the row as Param_roleId.
Add the Result_role to the Result_userRoles collection.
Return Result_userRoles as the output of the procedure.