Hi everyone ... I hope I am posting to the correct forum. Please let me know if not.
I am running QMF V8R1 on an z/OS platform running DB2. I am trying to pass a JCL parm to QMF using QMF batch. In my SQL, I have an IN operator like the following:
I am trying to set up my JCL to be able to send the variable correctly, I've only done this before with a basic equal operator before. I would like it to be like:
So when QMF goes to run it, it would submit as:
But this does not seem to work. Anyone have any suggestions?
Thank you in advance!
I am running QMF V8R1 on an z/OS platform running DB2. I am trying to pass a JCL parm to QMF using QMF batch. In my SQL, I have an IN operator like the following:
Code:
WHERE VERS_NUM IN (&VERS_NUM)
I am trying to set up my JCL to be able to send the variable correctly, I've only done this before with a basic equal operator before. I would like it to be like:
Code:
EXECUTIL SEARCHDD(YES)
ISPSTART PGM(DSQQMFE) NEWAPPL(DSQE) PARM(M=B,S=DBP1,+
I=USER.QUERYNAME(&&VERS_NUM=7777,7778)
So when QMF goes to run it, it would submit as:
Code:
WHERE VERS_NUM IN (7777,7778)
But this does not seem to work. Anyone have any suggestions?
Thank you in advance!