0% found this document useful (0 votes)
742 views

Advanced ServiceNow Interview Questions and Answers 2017

This document provides sample interview questions and answers for a ServiceNow interview. It begins with foundational questions about what ServiceNow is and how it works. It then covers more advanced topics like system configuration, scripting, workflows and integrations. The questions help assess a candidate's technical knowledge and experience with ServiceNow administration, customization, and development.

Uploaded by

Anusha Pavuluri
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
742 views

Advanced ServiceNow Interview Questions and Answers 2017

This document provides sample interview questions and answers for a ServiceNow interview. It begins with foundational questions about what ServiceNow is and how it works. It then covers more advanced topics like system configuration, scripting, workflows and integrations. The questions help assess a candidate's technical knowledge and experience with ServiceNow administration, customization, and development.

Uploaded by

Anusha Pavuluri
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 15

11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

  

Blog
Blog (https://mindmajix.com/blog) / SERVICENOW (https://mindmajix.com/servicenow/) / ServiceNow
Interview Questions

ServiceNow Interview Questions


 Bookmark  Email  4446 0

If you're looking for ServiceNow Interview Questions, you are at right place. There are lot of
opportunities from many reputed companies in the world. According to research ServiceNow has a
market share of about 0.7%. So, You still have opportunity to move ahead in your career in
ServiceNow. Mindmajix offers advanced ServiceNow Interview Questions that helps you in cracking
your interview & acquire dream career.

Q. What is servicenow?
ServiceNow is a cloud based ITSM tool. Please check the below url before attending a service-now
interview.
https://wiki.servicenow.com/index.php?title=Product_Overview

Q. What do you mean by term “Application” in servicenow?


Application is a group of modules which provides its related information.For example change
application provides the information related to change process. It consist of modules like create
change ticket,view change tickets etc.

Q. What is the latest servicenow user interface and when it was released?
The latest user interface is UI14 interface.It came in Eureka release

Q. What is full form of CMDB ?


Con guration Management Database

https://mindmajix.com/servicenow-interview-questions 1/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. What is CMDB Baseline ?


CMDB baselines helps to understand and control the changes that have been made to a
con guration item(CI) after its Baseline has been created. Baseline is the snapshot of a CI

Q. How to enable or disable an application ?


Navigate to “Application Menus” module under system de nition application.Open the respective
application that require to be enable or disable.Set active as true to enable it or set active to false to
disable it

Q. What is a view ?
View de nes the arrangement of elds on a form or a list. For one single form we can de ne multiple
views according to the user preferences or requirement.

Q. What is ACL?
An ACL is access control list that de nes what data a user can access and how they can access it in
service now.

Q. What do you mean by impersonating a user? How it is useful?


Impersonating a user means that you can log in to the system as that user and can have feel how the
service-now UI is set for that user.This is very useful while testing.For example if you are required to
test that a user can access change form or not.You can impersonate that user and can test instead of
logging out from your session and logging again with that user credentials.

Q. Which is the Parent table for incident,change and problem ?


Task table

Q. What is a record producer ?


A record producer is a type of a catalog item that allows users to create task-based records from the
service catalog.For example you can create a change record or problem record using record
producer. Record producers provides an alternative way to create records through service catalog

Q. What is dictionary override?


Dictionary Overrides provides the capability to override several properties of a eld in extended
table.For example change table is extended from task table.There is a eld named status in task
table and set as read-only.When we use this eld in change form it will show be a read only.We can
set this to non-read only by using the dictionary override.Similarly there are other properties that can
be set for the elds in extended table.

https://mindmajix.com/servicenow-interview-questions 2/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. What do you mean by coalesce?


Coalesce is a property of a eld that we use in transform map eld mapping.When we set the
coalesce as true for a eld mapping it signi es that this eld will work as unique key.If a eld match
is found with the coalesce eld, then existing record will be updated with the imported information
in target table else a new record will be inserted into the target table

Q. What is an UI policy?
UI policies are alternative to client scripts.It can be used to set a eld as mandatory, readonly and
visible on a form. You can also use UI policy for dynamically changing a eld on a form.

Q. What is a data policy?


Data policy checks the mandatory and read-only of a eld whenever a record is inserted or updated
through a web-service or import set.For example: If a mandatory eld in the incoming record (from
import set or web-service) is empty then the data policy will not allow to insert that record into the
table.

Q. What is difference between UI policy and data policy ?


UI policy acts when a record is inserted or updated through a servicenow UI i.e servicenow forms
while data policy acts whenever a record is inserted or updated into database through any means.

Q. What is a client script?


Client script sits on the client side(the browser) and run there only.types of client script are OnLoad()
OnSubmit() OnChange() OncellEdit)

Q. How can you cancel a form submission through client script?


In the onSubmit function return false. function onSubmit() {

                     return false;

Q. What is a business rule?


Business rule (https://mindmajix.com/business-rules-management-courses) is server side scripting
that executes whenever a record is inserted, updated, deleted, displayed or queried.The key thing to
keep in mind while creating a business rule is that when and on what action it has to execute. You
can run the business rule ‘on display’, ‘on before’ or ‘on after’ of an action (insert,delete,update) is
performed.

https://mindmajix.com/servicenow-interview-questions 3/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. Can you call a business rule through a client script


Yes you can call a business rule through a clientscript by using glideajax

ServiceNow T (https://mindmajix.com/servicenow-training)raining (https://mindmajix.com/servicenow-


training), you can design, configure and maintain your ServiceNow investment, and acquire the skills you need
to work productively across the business from the beginning. Enroll Now!

Q. What is a gliderecord?
Gliderecord is a javaclass that is used for database operations instead of writing SQL queries.

Q. What do you mean by data lookup and record matching?


Datalookup and record matching feature helps to set a eld value based on some condition instead
of writing scripts. For example:on Incident forms, the priority lookup rules sample data automatically
sets the incident Priority based on the incident Impact and Urgency values. Data lookup rules allow
to specify the conditions and elds where they want data lookups to occur.

Q. What is an update set?


Update set is a group of customization.It captures the customization or con guration changes made
by a user and then these update sets can be moved from one instance to another. For example if we
made some con guration changes in our development environment and want same changes in our
test environment then we can capture all the changes in an update set and can move this update set
to the test environment instead of doing changes manually in test environment.

Q. What is a sys_id?
A unique 32-character GUID that identify each record created in each table in servicenow

Q. What is LDAP Integration and its use?


LDAP is Lightweight Directory Access Protocol.It is used for user data population and User
authentication. Servicenow integrates with LDAP directory to streamline the user log in process and
to automate the creation of user and assigning them roles

Q. How to set a eld unique on table


Go to that respective eld dictionary and set the unique check box to true.

Q. What is data dictionary?


Data dictionary de nes every table and eld in the system. It contains information about a eld’s
data type,default value, dependency, and other attributes

https://mindmajix.com/servicenow-interview-questions 4/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. What happens when a user make some changes the homepage ?


When a user make some changes on the homepage then that pages is saved as his personalized
homepage instead of updation on the actual homepage.For example home page name is Incident
overview.When a user make some changes on it then this page is saved as My incident overview and
is only visible to that user.

Q. What role you are required to create/update ACL?


security_admin

Q. How you can check on which servicenow instance node you are working ?
Goto SystemDiagnostic -> Stats. Statistic page will be open where you can get the details of node
 Call us on
and the instance on which you are working on  Leave a Message

Q. How to enable or disable the pie chart labels


To enable or disable the labels in pie chart we need to set the property glide.ui.chart.pie.labels to true
or false.

Q. What is installation exit?


Installation exits are customizations that exit from Java to call a script before returning back to Java.
Navigate to System De nition > Installation Exits. Some installation exit names (Login, Logout,
ValidatePassword, ExternalAuthentication) are reserved and cannot be changed. Other installation
exits can override these with custom script that replaces the script in the default installation exit.

Q. What is import set?


Import Sets is a tool used to import data from various data sources and, then using transform map,
map that data into ServiceNow tables. The Import Sets table acts as a staging table for records
imported.

Q. What is transform Map?


A transform map transform the record imported into servicenow import set table to the target table.
It also determines the relationships between elds displaying in an Import Set table and elds in
target table

Q. What do you mean by Foreign record insert?


A foreign record insert occurs when an import makes a change to a table that is not the target table
for that import. This happens when updating a reference eld on a table.

Q. Which searching technique is used to search a text or record in Servicenow ?


Zing is the text indexing and search engine that performs all text searches in ServiceNow.

https://mindmajix.com/servicenow-interview-questions 5/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. What does the Client Transaction Timings plugin does?


The Client Transaction Timings plugin enhances the system logs by providing more information on
the duration of transactions between the client and the server. By providing information on how time
was spent during the transaction, performance issues can be tracked down to the source by seeing
where the time is being consumed.

Q. What is inactivity monitor?


An inactivity monitor triggers an event for a task record if the task has been inactive for a certain
period of time. If the task remains inactive, the monitor repeats at regular intervals.

Q. What is domain separation?


Domain separation is a way to separate data into (and optionally to separate administration by)
logically-de ned domains. For example A client XYZ have two business and they are using
servicenow single instance for both business.They do not want that user’s from one business can see
data of other business.Here we can con gure domain separation to isolate the records from both
business.

Q. How you can remove Remember me check box from login page?
You can set the property – “glide.ui.forgetme” to true to remove the Remember me check box from
login page.

Check Out ServiceNow Tutorials (https://mindmajix.com/servicenow-tutorial)

Q. What is HTML Sanitizer?


The HTML sanitizer automatically cleans up HTML markup in HTML elds to remove unwanted code
and protect against security concerns such as cross-site scripting attacks. The HTML sanitizer is active
for all instances starting with the Eureka release.

Q. Which table is used in servicenow to audit changes to records?


ServiceNow uses the Sys Audit [sys_audit] table to audit changes to records.

Q. What is Schema map?


The schema map displays the details of tables and their relationships in a visual manner, allowing
administrators to view and easily access different parts of the database schema.

Q. What is a dashboard?
Dashboard is a visual collection of reports and paralytics presented as KPI scorecards and indicator
summary tab.

https://mindmajix.com/servicenow-interview-questions 6/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. What is scorecard?
A scorecard can be used to measure the performance of an employee or a business process. It is a
graphical representation of progress over time. A scorecard belongs to an indicator. The rst step is to
de ne the indicators that you want to measure. Scorecards can be enhanced by adding targets,
breakdowns (scores per group), aggregates (counts, sums, and maximums), and time series (totals
and averages).

Q. What do you mean by indicators in performance analytics in servicenow


Indicators, also known as metrics, business metrics, or KPIs, are statistics that businesses track to
measure current conditions and to forecast business trends.

Q. How to set the default value of a date eld to current datetime value?
Goto the dictionary of the respective date-time eld and set the default value as :
javascript:gs.nowDateTime();

Q. What is client transaction timing?


Client transaction timing provides more information on the duration of transactions between the
client and the server.This require to activate the plugin – “Client transaction timing plugin”.

Q. What asetWork ow(e) function does?


setWork ow(e) enables or disables the running of business rules that might normally be triggered by
subsequent actions. If the e parameter is set to false, an insert/update will not be audited. Auditing
only happens when the parameter is set to true for a GlideRecord operation.
Parameters:
e – Boolean variable that if true (default) enables business rules, and if false to disables them.

Q. What the setForceUpdate() function does?


setForceUpdate() updates the record even if there is no changes on the record.

Q. What is the signi cance of setLimit(n) function.


setLimit(n) functions limits the number of records to query by Gliderecord().

Q. Can you update a record without updating its system elds(like sys_updated_by,
sys_updated_on) ?
Yes, you can do it by using a function autoSysFields() in your server side scripting.Whenever you are
updating a record set the autoSysFields() to false.
example:
var gr = new GlideRecord(‘incident’);
gr.query();

https://mindmajix.com/servicenow-interview-questions 7/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

if(gr.next()){
gr.autoSysFields(false);
short_description = “Test from Examsmyntra” ;
gr.update();
}

Q. How to get the row count in a gliderecord?


By using the getRowCount() function you can retrieve the number of rows.

Q. What is the difference between deleteMultiple() and deleteRecord()


deleteMultiple() deletes multiple records according to the current “where” clause. Does not delete
attachments, whereas deleteRecord() deletes single record.

Q. How to restrict users to upload an attachment in servicenow


Following is the step wise step process:
Navigate to System Properties > Security.
In the Attachment limits and behavior section, locate the List of roles (comma-separated) that can
create attachments: property (glide.attachment.role).
Enter one or more roles separated by commas.
Only roles listed in this property are able to upload attachments to a record. If no roles are entered,
then all roles can upload attachments to ServiceNow forms.
Click Save.

Q. How to disable attachment on a speci c servicenow table?


Go to the dictionary of that table and add “Add no_attachment” to the Attributes eld.

Q. What is the signi cance of cascade variable checkbox in order guide ?


Check box to select whether the variables used should cascade, which passes their values to the
ordered items. If this check box is cleared, variable information entered in the order guide is not
passed on to ordered items.

Q. What are Gauges ?


A gauge can be based on a report and can be put on a homepage or a content page.

Q. What do you mean by Metrics in ServiceNow?


Metrics record and measure the work ow of individual records. With metrics, customers can arm
their process by providing tangible gures to measure, for example, how long it takes before a ticket
is reassigned or changes state.

https://mindmajix.com/servicenow-interview-questions 8/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. How may types of search is available in ServiceNow ?


Use any of the following searches to nd information in ServiceNow:
Lists: nd records in a list;
Global text search: nd records in multiple tables from a single search eld.
Knowledge base: nd knowledge articles.
Navigation lter: lter the items in the application navigator.
Search screens: use a formlike interface to search for records in a table. Administrators can create
these custom modules.

Q. Which roles are used by Knowledge management?


Knowledge management uses these roles knowledge , knowledge_admin , and admin role.

Q. How to create your own report?


Navigate to Reports > Create New. In releases prior to Eureka, navigate to Reports > View / Run and
then click New.

Q. How to activate the reporting engine?


Make the glide.report.use_charting_v2 system property to true.

Q. Name few types of reports that you can generate?


Few of reports are:
List
Bar
Pivot
Pie
Calender

Q. How to control the script conditions of Access Control Rules apply to a table’s reference elds
?
You can Add glide.sys_reference_row_check to the System properties and set to true.

Q. How to create an Inbound Email Action?


Navigate to System Policy > Email > Inbound Actions and Click New.

Q. How ServiceNow recognizes Inbound Emails?


Via Watermark or InReplyTo email header. If These are not present, ServiceNow recognizes email
containing a pre x in the subject line.

https://mindmajix.com/servicenow-interview-questions 9/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. How to enable automatic user creation from email ?


Set the property glide.pop3readerjob.create_caller to true in system properties.

Q. How to allow locked out users to trigger inbound email actions?


By adding the system property glide.pop3.process_locked_out to true.
Refer for more Information.
https://wiki.servicenow.com/index.php?title=Inbound_Email_Actions

Explore ServiceNow Sample Resumes! Download & Edit, Get Noticed by Top Employers!
Download Now! (https://mindmajix.com/servicenow-sample-resumes)
Q. Which role is required to create and access baseline?
ecmdb_admin role is required to create and access baselines.

Q. How to change the recipient limit tin email noti cation?


By setting the system property glide.email.smtp.max_recipients.

Q. What is the difference between ${URI} and ${URI_REF}?


${URI} shows the word LINK where as ${URI_REF} shows the display value of the record as the link
text.

Q. How to hide watermark globally?


Create a new property named glide.email.watermark.visible and set it to false.

Q. What is a BSM Map?


BSM Map is a Business Service Management map.It graphically displays the con guration items (CI)
that support a business service and indicates the status of those con guration items.

Q. In which table update sets and customization are stored?


Each update set is stored in the Update Set [sys_update_set] table, and the customizations that are
associated with the update set, are stored in [sys_update_xml] table.

Q. What happens if a Default update set is marked as complete?


If the Default update set is marked Complete, the system creates another update set named Default1
and uses it as the default update set.

Q. Does Homepages and Content pages are added to the update sets ?
Homepages and content pages are not added to update sets by default. You must manually add
pages to the current update set by unloading them.

https://mindmajix.com/servicenow-interview-questions 10/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. What is Reference quali er?


Reference quali ers is used to restrict the data that is selectable for a reference eld.

Q. What is Performance Analytics in ServiceNow?


Performance Analytics is an additional application in ServiceNow that allows customers to take a
snapshot of data at regular intervals and create time series for any key performance indicator (KPI) in
the organization.

Q. How to disable client transaction ?


Set the glide.client.track_transaction_timingsproperty to false to disable any client transaction.
Refer for more :
https://wiki.servicenow.com/index.php?title=Client_Transaction_Timings

Q. How to change the Homepage layout?


Administrators can create or modify layouts by navigating to Homepage Admin > Layouts.

Q. How to change the banner and list caption background color?


You can change banner and list caption background color by navigating to
System Properties > CSS.

Q. How to create a new role?


Navigate to User Administration > Role and click New.

Q. Can I have more than one function listening to the same thing?
You can, but there is no guarantee of sequencing. You cannot predict what order your event handlers
will run.

Q. Which method is used to get all the active/inactive records from a table ?
You can use addActiveQuery() method to get all the active records and addInactiveQuery() to get the
all inactive records.

Q. How do you get the result set from two tables in glide script?
addJoinQuery(joinTable, [primaryField], [joinTableField])
Note : This is not a true DATABASE Join. addJoinQuery() adds a subQuery.

Q. Which object is used to reference the current active form in client script?
g_form object is used to reference the current active form in client script

https://mindmajix.com/servicenow-interview-questions 11/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. Which object is used to refer the current logged in user in client script?
You can use the object g_user object to get the details of current active user.

Q. State the best practices of client scripts?


Few of the best practices to use client Scripts :
Enclose Code in Functions.
Aviod DOM manipulation, use g_form object.
Avoid global client scripting, etc.

Q. How will you hide/show a eld using client script?


You can use the g_form.setVisible(‘ eldname’, ‘value’); method to show/hide a eld using client script.

Q. What is the processing order for Record ACL rules?


Record ACL rules are processed in the following order:
Match the object against eld ACL rules.
Match the object against table ACL rules.
User must pass both eld and table ACL rules in order to access a record object Relationship.

Q. How do you get the records of a speci ed elds which are not null ?
addNotNullQuery(String eldName) can be used.
Example : To get all the records where ‘name’ is not null.
addNotNullQuery(‘name’);

Q. How will you get all the records where incident is having category as hardware or software ?
Use addOrCondition(String name, String oper, Object value) .
Example :
var gr = new GlideRecord(‘incident’);
var qc = gr.addQuery(‘category’, ‘hardware’);
qc.addOrCondition(‘category’, ‘software’);
gr.query();

Q. How to set the invalid queries into empty result sets ?


By default queries with invalid eld names run but ignore the invalid condition. For more strict query
control you can enable the glide.invalid_query.returns_no_rows property which will result in an empty
result set for invalid queries.

Q. How to determine whether any of the eld value in a record have changed ?
By using the method changes() you can determine that the eld value has been changed for a
record.

https://mindmajix.com/servicenow-interview-questions 12/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

Q. What is the difference between next() and _next() method ?


next() method is responsible to move to the next record in GlideRecord. _next() provides the same
functionality as next(), intended to be used in cases when we query the table having a column name
as next.

Q. Which glide function is used to retrieve the number of rows of a table?


Using getRowCount() method .
For more information, visit  https://wiki.servicenow.com/index.php?title=GlideRecord

Social Share

   
(https://www.facebook.com/sharer/sharer.php?
(https://twitter.com/home?
(https://plus.google.com/share?
(https://www.linkedin.com/shareArticle?
u=https://mindmajix.com/servicenow-
status=https://mindmajix.com/servicenow-
url=https://mindmajix.com/servicenow-
mini=true&url=https://mindmajix.com/servicenow-
interview-interview-interview-interview-
questions)questions)questions)questions&title=https://mindmajix.com/servicenow-
interview-
Previous (https://mindmajix.com/atg- Next (https://mindmajix.com/oracle-dba-
questions&summary=&source=)
interview-questions) interview-questions)

https://mindmajix.com/servicenow-interview-questions 13/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017

0 Comments Mindmajix 
1 Login

Sort by Best
 Recommend ⤤ Share

Start the discussion…

LOG IN WITH
OR SIGN UP WITH DISQUS ?

Name

Be the first to comment.

ALSO ON MINDMAJIX

Best Practices For Performance Tuning In SAP Simple Finance Tutorial For Beginners
SSAS Cubes And Professionals
2 comments • a month ago 1 comment • a month ago
Josna Peters — Ok. Thanks Lee for the info. We Emily Sophia — The SAP finance tutorial was
will try to evaluate it with our Technical awesome..Learnt much more in detail about the
team.Thanks Mindmajix.com topic..Good work.. Keep it up..

Advanced Chef DevOps Interview Questions Advanced Talend Interview Questions And
And Answers 2017 Answers 2017
1 comment • a month ago 1 comment • a month ago
Daisy Scott — Great Blog Post.. Very helpful. tekclasses — Excellent Information. Well
explained and very useful techniques. Thank
you.

✉ Subscribe d Add Disqus to your siteAdd DisqusAdd 🔒 Privacy

RELATED COURSES

 

PERL Scripting Training SAP QM Training SAP BW Training


(https://mindmajix.com/… (https://mindmajix.com/… (https://mindmajix.com/

https://mindmajix.com/servicenow-interview-questions 14/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017
     (4.0)      (4.0)      (5.0)
120 Enrolled 63 Enrolled 1782 Enrolled

SEARCH 

CATEGORIES

 Apache Ambari (https://mindmajix.com/apache-ambari/)

 SAP EWM (https://mindmajix.com/sap-ewm/)

 SAP MDM (https://mindmajix.com/sap-mdm/)

 Oracle HRMS (https://mindmajix.com/oracle-hrms/)

 WEBLOGIC (https://mindmajix.com/weblogic/)

 Pentaho (https://mindmajix.com/pentaho/)

 Oracle WebCenter (https://mindmajix.com/oracle-webcenter/)

 IBM BPM (https://mindmajix.com/ibm-bpm/)

 SEO (https://mindmajix.com/seo/)

 IOT (https://mindmajix.com/iot/)

VIEW MORE (https://mindmajix.com/blog-category)

RELATED POSTS

https://mindmajix.com/servicenow-interview-questions 15/15

You might also like