Author: Virendra Shambharkar
Subject: Reply to: JES2 JEC: Use UNIX Pipes to Pass Data Between Concurrent Job
Posted: Thu Dec 22, 2016 5:31 pm (GMT 5.5)
Thanks for replying so far . This has been very helpful.
Actually the error for 'RETURN CODE IS (00000081) REASON CODE IS (0594003D)' was because Unix is case sensitive and in JCL I was giving the path in upper case. So the job is complete with RC 00 but no data is copied to FIFO file. Is there any issue with below job.
Even If I connect z/OS unix directory through RDz and try to edit this testx I am not able to edit the FIFO type file whereas I am able to edit a file defined with type as FILE.
Thanks again for helping so far.
Thanks.
_________________
Virendra Shambharkar
Subject: Reply to: JES2 JEC: Use UNIX Pipes to Pass Data Between Concurrent Job
Posted: Thu Dec 22, 2016 5:31 pm (GMT 5.5)
Thanks for replying so far . This has been very helpful.
Actually the error for 'RETURN CODE IS (00000081) REASON CODE IS (0594003D)' was because Unix is case sensitive and in JCL I was giving the path in upper case. So the job is complete with RC 00 but no data is copied to FIFO file. Is there any issue with below job.
Code: |
//G138818L JOB ,,LINES=(9,CANCEL),NOTIFY=&SYSUID,CLASS=D, // MSGLEVEL=(1,1),MSGCLASS=X,TIME=2 //* //COPYSTEP EXEC PGM=IKJEFT01 //INMVS DD DSN=G138818.SAMPLE.FILE1,DISP=SHR //OUTHFS DD PATH='/u/g138818/testx',DSNTYPE=PIPE, // LRECL=80,BLKSIZE=3200,RECFM=FB, // PATHOPTS=(OWRONLY,OCREAT,OEXCL), // PATHMODE=(SIWUSR,SIWUSR), // PATHDISP=(KEEP,DELETE) //SYSTSPRT DD SYSOUT=* //SYSTSIN DD DUMMY //SYSTSIN DD * OCOPY INDD(INMVS) OUTDD(OUTHFS) TEXT CONVERT(YES) PATHOPTS(USE) /* |
Even If I connect z/OS unix directory through RDz and try to edit this testx I am not able to edit the FIFO type file whereas I am able to edit a file defined with type as FILE.
Thanks again for helping so far.
Thanks.
_________________
Virendra Shambharkar