SNOW-CAD Practice Question: Automating application logic with business rules and scripts
A Business Rule uses 'current.setAbortAction(true)' to stop a record from being saved. However, the record is still saved under certain conditions. Which scenario could cause this?
⚠ Common exam trap
Many exam-takers assume `setAbortAction(true)` works regardless of when the Business Rule runs, but the platform only honors the abort flag in 'before' or 'before query' scripts, not in 'after' scripts.
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 runs after the database operation.
`current.setAbortAction(true)` must be called in a Business Rule that runs before the database operation (e.g., 'before' or 'before query' order). If the Business Rule runs 'after' the database operation, the record has already been committed to the database, so aborting the action has no effect on the save. The abort flag only prevents the pending database write; once the write is complete, the flag is irrelevant.
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 Business Rule runs after the database operation.
Why this is correct
After rules cannot abort the operation.
- ✗
The Business Rule is on a table that is extended from a table with a higher order Business Rule.
Why it's wrong here
Order does not affect abort ability.
- ✗
Another Business Rule runs in the same order but sets abort to false.
Why it's wrong here
Once abort is set, it cannot be undone by another rule.
- ✗
The Business Rule has a condition that is not met.
Why it's wrong here
If condition not met, abort not triggered, but this is expected behavior.
Go deeper
Related to this question
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 →
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.