How To Create A Recurring Task – Use Scheduled Jobs
What Is A Scheduled Job? A scheduled job in ServiceNow is an action (usually a script) that is executed, based on a schedule. Say for … Read more
A ServiceNow Blog & Newsletter
Elevate your ServiceNow development skills with our comprehensive resources on JavaScript and GlideRecord, the powerful tools to manipulate data and customize your ServiceNow platform.
Gain in-depth knowledge of server-side and client-side scripting techniques, enabling you to create dynamic applications, automate processes, and build seamless user experiences. Enhance your understanding of GlideRecord, ServiceNow’s proprietary data access layer, and discover how to efficiently query, create, update, and delete records within the platform.
Learn best practices for working with IT Service Management (ITSM), IT Operations Management (ITOM), IT Business Management (ITBM), and other key ServiceNow modules using JavaScript and GlideRecord.
Stay up-to-date with the latest trends, tips, and tricks to optimize your scripting skills, ensuring high-performing, secure, and scalable solutions for your organization’s digital transformation journey.
What Is A Scheduled Job? A scheduled job in ServiceNow is an action (usually a script) that is executed, based on a schedule. Say for … Read more
If you’re a ServiceNow Admin, you first off understand what an update set is, and you understand what types of records are captured, and which … Read more
There are a couple of ways to add a worknote to an incident. Below, we’ll cover adding a work_note to an incident with a business … Read more
When scripting in ServiceNow, you’ll frequently have to create conditional statements around users and their group membership. Based upon what group a certain user is … Read more
This script will print all of the groups a member is in, in ServiceNow. Below, we query the [sys_user_grmember] table and find all of the … Read more
Scripting around dates and time in ServiceNow has caused every ServiceNow Engineer some pain at a certain point. Here’s how to get the current date … Read more
When you’re scripting with reference field’s and sys_id’s, understanding how to use getDisplayValue() is incredibly useful. Anytime you see a reference field on a form, … Read more
When you are scripting around the current user, you’ll find that the user object comes in handy. There are often times you’ll need to perform … Read more
Best Practices, Scripting, ServiceNow Admin
Clearing the instance cache is a crucial component of being a ServiceNow Admin/Developer. If you don’t understand how and when to clear the cache, you … Read more
If you’re a ServiceNow Admin, you’re very familiar with the idea of using gs.log(). It’s an extremely common scripting practice to see what the output … Read more