Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

1.

Explain Change Management in ServiceNow.

Answer»

The Change Management application in ServiceNow gives an organized approach for controlling the life cycle of entire changes. It also provides useful changes to be made with minimum interference to IT services.

Conclusion:

We believe that you found this PARTICULAR article very useful and insightful for your ServiceNow interview preparations. Get yourself prepared for EVERY question thoroughly as it is GOING to enhance your understanding of the subject. APART, you can also take inspiration from these questions, so as to get an idea of what type of questions are being asked in the ServiceNow interview and how your responses should be presented to the interviewer.

The ServiceNow interview will normally have a variety set of questions, and the above questions on ServiceNow will definitely touch every such ASPECT. In order to get a better hold on this subject, please leverage your time to learn deeper about the core ServiceNow concepts.

2.

What is the scope of cascade variable checkbox in order guide in ServiceNow?

Answer»

It is a checkbox for SELECTING whether the used variables should CASCADE, which transmits their values to the items ORDERED. VARIABLE data entered in the order guide will not be passed on to ordered items if we clear this checkbox.

3.

How to restrict users from uploading an attachment in ServiceNow?

Answer»

Following is the stepwise process for restricting users to upload an attachment:

  • Go to System Properties -> Security.
  • Under the Attachment limits and behavior section, search for a role list that can produce attachments: property(glide.attachment.role).
  • Mention one or more ROLES(separated by commas).
  • Only roles listed under this property will be allowed to upload attachments to a RECORD. If no roles are mentioned, then all roles are permitted to upload attachments to ServiceNow forms.
  • Click on SAVE.
4.

List out the order of processing for Record ACL rules in the ServiceNow platform.

Answer»

Processing ORDER for RECORD ACL rules is given below:

  • Matching the object against ACL rules related to the field.
  • Matching the object against ACL rules related to the table.
  • Both field and table ACL rules must be passed by the user to GAIN access to a record object.
5.

How to set the invalid queries into empty result sets in ServiceNow?

Answer»

By DEFAULT, queries having INVALID field names executes but invalid condition will be ignored. You can enable the glide.invalid_query.returns_no_rows property for more strict query control. It will produce an empty RESULT SET for invalid queries.

6.

What is a foreign record insert?

Answer»

When an IMPORT does a modification to a table that is not the TARGET table for that PARTICULAR import, then a foreign record insert happens. This occurs when you try to update a REFERENCE FIELD on a table.

7.

Explain the types of reports available in ServiceNow.

Answer»
  1. Bar reports: They allow you for COMPARING scores over data dimensions.
  2. Pie and Donut reports: It helps to visualize the relationship between parts and the entire data set using various SHAPES like pies.
  3. Time Series reports: It helps to visualize data over time. You can make use of MetricBase data in time series reports, along with your instance data and imported data sources.
  4. Multidimensional reports: It helps to visualize data across dimensions in a table or graph.
  5. Scores: It helps to visualize single data points EITHER as a single value or across ranges.
  6. Statistical reports: It helps to visualize data with statistical values like MEANS and medians.
  7. Other reports contain CALENDARS, lists, and maps.
8.

What is the purpose of the setWorkflow(e) function?

Answer»

The setWorkflow(E) is useful in ENABLING or disabling the execution of business rules that are subsequent actions triggered. If you set the parameter “e” value to FALSE, an insert/update operation will not be audited. When the parameter “e” value is set to true for a GlideRecord operation, then only auditing will be done. Parameter “e” represents a BOOLEAN variable that will enable business rules if the value is true(DEFAULT), and will disable them if the value is false.

9.

Differentiate between next() and _next() method in ServiceNow.

Answer»

The next(){"detectHand":FALSE} method is used for moving into the next record in GlideRecord. _next(){"detectHand":false} is quite similar to next(){"detectHand":false}, the difference is it is used when you QUERY the table that has next as a COLUMN NAME.

10.

What is a scorecard?

Answer»

A scorecard is used for measuring EMPLOYEE performance or a business process. It provides a representation of progress across time in the VISUALIZED format. It belongs to an indicator. The initial STEP is defining the INDICATORS that you wish to measure. You can enhance scorecards by adding aggregates, targets, breakdowns(scores per group), and time SERIES.

11.

What is an inactivity monitor?

Answer»

An inactivity monitor is used in event triggering for a TASK record if the task was KEPT in an INACTIVE STATE for a certain period. If the task remains in an inactive state, the inactivity monitor repeats at regular intervals.

12.

What is ACL in ServiceNow?

Answer»

ACL(Access CONTROL List) in ServiceNow defines what can be accessed by data users and in what WAY they can access the same. ACL rules require users to fulfill INDIVIDUAL REQUIREMENTS to obtain access to PARTICULAR data.

13.

What is a BSM Map?

Answer»

BSM map STANDS for Business Service Management map. Configuration Items(CI) are graphically displayed by using a BSM map. These items are USED to provide support for a business service and INDICATES the Configuration Items related status.

14.

What do you mean by a record producer in ServiceNow?

Answer»

 catalog item that permits USERS in the creation of task-based RECORDS by using Service Catalog is known as a record PRODUCER. For example, you can consider the creation of a problem record or a change record by using a record producer. It will give you an ALTERNATIVE method for the creation of records via Service Catalog.

15.

What are the different types of searches that are available in ServiceNow?

Answer»

Below GIVEN list of searches are HELPFUL in ServiceNow to find the information:

  • Lists: Used to obtain records in a list.
  • Knowledge base: Used to find knowledge-based articles.
  • Global TEXT search: Used to find records in different TABLES from a search field.
  • Navigation filter: Used to filter the application navigator items.
  • Search screens: Use a FORM as an interface for searching table records. These custom modules can be created by administrators.
16.

What are the metrics in ServiceNow?

Answer»

Metrics are used for recording and measuring the workflow of individual records. By USING metrics, CUSTOMERS are able to arm their process by giving tangible figures for measuring. For example, how MUCH time it takes before a ticket is reassigned or CHANGES its STATE.

17.

What are the gauges in ServiceNow?

Answer»

A gauge can be SEEN on the homepage of ServiceNow and can contain up-to-date information about the RECORD’s CURRENT STATUS that is present on ServiceNow tables. A gauge is based on a REPORT and it can be placed on a homepage or a content page.

18.

What is HTML sanitizer in ServiceNow?

Answer»

The HTML Sanitizer is useful in cleaning up HTML markup in HTML fields automatically. ALSO, it will ELIMINATE unwanted code and PROTECT against security threats like cross-site SCRIPT attacks. Starting from the Eureka release, the HTML sanitizer is active for all instances.

19.

What is import set in ServiceNow?

Answer»

The import SET tool is utilized for importing data from multiple sets of data sources and then map that data into ServiceNow TABLES through transform MAPS. It behaves as a staging table for IMPORTED records.

20.

What is a business rule?

Answer»

The business rule is server-side scripting, which gets EXECUTED when you try to INSERT, delete, update, display or query a record. The main use of CREATING a business rule is that you can decide when and on what action it will EXECUTE. The business rule can be applied to the following states: display{"detectHand":FALSE}, before{"detectHand":false}or after{"detectHand":false}.

21.

What is domain separation in ServiceNow?

Answer»

Domain separation is a useful method for separating data into LOGICALLY defined domains. Also, it can be used to SEPARATE ADMINISTRATION. For example, consider a client who has two BUSINESSES and has a single ServiceNow instance for both businesses. He doesn’t want users from one business to view other business data. In this case, we can use domain separation for isolating the RECORDS from both businesses.

22.

What is a transform map in ServiceNow?

Answer»
  • A TRANSFORM map in ServiceNow is a field map set that controls the relationship between the import set table’s displayed fields and the target table’s existing fields, like Incident[incident]{"detectHand":FALSE} or USER[sys_ser]{"detectHand":false}.
  • After transform map creation, you can reuse this to map data from one more import set to the same table.
  • A transform map ALLOWS an administrator to define final destinations for data imported on tables. This will make it easier to specify linkage between the import set table’s source fields and the target table’s destination fields.
  • You can use transform mapping to dynamically map source fields and destination fields.
23.

What are UI policies in ServiceNow?

Answer»

UI policies are considered as an ALTERNATIVE for client scripts. You can SET a FIELD as mandatory, which is read-only, and visible on a FORM by using UI policies. It can be used to DYNAMICALLY change a field on a form. 

24.

What is a data policy?

Answer»

DATA policies are HELPFUL to enforce data consistency by setting read-only and mandatory states. They can be quite relatable to UI policies, but the difference is UI policies are applied only to the data provided on forms using standard browsers. Also, it can APPLY rules to each data entered, like data entered through import sets, web services, email, or mobile UI. For example, if a mandatory field in the entered record is empty then it is possible to prevent the INSERTION of that record into the table by using data policy.

25.

What is dictionary override in ServiceNow?

Answer»

Dictionary OVERRIDES allow for overriding various field PROPERTIES in an extended table. Consider an example of a changing table that is extended from the task table. There is a status field in the task table which is set as read-only. If you USE this field in CHANGE form, it will be in read-only mode. By using the dictionary override, we can ALTER this to non-read only.

26.

What is meant by impersonating a user? How it is useful?

Answer»

Impersonating a USER means providing the administrator access to what the actual user would have access to. This will have the same modules as WELL as menus. ServiceNow RECORDS all activities of an administrator when the user is impersonating another user. This feature of ServiceNow is very helpful in testing. For example, if you want to test that whether a user is ABLE to access the change form or not. You are allowed to impersonate that user and can perform testing without any need of logging out from your session and again logging in with that user CREDENTIALS.

27.

What is meant by Coalesce in ServiceNow?

Answer»

The field property that is used in transform map field mapping is known as COALESCE. Coalescing on a field allows you to use that field as a UNIQUE key. The existing record will get UPDATED with the imported information if a MATCH with the coalesce field is found. If you can’t FIND a match, then insertion of a new record into the database will take place.

28.

Explain record matching and data lookup features in ServiceNow.

Answer»

The data lookup and record matching features allow you for setting up the field VALUE based on a particular condition instead of scriptwriting. For example, on incident forms, the PRIORITY lookup rules AUTOMATICALLY sample data. Now, set the priority of an incident based on the URGENCY values and the incident impact. Data lookup rules allow you to specify the fields and conditions where you WISH data lookup to happen.

29.

Explain the steps for enabling or disabling an application in ServiceNow.

Answer»

Use the below-given steps to ENABLE or disable an application in ServiceNow:

  • GO to the “Application Menus” module.
  • Open the REQUIRED application that has to be enabled or disabled.
  • You can set the ACTIVE value as “true” to enable the application. To disable the application set the active value as “FALSE”.
30.

Write the full form of CMDB and explain what is it?

Answer»

CMDB stands for Configuration Management Database. CMDB is a REPOSITORY that can be USED as a data WAREHOUSE for IT installations. It will hold the data ASSOCIATED with IT assets collections and details about RELATIONSHIPS between assets.

31.

What is ServiceNow?

Answer»

ServiceNow is a cloud-based ITSM (IT Service Management) tool that offers a single record system for business management, operations, and IT services. All features related to the organization’s IT services RESIDE within the ServiceNow ecosystem. You can obtain a COMPLETE view of the resources and services. This permits you to control the ALLOCATION of resources in a better way and helps to efficiently design the process flow.

ServiceNow PROVIDES services such as HR, security, business applications, customer service, and IT(Information Technology) service delivery. It is considered an integrated cloud solution where we can get all of these services in a single place.