CAD · Question #224
What is the Event Registry?
The correct answer is A. A table containing a record for every Event known to the ServiceNow system which allows. The Event Registry (stored in the sysevent_register table) is a catalog of every event that the ServiceNow platform and its applications recognize. Each record defines an event name, the application it belongs to, and the parameters it accepts. Before an event can be fired…
Question
What is the Event Registry?
Options
- AA table containing a record for every Event known to the ServiceNow system which allows
- BA Workflow which is launched every time an Event is generated; used to debug Events
- CThe method used in server side scripts to generate Events and pass parameters
- DThe Event Log which lists all Events that have been generated
How the community answered
(48 responses)- A92% (44)
- B2% (1)
- C2% (1)
- D4% (2)
Explanation
The Event Registry (stored in the sysevent_register table) is a catalog of every event that the ServiceNow platform and its applications recognize. Each record defines an event name, the application it belongs to, and the parameters it accepts. Before an event can be fired using gs.eventQueue(), it must be registered here. The registry allows the system to validate events, attach Script Actions (event handlers) to them, and manage them centrally. It is not an Event Log (that is the sysevent table), not a workflow, and not a scripting method - it is purely a registry/definition table.
Topics
Community Discussion
No community discussion yet for this question.