
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-17-2020 05:27 AM
My requirement:
I have created a role, provisioning_approval.
I have created few users and among them i have assigned this role to 3 of them.
I have a form and there i want to list the approval names(select box).
So do we have a way through client script i can directly fetch users having that role assigned to them.
I tried an onLoad script but not sure how to fetch correct list bcz below is giving me current user name.
if(g_user.hasRole('provisioning_approval')) {
g_form.addOption('app',g_user.getFullName(), g_user.getFullName());
}
- Do we have any way to fetch User list based on role
- Should i go through each user in loop and check their role and add in the drop down list.
Please help and let me know if any other details are required.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-17-2020 05:42 AM
If you want all the users with your specific role no need to write script, you can create a lookup select box instead of select box with following conditions:
replace the sys_id of your role, in reference qualifier.
Raghav
MVP 2023

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-17-2020 06:44 AM
@Namrata I created 2 users and to both of them i have given the privilege(role). And when I logged in as system admin it shows both of their name in drop down list.
But once I logged in as one of the user the drop down showed nothing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-17-2020 06:47 AM
Hi Hemant
check the read ACL's for the sys_user_has_role table.
Extend it with the role the required users have.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-17-2020 06:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-17-2020 07:00 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-17-2020 10:38 AM
Raghav
MVP 2023