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
Arav SundarArav Sundar 

Hi , Can someone tell me how to schedule the job for every 30 mins i am using " system.schedule('SVMXC_ScheduleCallClosureGlobal', '0 0/30 * 1/1 * ? *', new SVMXC_ScheduleCallClosureGlobal());" &&

Hi , Can someone tell me how to schedule the job for every 30 mins i am using                         "system.schedule('SVMXC_ScheduleCallClosureGlobal', '0 0/30 * 1/1 * ? *', new SVMXC_ScheduleCallClosureGlobal());" with this i am getting an error integers are accepted i took this the format from the cronmaker 

"System.schedule('SVMXC_ScheduleCallClosureGlobal', '0 30 * * * ?', new SVMXC_ScheduleCallClosureGlobal());" but with the second option first time it scheduled for half an hour second time its happening for 1 hr so not understanding how is that working 
sfdcsushilsfdcsushil
Try this 0 0,30 * * * *
sfdcsushilsfdcsushil
Did that work?