- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2025 09:54 PM
How can you use GlideRecord in ServiceNow to query records from a table? Explain its basic syntax, key methods like addQuery(), addEncodedQuery(), and next(), and provide an example of retrieving specific records based on conditions. How does GlideRecord differ from standard SQL queries in databases?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2025 10:30 AM
Hi @TarunNagar ,
Have you looked at the documentation for the functions? This is quite well explained.
If my answer has helped with your question, please mark my answer as the accepted solution and give a thumbs up.
Best regards
Anders
Rising star 2024
MVP 2025
linkedIn: https://www.linkedin.com/in/andersskovbjerg/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-02-2025 02:48 AM
In ServiceNow, GlideRecord is used to query records from tables. Here’s how you can use it:
var gr = new GlideRecord('incident');
gr.addQuery('priority', '1');
gr.query();
while (gr.next()) {
gs.info(gr.number);
}
This retrieves all high-priority incidents. Dev Technosys provides expert Hire developers in USA for seamless implementations.