Hi, I'm using BPXBATCH to try to zip a file on the mainframe using Unix System Services and I'm getting an error when defining the output file. I've attempted to find in manuals what to define for the DCB info but had no luck and it appears that BPXBATCH isn't like say Platinum which will define the output file for you. The zip works when I first FTP the file down to the Unix partition and then zip but I'd rather do it as a single step -vs- a multi step
Thanks for any help
the error is
IEC141I 013-34,IGG0191I,PSNZO01,ZIP,STDOUT,8673,TST028
The JCL looks as follows
//PSNZO01 JOB (PSNZO,00,T),'PSNZO',
// CLASS=Q,MSGCLASS=X,
// REGION=0M,NOTIFY=PSNZO
/*JOBPARM SYSAFF=HD02
//*
//ZIP EXEC PGM=BPXBATCH,
// PARM='PGM /u/util/bin/zip'
//STEPLIB DD DSN=CEE.SCEERUN,DISP=SHR
//TMBYPASS DD DUMMY
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//STDIN DD DISP=SHR,DSN=PSNZO.TEST.FILE(0)
//STDOUT DD DSN=PSNZO.TEST.FILE.ZIP2,
// UNIT=TSTDA,SPACE=(CYL,(100,100),RLSE),
// DISP=(NEW,CATLG,DELETE)
//STDERR DD SYSOUT=*