> -----Original Message----- > From: IBM Mainframe Discussion List > [mailto:[EMAIL PROTECTED] On Behalf Of Peter Ten Eyck > Sent: Friday, November 03, 2006 3:33 PM > To: [email protected] > Subject: COND CODE 3592 > > > I have a job on z/OS 1.4 which uses tape (3490). The step runs a user > program which appears to run to competition OK, but the job > steps ends as > follows: > > IEF142I USTXISOP USTXISOP ISOATEDG - STEP WAS EXECUTED - COND > CODE 3592 > > > I am having difficulty finding what this condition codes > means. It does not > help matters that 3592 also happens to be a tape drive model > number. A > search through all message books on the z/OS 1.4 site does > not yield a > meaningful answer. Google is not to helpful either. What is a 3592?
What program is it running? Each program is free to issue any return code from 0 to 4095 that it wants to. However, it is likely that somebody simply forgot to zero register 15 before returning back to z/OS. I've seen this happen with COBOL that calls assembler. The assembler program does not set the return code, so register 15 contains the address of the assembler program upon return to COBOL. COBOL then copies this into RETURN-CODE and the programmer never does a MOVE ZERO TO RETURN-CODE to reset it because "I never modified RETURN-CODE, so that can't be the problem!". Well, it was modified, implicitly, by calling the assembler subroutine. -- John McKown Senior Systems Programmer HealthMarkets Keeping the Promise of Affordable Coverage Administrative Services Group Information Technology This message (including any attachments) contains confidential information intended for a specific individual and purpose, and its content is protected by law. If you are not the intended recipient, you should delete this message and are hereby notified that any disclosure, copying, or distribution of this transmission, or taking any action based on it, is strictly prohibited. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

