Question 302 of 520
Application Rules, ACL and NotificationshardMultiple ChoiceObjective-mapped

Notification Condition Evaluation: At Execution Time, Not Creation

This SNOW-CSA practice question tests your understanding of application rules, acl and notifications. 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

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?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "immediately / without restart"

    Why it matters: Time or reboot constraint — the correct answer must take effect right away without requiring a reboot or reload.

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

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.

Option B is correct because 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.

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.

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

    Clue confirmation

    The clue word "immediately / without restart" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

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

Common exam traps

Common exam trap: answer the scenario, not the keyword

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.

Detailed technical explanation

How to think about this question

In ServiceNow, notifications are sent via business rules that run on the 'after' queue, meaning they execute after the database insert or update is complete. The condition in the notification record (e.g., 'Priority is 1' AND 'State is not 6') is evaluated against the final record state. If a business rule (like a state change script) runs on the same 'before' or 'after' queue and changes the state to 6 before the notification business rule evaluates, the condition fails. This is a common pitfall when using 'Set value' actions or scripts that modify the record during the same transaction.

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.

Related practice questions

Related SNOW-CSA practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free SNOW-CSA practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this SNOW-CSA question test?

Application Rules, ACL and Notifications — This question tests Application Rules, ACL and Notifications — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: No, because the state is 6 when the condition is evaluated. — Option B is correct because 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.

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: "immediately / without restart". Time or reboot constraint — the correct answer must take effect right away without requiring a reboot or reload.

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 →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

3 more ways this is tested on SNOW-CSA

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. An organization has a notification configured to send an email to the caller's manager when an incident is resolved. The notification is active, uses the 'Email - Incident' template, and has a condition script: 'current.state.changesTo(6)'. The email properties (SMTP, etc.) are working correctly for other notifications. Recently, managers are not receiving these resolved-incident emails. The administrator checks that the 'Manager' field on the caller's user record is populated for all callers. The notification's 'Who will receive' list is set to 'Caller and caller's manager' and the 'Operation' is 'record updated'. The 'Advanced' view shows that the 'Recipients' tab includes the email field 'mail' for the caller and the manager. What should the administrator investigate next?

medium
  • A.Add a condition script to verify that the manager exists before sending.
  • B.Check the notification template for the correct email field reference for the manager.
  • C.Change the notification to 'event-based' using a business rule.
  • D.Verify that the 'Manager' field on the user record has a read ACL that allows the system user to access it.

Why B: The notification is configured correctly to send to the caller and caller's manager, and the condition script triggers on state change to 6 (Resolved). Since other notifications work, SMTP is fine. The issue likely lies in the notification template: if the template references an incorrect email field for the manager (e.g., 'email' instead of 'mail'), the system cannot resolve the manager's email address, causing the email not to be sent. Option B directly addresses this by checking the template's field reference.

Variation 2. Refer to the exhibit. An incident is updated and state changes from 'New' to 'In Progress'. Active is true. The notification is not sent. Which is the most likely cause?

medium
  • A.The condition 'state changes' is not satisfied because the state changed from 'New' to 'In Progress', which is a change.
  • B.The email template 'incident_update' is missing or invalid.
  • C.The assigned user field is empty, so there is no recipient for the notification.
  • D.The notification is configured to send only on insert, not on update.

Why C: Option C is correct because the notification requires a recipient to send, and if the assigned user field is empty, the system cannot determine who should receive the notification. In ServiceNow, notifications rely on the 'Who will receive' condition, which often includes the 'Assigned user' field. Without a value in that field, the notification is not sent, even if the state change and active flag are correctly configured.

Variation 3. A notification is configured to send an email when a new incident is created. The email template uses the field 'Short Description', but the email shows empty for that field. The template is correct. What is the most likely cause?

medium
  • A.The notification is not set to fire on create
  • B.The email template has a syntax error
  • C.The 'Short Description' field is read-only on the form
  • D.The 'Short Description' field is not populated at the time the notification is sent

Why D: Option D is correct because the notification fires when the incident is created, but the 'Short Description' field may not yet be populated at that exact moment if the record is saved before the field is filled. Notifications are triggered by the database write operation, and if the field is empty at that time, the email template will render it as blank, even though the template itself is correct.

Keep practising

More SNOW-CSA practice questions

Last reviewed: Jul 4, 2026

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.

Loading comments…

Sign in to join the discussion.

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.