How To Use addInactiveQuery() In A GlideRecordQuery
Understanding the Need for addInactiveQuery() In the nuanced world of ServiceNow development, there are scenarios where accessing inactive records is just as crucial as fetching … 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.
Understanding the Need for addInactiveQuery() In the nuanced world of ServiceNow development, there are scenarios where accessing inactive records is just as crucial as fetching … Read more
Enhancing Query Efficiency with addActiveQuery() I alway smile when I see someone using addActiveQuery(), over gr.addQuery(“active”, true);. The addActiveQuery() function plays a crucial role in … Read more
Unlocking the Potential of g_form.getDisplayBox() In the world of ServiceNow development, accessing display values of reference fields is a common requirement. This is where g_form.getDisplayBox() … Read more
Understanding the Role of g_form.getReference() When developing in ServiceNow, understanding the utility of g_form.getReference() is crucial. This function is a key tool for retrieving GlideRecord … Read more
ServiceNow Approvals – Adding A Worknote To The Task, When Approved ServiceNow, as one of the most comprehensive and scalable IT Service Management platforms, offers … Read more
What Are Key Value Pairs In JSON? In the realm of ServiceNow scripting, understanding how to navigate key-value pairs in an object is fundamental. Why? … Read more
What Is nil()? Scripting in ServiceNow serves as a powerful tool for developers and administrators to manipulate and manage data. A key part of this … Read more
What Are initialize() and insert()? In ServiceNow scripting, a common requirement is to create new records in a table. While this can be done manually … Read more
What Is The setValue() Method? When you’re building out a GlideRecord query, you’ll frequently want to set a value, in your while loop. The setValue() … Read more
What Is g_form()? Fundamentally, g_form is a global JavaScript object that provides a number of methods for interacting with and manipulating forms in the ServiceNow … Read more