Can anyone help me out with following piece of jcl,
//DFHDUMP EXEC PGM=IEFBR14
//DFHDMPA DD DSN=ZCON000.CICS660.DFHDMPA,
// DISP=(,CATLG,DELETE),
// BLKSIZE=4096,RECFM=F,LRECL=4096,
// SPACE=(CYL,(5,5))
//DFHDMPB DD DSN=ZCON000.CICS660.DFHDMPB,
// DISP=(,CATLG,DELETE),
// BLKSIZE=4096,RECFM=F,LRECL=4096,
// SPACE=(CYL,(5,5))
//DFHAUXT DD DSN=ZCON000.CICS660.DFHAUXT,
// DISP=(,CATLG,DELETE),
// BLKSIZE=4096,RECFM=F,LRECL=4096,
// SPACE=(CYL,(5,5))
//DFHBUXT DD DSN=ZCON000.CICS660.DFHBUXT,
// DISP=(,CATLG,DELETE),
// BLKSIZE=4096,RECFM=F,LRECL=4096,
// SPACE=(CYL,(5,5))
This JCL is suppose to create datasets-DFHDUMP,DFHDMPA,DFHDMPB,DFHBUXT and DFHAUXT which are be required to create a cics region , but when I submit this job, i receive no output (*RC=0 is displayed but when I goto SDSF, I see only this jcl part, nothing more and the JOB is shown as EXECUTING).The datasets listed above are created.Can anyone help me out with this?