The "%INPUT DCONVERT,*" job receives error "PE020 24-24 NO DATA SPACE PANESRL *".
%INPUT,S SYSPUNCH*
PE020 24-24 NO DATA SPACE PANESRL *PANEXEC 5.3
The DCONVERT process uses the free space of the PANESRL library as a temporary work space.
This error occurred because your PANESRL library did not have enough free space.
Expand your PANESRL library or copy the element by GROUP or ELEMENT level using the "%INPUT DCONVERT,group." or the "%INPUT DCONVERT,group.element." command.
Sample JCL to expand the PANESRL library:
//STEP1 EXEC PGM=PANEXEC,REGION=2048K
//STEPLIB DD DSN=prefix.PANESRL,DISP=SHR
//PANESRL DD DSN=prefix.PANESRL,DISP=SHR
//FROMLIB DD DSN=prefix.PANESRL,DISP=SHR
//PANPRINT DD SYSOUT=*
//BACKUP DD UNIT=?????,SPACE=(TRK,(150,10),RLSE)
//TOLIB DD DSN=new.prefix.PANESRL,DISP=(NEW,CATLG),
// UNIT=?????,VOL=SER=??????,
// DCB=(DSORG=PO,BLKSIZE=32752),SPACE=(CYL,(12,,1))
//PANEIN DD *
%BACKUP,F FROMLIB*,BACKUP*
*
%CREATE TOLIB*,1500,8
%FILEOPT,D TOLIB*\OS./EXEC;PA
%RESTORE,LF BACKUP*,TOLIB*
*
/*
//