When using a DD Dummy JCL statement for the output from a SARBCH print function, an abend occurs.
From the abend:
USER COMPLETION CODE=1005
ACTIVE LOAD MODULE
NAME=SARSDIM
the JCL looks like this:
//NAME DD DUMMY,
// DCB=(RECFM=VBA,LRECL=137,DSORG=PS)
Release : 12.2 and 14.0
Component : CA View
There is no BLKSIZE parameter in the DCB statement associated with the DD DUMMY, so an error occurs when CA View issues a GETMAIN.
CA View intercepts the system abend and issues a U1005.
Add a BLKSIZE=141 to the DD's DCB parameter.
Change from
//NAME DD DUMMY,
// DCB=(RECFM=VBA,LRECL=137,DSORG=PS)
to
//NAME DD DUMMY,
// DCB=(RECFM=VBA,LRECL=137,BLKSIZE=141,DSORG=PS)