Skip to content

Instantly share code, notes, and snippets.

@danic85
Created June 6, 2018 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danic85/e14186cfe09c08b4bb656c3aaa6aad9a to your computer and use it in GitHub Desktop.
Save danic85/e14186cfe09c08b4bb656c3aaa6aad9a to your computer and use it in GitHub Desktop.
/* Cancel Scheduled Jobs in Apex */
for(CronTrigger delCron: [SELECT Id FROM CronTrigger ]) {
System.abortJob(delCron.Id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment