๐ Basic Question and Answers - Day 1
๐น How many ways Incident record can be created/inserted in ServiceNow?
Ans: ๐ Multiple ways to create Incident records:
- ๐ Manual
- ๐ Record Producers
- ๐จโ๐ผ Employee Self Service
- ๐ง Inbound email actions
- ๐ Importing XML/Excel and transforming data
- ๐ป Server Side Scripts (BR, WF, Fix Scripts, Background Scripts)
- ๐ Using REST or SOAP APIs
๐น How many ways Tables ๐๏ธ can be created in ServiceNow?
Ans: ๐ Three ways:
- ๐ Create from Scratch
- ๐ Create from existing table
- ๐ฅ Importing a Spreadsheet
๐ Note: Incident, Change, Problem tables are extended from Task table.
๐น What is the import set in ServiceNow and explain?
Ans: ๐ Import sets allow administrators to import data from external sources and map it to ServiceNow tables using transform maps.
๐ฏ Data Sources:
- ๐ Excel
- ๐ CSV
- ๐งพ XML
- ๐ JDBC
- ๐ LDAP
- ๐ HTTP
- ๐ค FTP
๐ง Steps:
- ๐ Create a Data Source
- ๐ฅ Load data into staging table
- ๐บ๏ธ Create Transform Field Map
- ๐ Auto Map Matching Fields
- ๐ ๏ธ Use Mapping Assist
- ๐งฎ Use Transform Map Scripts
- ๐ Use Transform Event Script to update records only
๐ก๏ธ Coalesce Field: Prevents duplicates by updating existing records if found.
๐น What are the Service Level Agreement (SLA) types and explain?
Ans:
- ๐ SLA โ Agreement between provider and customer. Includes Response Time & Resolution Time targets.
- ๐ OLA โ Internal agreement between IT teams.
- ๐ UC โ Contract with external vendors.
โฑ๏ธ Retroactive: Starts the SLA from a past time, even before official trigger.
๐งพ SLA Definition: Start Condition โก Pause Condition โก Stop Condition โก Reset Condition
๐น What are the types of Notifications in ServiceNow?
- ๐ง Email Notifications (Inbound & Outbound)
- ๐ฑ SMS Messages
- ๐ฒ Push Notifications
- ๐ฌ Messaging Apps (e.g. MS Teams, GChat)
โ Steps to send Email Notification:
- ๐ When to send โ Conditions
- ๐ฅ Who will receive โ Recipients
- ๐ What it contains โ Content
- ๐ Digest content โ If grouped
๐ค Ways to Trigger Notification:
- ๐ On Record Insert/Update
- ๐ฃ When Event is Fired
- ๐ ๏ธ Notification step in Flow Designer
โ๏ธ Weight Field: Prioritizes which notification gets sent. Default is 0. Highest wins if conflict.
๐ Subscribe Checkbox: Lets users opt-in for specific notifications.
๐ Calling Email Script in Email Body:
Syntax: ${mail_script:script_name}
๐จ How to add CC/BCC:
- ๐ญ Watch List
- โ๏ธ Workflow Script
- ๐ป Email Script
๐น How to trigger Notification using Event from Registry?
- ๐ Create Event Record from
System Policy > Events > Registry
- ๐ Link to Table (e.g., Incident)
- ๐ง Create Notification & set trigger as Event is fired
๐น What is Quick Message?
Ans: โ๏ธ Quick Messages are pre-defined templates for emails to save time and maintain consistency.
๐น What is Flow Designer?
Ans: ๐ A no/low-code interface to automate workflows in ServiceNow.
- ๐ Flow: Automated process triggered by an event
- ๐ Subflow: Reusable action sequence
- ๐ฏ Trigger: Event that initiates the flow
- โ๏ธ Action: A single operation like REST call, update, etc.
- ๐ Condition: Logic to determine flow behavior
๐น What is Trigger and its types?
Ans: ๐ A Trigger initiates flow/actions in ServiceNow.
- ๐ Record Trigger โ On record creation or update
- ๐ Scheduled Trigger โ On specific date/time or intervals
- ๐งฉ Application Trigger โ App-specific conditions
- ๐ง Inbound Email Trigger โ On receiving email
- ๐ Spoke Trigger โ External app/webhook based