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
KVaishnaKVaishna 

Apex Scheduler

Hi,

 

I am trying to implement Apex Scheduler feature. I have created one Class named OpportunityDateUpdate and another class ScheduledJobs. ScheduledJobs implements Schedulable interface and has global void execute(SchedulableContext SC)method. I call OpportunityDateUpdate class from ScheduledJobs class execute method.

 

I tried to schedule this through user interface and also through system.schedule method but its not running. When I go to Scheduled Jobs link in Monitoring, I can see Apex class scheduled but its not running any update on Opportunity object.

 

Do I need to do any other setting to run this?

 

Thanks

- Kunjan