How to go back to the first record for GlideRecord
Hi all, I am using GlideRecord like: How to go back to the first record for GlideRecord: var gr_incident = new GlideRecord("incident");gr_incident.addQuery("xxx");gr_incident.query(); while(gr_incident.next()) { } After the loop, I want to loop the g...
