- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2023 06:28 AM
Hi There,
When I am trying to edit assigned to and assignment group from the list view of table , I am getting error as "Security prevents writing to this field"
Which ACL is needed here?
Can you provide steps for this?
Thanks in advance!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2023 07:49 PM
You need to create ACL list_edit record for a list view that you want.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2023 06:15 AM
The following is ACL script code. I don't have time to debug. Please test for your own use:
var isManager;
var mg = new GlideRecord(sys_user);
mg.get(current.assigned_to);
isManager = mg.manager;
if (isManager == gs.getUserID())
answer = true;
else
answer = false;