ServiceNow Certified Application Developer — Question 150
An application called My App has a table, MyAppTable, with this Application Access configuration:
Accessible from: All application scopes
Can read: Selected -
Can delete: Not selected -
Allow configuration: Selected -
Which of the following is true based on this configuration?
Answer options
- A. An application developer working in another privately scoped application can write a Business Rule for the MyAppTable table which successfully deletes all records from the MyAppTable table
- B. An application developer working in the My App scope can write a Business Rule for the MyAppTable table which successfully deletes all records from the MyAppTable table
- C. Any Application developer can write a Business Rule which successfully deletes all records from the MyAppTable
- D. No Business Rule can be written which successfully deletes all records from the MyAppTable table
Correct answer: B
Explanation
The correct answer is B because the configuration allows developers within the My App scope to read and delete records from MyAppTable. Options A and C are incorrect as they imply permissions outside of the My App scope, which is not allowed. Option D is false because developers within the My App scope have the necessary permissions to delete records.