I am trying to load a VSAM file with the data present in a sequential file using the below JCL, but I am getting the a JCL Internal error.
//TESTJB5 JOB ,,NOTIFY=MURUGAN,REGION=6M
//S1 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=A
//INDD DD DSN=MURUGAN.DATASET.FILE1,DISP=SHR
//OUTDD DD DSN=MURUGAN.TEST.VSAM,UNIT=SYSDA,
// DCB=(BLKSIZE=27920,LRECL=80,RECFM=FB),
// DISP=(NEW,CATLG,DELETE),SPACE=(TRKS,(1,1))
//SYSIN DD *
REPRO INFILE(INDD) OUTFILE(OUTDD)
/*