- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2018 09:05 AM
When we create a custom app, the tables created will automatically have the option checked for 'Create access controls'. Is there anyway we can uncheck it? I want to do it to make the table visible to public and have no ACLs related to it.
Please advice. Thanks!
Solved! Go to Solution.
- Labels:
-
Scoped App Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2018 09:10 AM
Hello,
If this is for all new tables created then, there is a default business rule on sys_db_object table which set it to default as true. You can just deactivate this BR named "Set create access controls default".
Here is its link: https://instance_name.service-now.com/nav_to.do?uri=sys_script.do?sys_id=d2ad3890c3023000bac1addbdfba8f95
Replace instance_name with yours, Open it and set active to false
Or you could just un-check it when ACLs are not required manually.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2018 09:10 AM
Hello,
If this is for all new tables created then, there is a default business rule on sys_db_object table which set it to default as true. You can just deactivate this BR named "Set create access controls default".
Here is its link: https://instance_name.service-now.com/nav_to.do?uri=sys_script.do?sys_id=d2ad3890c3023000bac1addbdfba8f95
Replace instance_name with yours, Open it and set active to false
Or you could just un-check it when ACLs are not required manually.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2018 09:54 AM
Thanks for the quick response.