PE025 error occurred in the "%INPUT DCONVERT,*" process
search cancel

PE025 error occurred in the "%INPUT DCONVERT,*" process

book

Article ID: 38534

calendar_today

Updated On:

Products

Panvalet

Issue/Introduction

 "%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 *




Environment

PANEXEC 5.3

Resolution

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
-------------------------------------------------------------------------------