Summary:
When we executed the "%INPUT DCONVERT,*" job, we recieved the "PE025 16-16 FILE ORG CONFLICT PDSOUT *" error message.
What is the cause of this error ?
How to solve this error ?
%FETCH PANELIB *TEST .ELEMENT1/EXEC ;TA \DECONV\
PE025 16-16 FILE ORG CONFLICT PDSOUT *
%FETCH PANELIB *TEST .ELEMENT2/EXEC ;TA \DECONV\
PE025 16-16 FILE ORG CONFLICT PDSOUT *
Instructions:
Please check the TYPE of target element, and the DCB of PDSOUT file.
When the TYPE of element and the DCB information of PDSOUT file do not match, this error occurs.
For example;
Element Type PDSOUT File DCB
-------------------------------------------------------------------------------
EXEC DSORG=PO, RECFM=FB, LRECL=80, BLKSIZE=27920 - ERROR
EXEC DSORG=PO, RECFM=U, LRECL=0, BLKSIZE=32760 - CORRECT
DATA DSORG=PO, RECFM=U, LRECL=0, BLKSIZE=32760 - ERROR
DATA DSORG=PO, RECFM=FB, LRECL=80, BLKSIZE=27920 - CORRECT
-------------------------------------------------------------------------------