"%INPUT DCONVERT,*" job receives error "PE025 16-16 FILE ORG CONFLICT PDSOUT *"
%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 *
PANEXEC 5.3
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
-------------------------------------------------------------------------------