Summary:
When we executed the "%INPUT DCONVERT,*" job, we recieved the "PE020 24-24 NO DATA SPACE PANESRL *" error message.
What is the cause of this error ?
How to solve this error ?
%INPUT,S SYSPUNCH*
PE020 24-24 NO DATA SPACE PANESRL *
Instructions:
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.
Please expand your PANESRL library or copy the element by GROUP or ELEMENT level by the "%INPUT DCONVERT,group." or the "%INPUT DCONVERT,group.element." command.
Additional Information:
The following is the sample jcl to expand the PANESRL library.
Sample jcl;
//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*
*
/*
//