๐ ServiceNow Interview Questions Grind
ย Q1: What kind of emails does an Inbound Action accept?
๐ Answer:
Inbound Actions in ServiceNow can process:
-
โ๏ธ New emails โ Create new records (e.g., Incident).
-
๐ Forwarded emails โ Create or update based on forwarded data.
-
๐ฉ Reply emails โ Update existing records (e.g., add comments to an Incident).
๐ก Pro Tip: Email parsing relies on conditions + script logic in the Inbound Action.
Q2: What kind of basic administration work have you done?
๐ Answer (Sample):
-
Adding users and managing groups.
-
Assigning roles to users and groups.
-
Performing day-to-day configurations (forms, lists, and notifications).
๐ Interview Hint: Show familiarity with User/Group/Role management โ a fundamental admin task.
Q3: How many instances does your current project have?
๐ Answer:
Typically 3๏ธโฃ instances:
-
๐ ๏ธ Development (Dev) โ For building and testing configurations.
-
๐งช Test (QA/UAT) โ For user testing and validations.
-
๐ Production (Prod) โ Live instance used by end-users.
๐ก Pro Tip: Some companies also use Sub-Prod/Sandbox for training or POCs.
Q4: How do you migrate customizations and code between instances?
๐ Answer:
Using Update Sets.
-
Capture changes in an Update Set in the source instance.
-
Move the Update Set to the target instance.
-
Review and commit it to apply changes.
Q5: What is an Update Set?
๐ Answer:
An Update Set is a container ๐๏ธ used to capture and migrate customizations between instances.
๐ Process:
-
Create a Local Update Set.
-
Do the changes โ they get recorded in the Update Set.
-
Mark it as Complete when finished.
-
Move it to another instance (e.g., Dev โ Test).
๐ Example:
Instead of manually redoing a form configuration in Test, capture it in an Update Set in Dev and move it over.
๐ก Pro Tip: Data (like actual records) is not captured in Update Sets โ only configurations.
Q6: How do you migrate Update Sets?
๐ Answer:
-
In the Target instance, create an Update Source.
-
Provide the credentials of the Source instance.
-
Pull all Completed Update Sets.
-
Review and Commit them in the Target instance.
โ ๏ธ Best Practice: Always preview Update Sets before committing to check for conflicts or missing dependencies.