ServiceNow Certified Application Developer — Question 168
When configuring the content of an Email Notification, which syntax should be used to reference the properties of an event triggering the Notification?
Answer options
- A. ${event.<property name>}
- B. ${current.<property name>}
- C. ${<property name>.getDisplayValue()}
- D. ${gs.<property name>}
Correct answer: A
Explanation
The correct answer is A, as it specifically uses the 'event' object to access properties related to the triggering event. Options B and D reference different contexts that do not pertain directly to the event properties, while option C does not properly format the reference needed for Email Notifications.