Assigned to field should be editable only to members of assignment groups?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2022 10:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2022 10:51 AM
Hi,
You can write field level write ACL for assigned to field with condition assignment_group is one of my group.
Creating and Editing Access Controls | ServiceNow Developers
Thanks and Regards,
Saurabh Gupta
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2022 10:53 AM - edited 12-27-2022 10:59 AM
Hi @shivkumar1 ,
Yes, you can achieve this by creating 'Write' ACL on Incident table. Below is the screenshot for reference.
Please mark helpful/like if the solution is in line with your expectation.
Regards,
Gagan k
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2022 10:55 AM
Hi Shivkumar,
Write a write acl for incident.assigned_to field.
if(gs.getUser().isMemberOf(current.assignment_group))
{
return true;
}
Thanks & Regards
Prashant
If my response helped you in any way, please mark this response as CORRECT & HELPFUL
Please appreciate the efforts of community contributors by marking the appropriate response as the correct answer and helpful. This may help other community users to follow the correct solution in the future.
********************************************************************************************************
Cheers,
Prashant Kumar
ServiceNow Technical Architect
Community Profile LinkedIn YouTube Medium TopMate
********************************************************************************************************