ServiceNow Certified Application Developer — Question 40
Which one of the following objects CANNOT be used in a Script Action script?
Answer options
- A. previous
- B. GlideRecord
- C. event
- D. current
Correct answer: A
Explanation
The 'previous' object is not available in Script Action scripts, as they do not have a context that maintains a previous state. In contrast, 'GlideRecord', 'event', and 'current' are valid objects that can be utilized within Script Actions, allowing for database interactions and event handling.