Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2022 02:45 AM
Hi,
“Assigned to” field should be editable only to members of the “Assignment group”. (Hint: write ACL)
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2022 02:51 AM
Hi @shivkumar1 ,
You can create field level ACL for that table.
and write down condition as below in script :-
if(gs.getUser().isMemberOf(current.assignment_group.toString())){
return true;
}else {
return false;
}
Before that you must have security_admin role.
Please Mark My Response as Correct/Helpful based on Impact
Regards,
Gunjan Kiratkar
2X ServiceNow MVP
Community Rising Star 2022
Youtube : ServiceNow Guy
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2022 02:51 AM
Hi @shivkumar1 ,
You can create field level ACL for that table.
and write down condition as below in script :-
if(gs.getUser().isMemberOf(current.assignment_group.toString())){
return true;
}else {
return false;
}
Before that you must have security_admin role.