Let's say you need to pass PARAM1 and PARAM2 to JOB B
Declare PARAM1 and PARAM2 in JOB A , then pass both parameters to JOB B in the post post action in the Trigger Parameterized Job as follows:
param1 = $PARAM1
param2 = $PARAM2
Then in JOB B declare PARAM1 and PARAM2 .
That should do the trick.
source share