Courseiva

SNOW-CAD Practice Question: Automating application logic with business rules and scripts

A ServiceNow administrator notices that a business rule designed to update the 'short_description' field on the 'incident' table is not executing when a user changes the field via a custom UI page that uses GlideRecord. The script in the business rule uses current.setValue() and current.update(). What is the most likely cause?

⚠ Common exam trap

Watch out — candidates often assume any GlideRecord call triggers business rules, but client-side GlideRecord bypasses server-side execution, and the exam tests this specific distinction between client-side and server-side script execution contexts.

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 business rule is set to run on the server, but the custom UI page uses client-side GlideRecord which does not trigger server-side business rules.

Client-side GlideRecord (g_form.getReference or direct GlideRecord in a UI page) runs entirely in the browser and does not trigger server-side business rules. Business rules execute only when a record is saved via server-side operations (e.g., form submit, web service, or server-side script). Since the custom UI page uses client-side GlideRecord, the update bypasses the business rule engine entirely.

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 'short_description' field is read-only on the form.

    Why it's wrong here

    Read-only fields can still be updated via script; the issue is the trigger.

  • The business rule is updating itself recursively and has been disabled.

    Why it's wrong here

    Recursive updates would cause a loop, not prevent execution; the business rule is simply not triggered.

  • The business rule is set to run on the server, but the custom UI page uses client-side GlideRecord which does not trigger server-side business rules.

    Why this is correct

    Client-side GlideRecord operations do not invoke server-side business rules; they go directly to the database without triggering 'after' update logic.

  • The 'short_description' field is not in the business rule's 'Fields to update' list.

    Why it's wrong here

    Business rules do not have a 'Fields to update' list; they use conditions and script logic.

About these practice questions

Courseiva writes every SNOW-CAD question from scratch — 481 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or 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-CAD 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-CAD exam.