Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2024 12:43 AM
@ Anurag Tripathi Could you please give some idea on to this
I tried below script but still not working as expected
var userId = gs.getUserID();
var gr = new GlideRecord('incident');
//gr.addQuery('user',userId);
gr.orderBy('sys_created_on');
gr.setLimit(10);
gr.query();
while(gr.next()){
gs.print('Incident Number:'+gr.number);
}
Kilo Patron