Skip to content

Instantly share code, notes, and snippets.

@ravi72munde
Created May 4, 2017 10:33
Show Gist options
  • Save ravi72munde/8c1447c1f25855537e30adfb8a5d5591 to your computer and use it in GitHub Desktop.
Save ravi72munde/8c1447c1f25855537e30adfb8a5d5591 to your computer and use it in GitHub Desktop.
Remove all scheduled jobs/CronTrigger tasks
List < CronTrigger > listCronTrigger = [select Id from CronTrigger LIMIT 150];
If(listCronTrigger.size() > 0) {
For(Integer i = 0; i < listCronTrigger.size(); i++) {
System.abortJob(listCronTrigger[i].Id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment