We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

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

Articles

Call AI Search Using Script

We can call AI search in server side script. ServiceNow has provided one OOB script include(AISASearchUtil).Before calling that script include make sure you are in global scope.In the below script I have extracted KB articles from the response of the...

Useful Number methods in JavaScript

1. Tostring The toString() method is what it sounds, returns the number as a string. However, if you provide a parameter, such as 2, 8, or 16 it will return binary, octal or hexadecimal value respectively. var num = 123; num.toString(); // "123" (100...

ServiceNow Basics - User Guide

This user guide is based on the Wiki Book "ServiceNow Basics" I have reformatted and removed most references to Dublin release and the old UI (UI11). This is a great learning guide for users starting out in Eureka (UI14).

Loudigi by Kilo Sage
  • 57774 Views
  • 10 comments
  • 14 helpfuls

Use "Click model button" test step of ATF

ATF - How to use “Click Model button” test step   This describes how to use “Click Model Button” test step of ATF. Deleting an Incident is the used test case. Please note that I have used only the required steps to explain the clicking model button s...

find_real_file.png find_real_file.png find_real_file.png find_real_file.png
Dona6 by Giga Contributor
  • 9492 Views
  • 7 comments
  • 10 helpfuls

📜 The Tale of the Forgotten Emails

The Tale of the Forgotten Emails   In the vast digital kingdom of ServiceNow, a diligent administrator named Nik found themselves drowning in an ocean of unwanted emails. Their inbox, once a place of order, was now a chaotic mess filled with spam an...

rampriya_S_0-1739332289530.png rampriya_S_1-1739332289532.png rampriya_S_2-1739332289534.png rampriya_S_3-1739332289537.png
Rampriya-S by Kilo Sage
  • 949 Views
  • 3 comments
  • 8 helpfuls

Personalize Option for Service Portal List

Personalize option on service portal list view is one of the common ask from various customers. I have create a widget which adds a feature to allow end users to add or remove columns from list view on service portal. Portal-List-Personalize Widget t...

ServiceNow RPA: an introduction

ServiceNow RPA: an introduction Structured and large organizational processes have become more efficient thanks to traditional automation, but as more and more companies are looking to digitally transform their organization, they are confronted with ...

Willem_0-1695928082404.png Willem_2-1695926683316.png Willem_3-1695926683321.png Willem_4-1695926918169.png
Willem by Giga Sage
  • 8392 Views
  • 2 comments
  • 5 helpfuls

Use NiceError to generate better log messages

There's a neat little script include provided OOB called NiceError.  The usage is very simple, simply invoke the script include constructor to get your message: var msg = new NiceError("Some log message"); gs.info(msg);  What it does for you is where...

LukeVanEpen_0-1670216109298.png LukeVanEpen_1-1670216203446.png LukeVanEpen_2-1670216211945.png LukeVanEpen_4-1670217129462.png

Multi Row Variable Set: Limit Rows

Limit Rows First thought To limit rows a quick search brought us to several sources mentioning: var field = g_form.getField("multiple_approvers"); // multi variable set name if (field != null) { field.max_rows_size = 3; // number of rows allowe...

find_real_file.png find_real_file.png find_real_file.png find_real_file.png
Willem by Giga Sage
  • 6523 Views
  • 2 comments
  • 17 helpfuls

Need to know about Schedules and Define them in SLAs

What are schedules :  These are rules that include or exclude time for various actions or tasks used in 1) Service Level Agreements (SLAs)               2)Inactivity monitors : Inactivity monitor that triggers an event for a task record when the task...

HemanthM1_0-1700401146596.png HemanthM1_2-1700895939834.png HemanthM1_0-1700896970793.png HemanthM1_3-1700896092119.png
Hemanth M1 by Giga Sage
  • 4849 Views
  • 2 comments
  • 7 helpfuls

Video: User Interface | Lists

This video provides an in-depth look at the features and functions of lists in the ServiceNow user interface. It applies to the Helsinki release of ServiceNow and may apply to future releases as well. The admin role is required for some features show...

Query Business Rules vs. ACL - comparison

Hi everyone, I recently had to explain to someone the difference between Query BR and ACLs and realized that this is an ongoing debate topic for many people. Opinions on which method of restricting access is preferred are quite divided. Below I would...

Code search

Hello everybody, I want to share a quick way to search for a string in the instance code,using a slightly modified version of UI Page "CodeSearchExampleUse". Create a new UI Page HTML <?xml version="1.0" encoding="utf-8" ?> <j:jelly trim="false" xmln...

find_real_file.png find_real_file.png
Top Contributors