Scripting
Write an example of a GlideRecord script to retrieve all records from a table called "incident" where the status is "New". is it right? var gr = new GlideRecord('incident');gr.addQuery('state', '1');gr.query();while (gr.next()) {gs.print('Incident Nu...