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
salesforcecrapsalesforcecrap 

How to Schedule a Schedulable?

Hi fellow SF hackers,

I've got a Schedulable class, and now I just want to actually schedule the thing. I realize that I can:

System.schedule('Job Name', s, m); 

But is there a mechanism in the SF interface itself that lets me schedule a Schedulable?


Without this, it seems like I have to implement a simple view/controller and do this manually.

 

Thanks for any tips.

 

Damien_Damien_

Open your system log and run your schedule code there.

salesforcecrapsalesforcecrap

Thanks Damien_. I also found the "Schedule Apex" interface (finally) under Setup -> Develop -> Apex Classes and clicking the "Schedule Apex" button.