Blog

Ten Methods to Find SysID

Each record in ServiceNow is identified by a unique 32-character GUID (Globally Unique ID) called a sys_id. As a ServiceNow administrator, finding the sys_id of a record is important when writing a script, workflow, flow, or many other development tasks.

Here are ten different methods to find the sys_id of a record in ServiceNow.

Read More

Client and Server-side Programming

ServiceNow uses JavaScript and makes use of both client-side and server-side programming. Although there are tasks both types can do, there are some tasks that can only be done client-side and other tasks that can only be done server-side.  

Client-side programming is often preferred by users, due to the immediate interactivity of the scripts.  Server-side programming is often preferred by developers due to eased complexity and better performance.  

Let's look into what both types are and their advantages and disadvantages.

Read More