Blog

Use Excel to query Duplicate CI Relationships

I have another article about duplicate record scripts.  That post covers how to find a duplicate in one column of table in ServiceNow.

However for the CI Relationship table, there are two columns (Parent and Child) that determine unique.  Here is a trick using excel to find duplicates in the CI Relationship table.

Read More

Navigation by URL

In ServiceNow, users can directly navigate to a record or module with queries by using a URL. This article contains various examples to navigate by url in ServiceNow.

Read More

Non-Scrolling News Widget

There is a news widget included with ServiceNow with a scrolling feature.  I don't like the scrolling feature, because I would rather just see a list of items all at once.

So I made a gadget that doesn't have the scroll.  

Read More

Five Example JSON Requests

JSON (JavaScript Object Notation) is a lightweight data-interchange format that is easy to parse and generate. The ServiceNow JSON v2 web service operates on the JSON object as the data input and output format.

Having the JSON object available as a data format for web services means that you can create (insert), update, and query any data in your ServiceNow platform using the JSON object format, and get results in the JSON object format.

The JSONv2 web service is available in all instances starting with the Dublin release.  This article shows a variety of example JSON web service requests you can make with ServiceNow.

Read More

Limit SOAP Data Returned

When you are making SOAP web service requests in ServiceNow, you can receive a lot of records returned and all columns available.  This article discusses how to limit rows returned and how to limit columns shown, so that you just receive the data you are interested in.

Read More