Page 1 of 1

U0626 abend.

Posted: Sat Apr 25, 2015 2:46 pm
by Shalini Gupta
Hi,

I get U0626 while runnig a job. The error mesage is

Code: Select all

WHEN WRITING TO RECFM=F FILE THE I/O AREA LENGTH 
WAS NOT EQUAL TO THE LRECL FOR DD: APCDFILE 
THis is a fix length file and the error message in JESYSMSG is"

Code: Select all

EXPECTED COMP CODE=U0626 
How to resolve this?

Re: U0626 abend.

Posted: Sat Apr 25, 2015 7:47 pm
by Robert Sample
The U prefix on the error code indicates this is a User error, not a system (S prefix) error. Hence you need to figure out which product / program generated the U0626 message. If you are running an IMS program, for example, you should look to see if IMS generates a U0626 and if so find the message in the appropriate manual and follow what it says to do to fix the error. The text of the message indicates a lot -- you could find in the program the I/O AREA for ARCDFILE and compare its length to the LRECL of the data set that DD name ARCDFILE points to -- that alone may help you figure out how to resolve the problem.

However, since you did not provide us much information about the problem (you didn't even tell us which language you are using), there is not much we can do to diagnose the problem.