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

Articles

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
Anish Reghu by Kilo Sage
  • 10809 Views
  • 2 comments
  • 16 helpfuls

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
  • 6297 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
  • 18298 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
  • 1051 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

Scripts: Convert Date to Epoch

.  Function function convertDateToEpoch(vDate) { epoch = ''; vDateTmp = new GlideDateTime(vDate).getNumericValue() / 1000; epoch = (Math.round((vDateTmp *Math.pow(10,0)).toFixed(0-1))/Math.pow(10,0)).toFixed(0); return epoch; }   How to u...

Know-More-Now-Logo.jpg
tiagomacul by Giga Sage
  • 3718 Views
  • 2 comments
  • 8 helpfuls

Convert script into Excel !!!

scenarios: Need to glide a table, print the records and get into a Excel sheet using a Background script We definitely come across such requirements often, following the below steps would help  1) Create a Background script, print a column and rows u...

find_real_file.png find_real_file.png find_real_file.png find_real_file.png
Chalan B L by Giga Guru
  • 4505 Views
  • 1 comments
  • 11 helpfuls

Handling ServiceNow flow errors with a flow

Handling ServiceNow flow errors with a flow ServiceNow is promoting the LowCode / No-Code approach very strongly with their flow engine. Flow is the new way of creating a workflow fast and without any huge programming. I’m not very familiar with th...

Digest Notifications

Contents OverviewUse Case Send Knowledge Article Reminder Solution Event RegistryScheduled JobNotification Email ScriptNotification Overview Many times clients want the ability to remind users of upcoming tasks, but do not want multiple notific...

ccajohnson by Kilo Sage
  • 2302 Views
  • 2 comments
  • 3 helpfuls

How to Perform a ServiceNow Integration with Twitter

Credit goes to AAspenNow Solutions' Guest Star, Eash Verma for performing this integration! https://youtu.be/JKafHVGBCjk Items demonstrated/discussed in this video: * Navigated to apps.twitter.com.* Mentioned importance of Consumer Key and Consumer S...

knight202 by Kilo Guru
  • 740 Views
  • 1 comments
  • 0 helpfuls

JSX Cheatsheet

Developing components for Now Experience Framework requires you to be familiar with JSX syntax, hence I decided to list several most common patterns that might help you while developing now components. If you are coming from React you might feel ver...

Top Contributors