SNOW-CSA Self-Service and Automation Practice Question
This SNOW-CSA practice question tests your understanding of self-service and automation. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit. The following is a Business Rule that runs on the Catalog Item table:
current.work_notes = 'Automated update: ' + gs.nowDateTime();
An administrator creates this after business rule on the 'catalog_item' table but notices that no work notes are being added. What is the most likely reason?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue: "most likely"
Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
Refer to the exhibit. The following is a Business Rule that runs on the Catalog Item table:
current.work_notes = 'Automated update: ' + gs.nowDateTime();
A
The script is missing a 'current.update()' call.
In after business rules, modifications are not automatically saved; current.update() is required.
B
The business rule order is too low.
Why wrong: Order doesn't prevent the change from being saved.
C
The business rule is not set to run 'after'.
Why wrong: The description says it is an after business rule.
D
The 'work_notes' field is not on the form.
Why wrong: Work notes is a system field and exists in the database.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The script is missing a 'current.update()' call.
The 'after' business rule runs after the database insert or update operation has already completed. At that point, any changes made to field values in the script, such as setting work_notes, are not automatically saved back to the database. The script must explicitly call current.update() to persist those changes, otherwise the work_notes value is lost.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✓
The script is missing a 'current.update()' call.
Why this is correct
In after business rules, modifications are not automatically saved; current.update() is required.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
✗
The business rule order is too low.
Why it's wrong here
Order doesn't prevent the change from being saved.
✗
The business rule is not set to run 'after'.
Why it's wrong here
The description says it is an after business rule.
✗
The 'work_notes' field is not on the form.
Why it's wrong here
Work notes is a system field and exists in the database.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates assume any field assignment in a business rule is automatically saved, but ServiceNow only auto-saves changes in 'before' business rules, not in 'after' business rules.
Detailed technical explanation
How to think about this question
In ServiceNow, 'after' business rules execute after the database write has completed, meaning the GlideRecord object is in a 'read-only' state regarding persistence. To save field modifications made in an 'after' rule, you must call current.update(), which triggers a new database update. This is a common source of bugs because developers often assume field assignments in 'after' rules are automatically saved, but they are not — only 'before' rules auto-save changes. A real-world scenario is when a rule sets work_notes for auditing but fails to call update(), causing missing audit trail entries.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the SNOW-CSA exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Self-Service and Automation — This question tests Self-Service and Automation — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The script is missing a 'current.update()' call. — The 'after' business rule runs after the database insert or update operation has already completed. At that point, any changes made to field values in the script, such as setting work_notes, are not automatically saved back to the database. The script must explicitly call current.update() to persist those changes, otherwise the work_notes value is lost.
What should I do if I get this SNOW-CSA question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This SNOW-CSA practice question is part of Courseiva's free ServiceNow certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SNOW-CSA exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.