Correct Answer: B,C
In ServiceNow, Access Controls (ACLs) are used to manage permissions for various database operations on tables and their records. The primary operations that can be controlled include:
* Create:
* Description: Permission to insert new records into a table.
* Control: ACLs can be defined to allow or deny users the ability to create records based on roles, conditions, or scripts.
* Update:
* Description: Permission to modify existing records in a table.
* Control: ACLs can restrict who can update records, ensuring that only authorized users can make changes.
Other Operations:
* Read: Controls the ability to view records in a table.
* Delete: Manages the permission to remove records from a table.
Incorrect Options:
* Execute: Not a standard database operation controlled by ACLs in ServiceNow.
* Query: While querying is part of the read operation, ACLs specifically control the read access rather than the query process itself.