Update multiple records in incident table using business rules
In the incident table I want to update 'state' to closed from new using business rules.(function executeRule(current, previous /*null when async*/ ) { var inc = new GlideRecord('incident'); inc.addQuery('state=1'); inc.query(); while (inc...