Hi Forum,
My requirement is to run a JCL infinite number of times. For that I am trying to use internal reader, for this the last step of my JCL is :
//STEP01 EXEC PGM=IKJEFT1A
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
SUBMIT 'NAME OF PDS(MEMBER)'
/*
This member is having the same JCL as the one which is calling it, only the jobcard name is different. At the end of the second JCL, i am putting this step again for calling the first JCL. So my JCL is running in this sequence.
JCL1 (Completed)
JCL2 (Completed)
JCL1 (JCL Error)
I don't know why the JCL1 while repeating is getting a JCL error. It might me due to same jobcard repeating again, m not sure. Can somebody help me. I am at the last step of completing my JCL.