- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2025 09:03 AM
Should I use ACL or go for client scripting.
My requirement: if user is part of group A then only allow to update field. Else not
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2025 09:19 AM
best way is to create field level WRITE ACL and use advanced script
answer = gs.getUser().isMemberOf('Group A');
Another way is to use Display business rule and use g_scratchpad variable and then use onLoad client script
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2025 09:19 AM
best way is to create field level WRITE ACL and use advanced script
answer = gs.getUser().isMemberOf('Group A');
Another way is to use Display business rule and use g_scratchpad variable and then use onLoad client script
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader