How to stop SLA without removing setworkflow in BG script
Hi Team,We have a requirement to close bulk incidents through background script. Script:-var gr = new GlideRecord('incident');gr.addQuery('your_criteria_field', 'your_criteria_value');gr.query(); while (gr.next()) { gr.setValue('incident_state', '...
