function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
jai.sjai.s 

How to stop schedule class?

Hi,

Please any one guide me the procedure to stop schedule class?

Thanks in advance,
Shaik
sfdc newwsfdc neww
Run the below script in the anonymous execute if you know your scheduled job ID

system.abort("Paste your job ID here");

If you dont know your your scheduled job, you can find it through the below script in the below link
https://workbench.developerforce.com/login.php

Query:

SELECT Id, CronJobDetail.Name, State, NextFireTime
                              FROM CronTrigger 

Hope this helps!!
David Catindoy 11David Catindoy 11
Another solution is instead of doing the manual thing. You can also view all the scheduled jobs that you created using the Force.com platform. You can view all your scheduled jobs by clicking Setup > Monitor > Jobs > Scheduled Jobs
David Catindoy 11David Catindoy 11
Try to familiarize the Force.com platform and you will definitely like the functionality that it offers. :)