Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2017 05:15 AM
Hi Elijah,
Use background script to delete that task.
var gr = new GlideRecord("change_task");
if(gr.get("pass change task sys_id")){
gr.setWorkFlow(false);
gr.autoSysFields(false);
gr.delete();
}