I have a below scenario
I have to rerun the job every 30 minutes if the variable dependency is met.(the intent is to delay job for 30 mins) Once the dependency is not met, I have to come out of the job and kick start the other job.
Right now
I created job A which reruns the same occurrence for every 30 mins all day, when variable dependency is met. But when the variable dependency is not met, it goes into waiting for dependency, its kind of stuck.
How can control come out of the Job A and make the status of 'Completed normally' and stop the job rerun and kick start job B, WHEN THE DEPENDENCY ON JOB A IS NOT MET
How can above scenario can be achieved. Really appreciate the inputs and suggestions.