Hi,
Can anyone tell me the Syntax for I-O read.
i am getting the file status 41, while i am reading in I/O MODE.
how to append a O/P File(Not in JCL) Through file handling.
Status Code 41 usually comes in when there is a flaw in your logic - it's a logical error, as suggested, your program logic tries to OPEN the same file again. Try to put a DISPLAY before the statement where you issue an OPEN & check in the SYSOUT how many times your program tries to execute OPEN statement..if two continuous messages are displayed in SYSOUT (& no CLOSE is issued between them)- check your logical flow again.