
Hello,
could you help me to understand how I can configure a job with dependencies?
I mean, I don't want that Job B start if Job A has not finished, How I can handle that?
thanks a lot
This can be achieved by creating multiple batch tasks under one batch job. In this case you don't set up the job from the menu item and batch dialog, instead you must type the batch class name manually.
You start on Batch jobs form by creating a new record. Then click View tasks to open the batch task screen.
Only batch jobs that support "batch journal" can be set up like this.
If the batch is developed using RunBaseBatch framework, the developer must override method canGoBatchJournal and return true.
With SysOperation based batches, the controller class must be decorated with [SysOperationJournaledParametersAttribute(true)].