- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2022 01:08 AM
I have an ACL which protection Policy is "read only", so which role is required to edit/delete this ACL.
Solved! Go to Solution.
- Labels:
-
Service Level Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2022 01:13 AM
Hi
You will need to check the ACLs written on table with "read" Operation , open the required ACL and check the Roles mentioned there.
Also, you can try below:
Please do write the fix script with below mentioned script and run the same, it should work 🙂
var gr = new GlideRecord('sys_script_include');
if (gr.get('add sys id of script include')) {
gr.sys_policy = ''; //remove protection
gr.update();
gr.deleteRecord(); --> add this line if you want to delete the record else you can set the value as empty
}
Mark my answer correct & Helpful, if Applicable.
Thanks,
Sandeep

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2022 01:13 AM
Hi Narendra,
Updating 'read-only' policy in files
Mark Correct or Helpful if it helps.
***Mark Correct or Helpful if it helps.***

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2022 01:15 AM
How do you remove Application file protection policy
Protection Policy is set to Read-Only
***Mark Correct or Helpful if it helps.***
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2022 01:13 AM
Hi
You will need to check the ACLs written on table with "read" Operation , open the required ACL and check the Roles mentioned there.
Also, you can try below:
Please do write the fix script with below mentioned script and run the same, it should work 🙂
var gr = new GlideRecord('sys_script_include');
if (gr.get('add sys id of script include')) {
gr.sys_policy = ''; //remove protection
gr.update();
gr.deleteRecord(); --> add this line if you want to delete the record else you can set the value as empty
}
Mark my answer correct & Helpful, if Applicable.
Thanks,
Sandeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2022 07:31 PM
Hi
Any update to this ?Any follow-up required? if not
Kindly mark the answer as Correct & Helpful both such that others can get help.
Thanks,
Sandeep