You need to sign in to do that
Don't have an account?

Schedule job
I have schedule job which have to run every 20 min but when i am putting as a schedule job (from anno window )it only runs one time andafter that it is not working every 20 min it is only working when you submit once here is the code :
String str = system.now().addMinutes(20).format('ss mm HH dd MM ? yyyy');
System.schedule('WebcartPullProductsScheduled', str , new WebcartPullProductsScheduled());
String str = system.now().addMinutes(20).format('ss mm HH dd MM ? yyyy');
System.schedule('WebcartPullProductsScheduled', str , new WebcartPullProductsScheduled());
You need to write it like this.
This should work every 20 minutes. You need to invoke it only once.
Kindly mark as an answer so that we can close this thread if it works for you.