CSA Exam QuestionsBrowse all questions from this exam

CSA Exam - Question 151


On a Business Rule, the When setting determines at what point the rule executes. What are the options for specifying that timing?

Show Answer
Correct Answer: A

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.

Discussion

12 comments
Sign in to comment
RedWaterOption: A
Sep 18, 2022

A is correct

Ghouse1
Sep 24, 2022

https://docs.servicenow.com/bundle/tokyo-application-development/page/script/business-rules/concept/c_BusinessRules.html

Tech_Baddie509Option: A
Mar 28, 2023

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

RGGGOption: A
Mar 13, 2023

A is correct, i tested it.

Shakir2023Option: A
Mar 13, 2023

Question related to "Time the business rule should run" and not "Database operation that the system takes on the record".

SamIV444Option: A
Apr 3, 2023

A is the correct answer.

KevFunOption: C
May 16, 2023

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'.

alpena53Option: C
Mar 2, 2023

https://docs.servicenow.com/bundle/tokyo-application-development/page/script/business-rules/concept/c_BusinessRules.html

alokjiOption: A
Jul 10, 2023

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.

Manny1218Option: A
Sep 27, 2023

In the "ServiceNow Administration Fundamentals - Tokyo" booklet, see pages, 438. It states Before, After, Async and Display

GoldBearOption: A
Nov 19, 2023

A is the correct answer for "timing" C is the "action" the rule will perform

benarjiOption: A
Jul 1, 2024

A. Before, After, Display, Async.