Courseiva
Self-Service and AutomationhardMultiple ChoiceObjective-mapped

SNOW-CSA Self-Service and Automation Practice Question

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?

⚠ Common exam trap

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

Answer choices

Why each option matters

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.

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.

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

About these practice questions

This SNOW-CSA question is part of Courseiva's 504-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

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.