Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Can we uncheck 'create access controls' option from a custom table?

AmritaT
Tera Expert

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.

find_real_file.png

Please advice. Thanks!

 

1 ACCEPTED SOLUTION

Alikutty A
Tera Sage

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.

View solution in original post

2 REPLIES 2

Alikutty A
Tera Sage

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.

AmritaT
Tera Expert

Thanks for the quick response.