Courseiva
Application Rules, ACL and NotificationshardMultiple ChoiceObjective-mapped

SNOW-CSA Application Rules, ACL and Notifications Practice Question

Exhibit

sys_notification
  name: Critical Incident Alert
  table: incident
  when: after
  condition: current.priority == 1 && current.state != 6
  message: Priority 1 incident created
  recipient: "user@example.com"
  type: email

Refer to the exhibit. A priority 1 incident is created and then immediately closed (state changed to 6) before the notification processes. Will the notification be sent?

⚠ Common exam trap

ServiceNow often tests the misconception that a notification condition is evaluated at the moment of record creation rather than at the time the notification business rule executes, leading candidates to overlook the impact of subsequent state changes within the same transaction.

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

No, because the state is 6 when the condition is evaluated.

The notification condition is evaluated after the incident is saved, at which point the state is already 6 (Closed). The notification is not sent because the condition (e.g., priority = 1) is evaluated against the current record state, and a closed incident typically does not match the notification criteria. In ServiceNow, notifications are triggered by business rules that run after the database operation, so the final state of the record determines whether the condition is met.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Yes, because the incident was priority 1 at creation.

    Why it's wrong here

    Incorrect; condition is evaluated at notification processing time.

  • No, because the state is 6 when the condition is evaluated.

    Why this is correct

    Correct; condition fails because state is 6.

  • It depends on the order of business rules.

    Why it's wrong here

    Incorrect; the condition is evaluated on the final state of the record.

  • Yes, because the notification is triggered after insert.

    Why it's wrong here

    Incorrect; the condition still applies.

About these practice questions

Courseiva writes every SNOW-CSA question from scratch — 504 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-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.