Advanced ServiceNow Interview Questions and Answers 2017
Advanced ServiceNow Interview Questions and Answers 2017
Blog
Blog (https://mindmajix.com/blog) / SERVICENOW (https://mindmajix.com/servicenow/) / ServiceNow
Interview Questions
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 is the latest servicenow user interface and when it was released?
The latest user interface is UI14 interface.It came in Eureka release
https://mindmajix.com/servicenow-interview-questions 1/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017
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.
https://mindmajix.com/servicenow-interview-questions 2/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017
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.
return false;
https://mindmajix.com/servicenow-interview-questions 3/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017
Q. What is a gliderecord?
Gliderecord is a javaclass that is used for database operations instead of writing SQL queries.
Q. What is a sys_id?
A unique 32-character GUID that identify each record created in each table in servicenow
https://mindmajix.com/servicenow-interview-questions 4/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017
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
https://mindmajix.com/servicenow-interview-questions 5/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017
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.
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. 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. 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();
}
https://mindmajix.com/servicenow-interview-questions 8/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017
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.
https://mindmajix.com/servicenow-interview-questions 9/15
11/27/2017 Advanced ServiceNow Interview Questions And Answers 2017
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. 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. 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. 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 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
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
LOG IN WITH
OR SIGN UP WITH DISQUS ?
Name
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.
RELATED COURSES
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
WEBLOGIC (https://mindmajix.com/weblogic/)
Pentaho (https://mindmajix.com/pentaho/)
SEO (https://mindmajix.com/seo/)
IOT (https://mindmajix.com/iot/)
RELATED POSTS
https://mindmajix.com/servicenow-interview-questions 15/15