π ServiceNow Interview Questions GrindΒ
β Q1: What is the difference between a UI Policy and a Data Policy?
π Answer:
-
UI Policy π₯οΈ β Applies when a record is inserted or updated via the ServiceNow UI (forms).
-
Data Policy βοΈ β Applies whenever a record is inserted or updated into the database (any source: UI, import sets, integrations, APIs).
π Pro Tip: Data Policies are stricter since they enforce rules universally, not just through forms.
Q2: What is a Schema Map?
π Answer:
A Schema Map visually displays tables and their relationships in ServiceNow.
π Benefits:
-
Helps admins understand inheritance and relationships.
-
Makes it easy to navigate complex database structures.
-
Useful for analyzing extended tables (e.g., Task β Incident β Change).
π‘ Interview Hint: Compare Schema Map to a visual ER diagram for ServiceNow tables.
Q3: What is your experience with Notifications?
π Answer (Sample):
βI have worked on email templates and created two main types of notifications:
-
π§ Record-based Notifications β Sent when a record is inserted/updated.
-
β‘ Event-based Notifications β Sent when a custom event is triggered.β
Β Q4: What is the process of triggering Event-based Notifications?
π Answer:
Steps to configure:
-
Create an Event in the Event Registry.
-
Create a Notification and set it to trigger when the event is fired.
-
In a Business Rule, trigger the event using:
π Pro Tip: Event-based notifications are more flexible than record-based ones since you can fire them from any script.
Q5: What is a Dictionary in ServiceNow?
π Answer:
The Dictionary is a system table (sys_dictionary
) that maintains metadata for all tables and fields in ServiceNow.
π Contains:
-
Field properties (read-only, mandatory, default values, etc.)
-
Field data types
-
Relationships and references
Q6: Did you work on SRM (Service Request Management)?
π Answer:
Yes β
. SRM in ServiceNow is essentially the Service Catalog.
-
Worked on designing and configuring catalog items.
-
Created request workflows for approvals and fulfillment.
Q7: Could you please tell me your experience in SRM?
π Answer (Sample):
βI have created catalog items with variables and variable sets, designed workflows using Flow Designer/Workflows, and leveraged execution plans for request fulfillment. My work also included approvals, email notifications, and integration touchpoints.β
Q8: What is a Workflow?
π Answer:
A Workflow is a diagrammatic representation π used to automate processes in ServiceNow.
π Features:
-
Drag-and-drop interface for process design.
-
Supports approvals, task creation, timers, and conditions.
-
Commonly used for Catalog Items, Change Requests, and HR/IT processes.
π‘ Pro Tip: While traditional Workflows are still used, ServiceNow encourages using Flow Designer for newer implementations.