Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2016 03:11 AM
Like this:
var gr = new GlideRecord('incident');
gr.addQuery('number', 'INC123456');
gr.query();
while(gr.next()){
//do something
}
Regards