You need to sign in to do that
Don't have an account?
salesforcecrap
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.
Open your system log and run your schedule code there.
Thanks Damien_. I also found the "Schedule Apex" interface (finally) under Setup -> Develop -> Apex Classes and clicking the "Schedule Apex" button.