Are there any ways of passing parameters or values across parallel jobs in a sequencer? Scenario: Job 'A' would execute and based on the result of the Job we want either Job 'B' or Job 'C' to execute. Hence the result of Job 'A' would determine the sequence of operation.
RE: Are there any ways of passing parameters or values across parallel jobs in a sequencer? Scenario: Job 'A' would execute and based on the result of the Job we want either Job 'B' or Job 'C' to execute. Hence the result of Job 'A' would determine the s
Not clear from your question what do you mean by the result of the job. what I got is- you want to perform the conditional run of the jobs. It can be possible through sequencer.
In sequence You can check the status of Job A and on that basis can perform conditional operations. say- If status of Job A is 1 i.e. job runs successfully and then you can call Job B otherwise run Job C.