Interested in a ServiceNow event built for developers? Registration for now[dev]26 is officially open!

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
  • 11618 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
  • 7115 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
  • 21834 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
  • 1280 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 Tera Sage
  • 3969 Views
  • 2 comments
  • 2 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
  • 4829 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
  • 3006 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
  • 924 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...

Flow Designer Action "Check day occurrence in month"

Hi there, Sometimes you just need to get your hands on how many occurrences of this weekday it is in the month. For example when creating a scheduled job, which you should only run on the 3rd Monday of every month. This is also a pretty popular Commu...

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

Process all of the users in a group...

Recently I have had to create some scripts that gets all of the user records in a group and update them with some information.  In the past I have done a query of the sys_user_grmember table, stored the data in an array and then queryed the sys_user ...

DrewW by Mega Sage
  • 3508 Views
  • 5 comments
  • 2 helpfuls
Top Contributors