On a Business Rule, the When setting determines at what point the rule executes. What are the options for specifying that timing?
On a Business Rule, the When setting determines at what point the rule executes. What are the options for specifying that timing?
The options for specifying the timing of a Business Rule in ServiceNow are Before, After, Async, and Display. 'Before' specifies that the rule runs before any action is taken on the record in the database. 'After' indicates that the rule runs after the action is taken on the record in the database. 'Async' means that the rule runs asynchronously after the action is completed, and 'Display' means the rule runs after the data is read from the database but before the form is presented to the user. These options cover the different points at which a business rule can execute in the ServiceNow platform.
A is correct
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/business-rules/concept/c_BusinessRules.html
The answer is A. Scroll down to the section title "Time the business rule should run" the answers will be there https://docs.servicenow.com/bundle/tokyo-application-development/page/script/business-rules/concept/c_BusinessRules.html
A is correct, i tested it.
Question related to "Time the business rule should run" and not "Database operation that the system takes on the record".
A is the correct answer.
The ones who gave C as answer: https://docs.servicenow.com/bundle/tokyo-application-development/page/script/business-rules/concept/c_BusinessRules.html Read again the section 'Time the business rule should run'.
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/business-rules/concept/c_BusinessRules.html
A. Before, After, Async, Display is the correct answer efore After the user submits the form but before any action is taken on the record in the database. After After the user submits the form and after any action is taken on the record in the database. Async When the scheduler runs the scheduled job created from the business rule. The system creates a scheduled job from the business rule after the user submits the form and after any action is taken on the record in the database. Note: Newly created business rules will run during upgrades. Display Before the form is presented to the user, just after the data is read from the database.
In the "ServiceNow Administration Fundamentals - Tokyo" booklet, see pages, 438. It states Before, After, Async and Display
A is the correct answer for "timing" C is the "action" the rule will perform
A. Before, After, Display, Async.