正解:A,B,D,E
InServiceNow, when acustom tableis created, the systemautomatically generates four Access Control Rules (ACLs)to control the basic operations on that table. These rules define who cancreate, read, update, and delete recordsin the table.
Read (ACL: table_name.*.read)Allows users to view (read) recordsin the table.
Without this ACL, userscannot see any recordsin the table.
Create (ACL: table_name.*.create)Allows users to insert new recordsinto the table.
Without this ACL, userscannot add new records.
Update (ACL: table_name.*.update)Allows users to modify (edit) existing recordsin the table.
Userscannot edit recordsif this ACL is missing.
Delete (ACL: table_name.*.delete)Allows users to remove (delete) recordsfrom the table.
Userscannot delete recordswithout this ACL.
Default Access Control Rules Created for a New Table:
C: executeIncorrect- Theexecutepermission applies toScripts or UI Actions, not table records.
NoexecuteACL is automatically created for tables.
F: writeIncorrect-"Write" is NOT an ACL permission in ServiceNow.
Instead,"update"is the correct term for editing records.
Incorrect Answer Choices Analysis:
ServiceNow Docs - Access Control Rules (ACLs)#Access Control Best Practices ServiceNow Docs - Creating Custom Tables#Custom Tables and Security Official ServiceNow Documentation References: