Getting error:
IEC020I 001-4,TELE010A,TELE010A,VBLDOPTN,747D,VTAM04,
IEC020I prefix.VBLDOPTN
IEC020I DCB EROPT=ABE OR AN INVALID CODE, AND/OR NO SYNAD EXIT SPECIFIED
This can be followed by S0C4-04 in module VLOGER.
1. Verify that the VBLDOPTN DD statement is referring to the VBLDOPTN data set.
For example:
IEC020I 001-4,TELE010A,TELE010A,VBLDOPTN,747D,VTAM04,
IEC020I prefix.VOPTIONS <<<NOTE: This is pointing to VOPTIONS instead of prefix.VBLDOPTN
IEC020I DCB EROPT=ABE OR AN INVALID CODE, AND/OR NO SYNAD EXIT SPECIFIED
2. Verify that your VBLDOPTN data set (VBLDOPTN DD statement) is defined with DSORG=PS
SAMPJCL member G644ALC contains JCL to allocate this file with DCB=(RECFM=FB,LRECL=80,BLKSIZE=3120,DSORG=PS).
From G644ALC:
//ALLOCAT2 EXEC PGM=IEBGENER //* //* =========> CA-TELEVIEW TARGET VBLDOPTN FILE //* //SYSPRINT DD SYSOUT=(*) //SYSIN DD DUMMY //SYSUT1 DD DUMMY, // DCB=(RECFM=FB,LRECL=80,BLKSIZE=3120,DSORG=PS) //SYSUT2 DD DSN=&LIBPRF.&TELEVR.VBLDOPTN, // DISP=(NEW,CATLG,DELETE), // UNIT=&PERMDA,VOL=SER=&DVOL,SPACE=(TRK,(3,1)), // DCB=(RECFM=FB,LRECL=80,BLKSIZE=3120,DSORG=PS)