Developer articles
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Articles

Why you should avoid if(x) in your scripts?

Since I have started my journey into the ServiceNow's world I have seen, worked with and analysed a lot of code written by someone else than I. Analysing someone's code is a very useful exercise that can teach you a lot about coding in ServiceNow. At...

find_real_file.png find_real_file.png find_real_file.png find_real_file.png

Logging and Debugging - Recommendations

I am thinking of suggesting GSLog as a Standard at our company.  (Logging is out-of-control here)What do you think?  Any thoughts or advice on these recommendations below? 1. Summary This page includes: Discussion about Syslog logging issuesRecommend...

Cisco Prime API Integration: An Example

Introduction This article contains a recently developed and anonymized update set containing the following: A custom Script Include containing the Cisco Prime API functions to query the Cisco Prime system for Wireless Access Point(s) (WAP) and the as...

find_real_file.png find_real_file.png find_real_file.png find_real_file.png
John  Frandsen by ServiceNow Employee
  • 9610 Views
  • 6 comments
  • 5 helpfuls

Reminder field to help ITIL users for incident management

I got a request to add a new field helping the ITIL users to get a reminder notification when they have to call a user or a provider back. So, I added a reminder field in the ITSM template to allow them to put a date/time for a simple reminder as you...

dbroyon by Kilo Explorer
  • 628 Views
  • 2 comments
  • 0 helpfuls

CONGRATULATIONS @ANKUR BAWISKAR

Hi everybody, HI @Ankur Bawiskar  I just wanted to write this very short article and send some ... CONGRATULATIONS to @Ankur Bawiskar !!! Today, I saw that you climbed the top of the roof! You finally made the impossible possible.Throughout all of th...

find_real_file.png
DirkRedeker by Mega Sage
  • 2757 Views
  • 13 comments
  • 26 helpfuls

How to create a footer for the Service Portal

I ran into this question on the community and found out that there wasn't really any description how to create a footer, even if it's pretty much the same way as with a header. So For the easy part of it I created a video to quickly show how to make ...

Get last updated Date record using GlideAggregate

Get last updated Date record using GlideAggregate   var aggIncident = new GlideAggregate('incident'); aggIncident.addAggregate('MAX', 'sys_created_on'); aggIncident.groupBy('priority'); aggIncident.query(); while(aggIncident.next()){ //get the fir...

image
tiagomacul by Giga Sage
  • 3854 Views
  • 1 comments
  • 3 helpfuls

Script includes in ServiceNow

Please note, I AM NOT A DEVELOPER, BUT JUST WRITING THIS FOR ANY USER TO UNDERSTAND A SCRIPT INCLUDE FROM A NON-DEVELOPER PERSPECTIVE. The article is based on inputs collected from various sources. THE SCRIPT INCLUDES: Script includes help manage the...

find_real_file.png

Variable sets in Record Producer

I found a feature in the Record Producer that may help someone else knowing.If you create a variable set there is no way to map these to fields on the resulting form as there is if you add the variable to the individual Record Producer.But, if you na...

felladin by Tera Guru
  • 5508 Views
  • 4 comments
  • 6 helpfuls

MID Server CSV Importer

There is an app on Share that runs a MID server job to post a CSV file to the instance.   Unfortunately, it uses the Apache HttpClient class, which appears to have issues with larger files.   This is noted in the relevant wiki article.   I rewrote it...

Martin Wood by ServiceNow Employee
  • 15840 Views
  • 56 comments
  • 3 helpfuls

A Service Portal Breadcrumb Tracking Solution

The attached document is intended to provide comprehensive information on the implementation of a traditional mutli-level breadcrumb tracking function as part of a ServiceNow Service Portal implementation instance. That is, the ServiceNow Service Por...

victorwelch by Tera Contributor
  • 938 Views
  • 2 comments
  • 0 helpfuls

Remove Multi-factor Authentication pairing

Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field   Hi there,   While having Multi-factor Authentication enabled on your instance, users probably use an authenticator app on their mobile like the "Google Authenticator". T...

find_real_file.png
Top Contributors