You need to sign in to do that
Don't have an account?
N@ni
How can i execute two Batch Apex class one by one???????????
Two Batch Apex Classes A and B, after compleate A execution, B should be start automatically, How we can achive this...?
Best Answer chosen by Admin (Salesforce Developers)
vbs
Nani - You can use Batch Apex chaining by executing class B using Database.executeBatch in the finish method of class A. This is possible for code written after release 26. HTH