- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2024 06:54 AM
Hello Community,
I have a requirement as below :
I want to hide a UI action on change record table for a specific group.
Thank you in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2024 07:05 AM - edited 04-01-2024 07:12 AM
Hello @GP001,
Add condition like below:
!(gs.getUser().isMemberOf('GROUP_NAME'))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2024 07:04 AM
It is easy to show only some roles by using roles sections. Which will restrict the UI action to this group if the group does not have the role.
Else, add in the condition !gs.getUser().isMemberOf(<group name>)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2024 07:05 AM - edited 04-01-2024 07:12 AM
Hello @GP001,
Add condition like below:
!(gs.getUser().isMemberOf('GROUP_NAME'))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2024 07:43 AM
Thanks a lot.