How to Delete or Abort Schedule Jobs in Salesforce. on July 16, 2020 Get link Facebook X Pinterest Email Other Apps Try this from the Anonymous window: List<CRONTRIGGER> sjob = [ SELECT ID FROM CRONTRIGGER]; for(CRONTRIGGER j:sjob){ System.abortJob(j.id); } Comments
Comments
Post a Comment