GlideRecord
3 items tagged with "GlideRecord"
ServiceNow (31)
Code Snippet (7)
Release: Orlando (6)
Performance (5)
JavaScript (4)
GlideRecord (3)
VS Code (3)
Release: New York (2)
ACL (1)
Attributes (1)
Client Script (1)
Debugging (1)
Email (1)
GlideAggregate (1)
Logging (1)
MomentJS (1)
Scripting (1)
Search (1)
Security (1)
Service Portal (1)
Snippet (1)
Table Extension (1)
Templates (1)
URL (1)
Workflow (1)
Workspace (1)
Posts
Use GlideAggregate Instead of GlideRecord.getRowCount()
When a server-side script only needs to know how many records match a condition, GlideRecord with getRowCount() is usually the wrong tool. It works, but it is a …
Querying ref_ Fields on Extended Tables
ref_ queries are one of those ServiceNow features that are useful, slightly obscure, and easy to misuse. They show up when you start from a base table such as task, but …
Querying Tables Best Practices
Querying tables is one of those things that looks harmless until the same script runs against production-sized data. A query that feels fine with a few hundred records …