View previous topic :: View next topic |
Author |
Message |
vkphani Intermediate
Joined: 05 Sep 2003 Posts: 483 Topics: 48
|
Posted: Thu Mar 02, 2006 6:43 pm Post subject: ABEND=S000 U0076 |
|
|
Hi,
I searched for this abend in the forums. But not able to get the info.
Thatswhy I am posting here.
I have a job which just takes the back up of input files using REPRO.
Code: | REPRO INFILE(INFIL001) OUTFILE(OTFIL001)
IF LASTCC EQ 12
THEN SET MAXCC = 0
/* |
The job is taking backup for 103 files.
All these steps are residing in a PROC.
Main job is executing this PROC 10 times with different qualifiers.
Messages from spool:
Code: | -JOBNAME STEPNAME PROCSTEP RC EXCP CONN TCB SRB CLOCK SERV
-P4SF762M LOADSTEP LOADSTEP 00 31 21 .01 .00 2.1 26224
U11-001 CA-11 - PARM RECEIVED FOR JOB P4SF762M - PARM=P
U11-046 U11RMS JOB P4SF762M WILL INTERFACE WITH DBAS SUBSYSTEM CAL7
OPS1370H INIT X'8000' X'8000' X'0000' NONE 300 OPS1371I IEF450I P4SF
REASON=00000
OPS1371I IEF450I P4SF762M RMS30 CA07RMS - ABEND=S000 U0076 REASON=00000000
IEF450I P4SF762M RMS30 CA07RMS - ABEND=S000 U0076 REASON=00000000 806
OPS1370H INIT X'8000' X'8000' X'0000' NONE 300 OPS1371I TIME
OPS1371I TIME=03.36.46
TIME=03.36.46
-P4SF762M CA07RMS RMS30 U0076 1103 509 .01 .00 1.1 28043
IEF404I P4SF762M - ENDED - TIME=03.36.46
-P4SF762M ENDED. NAME-BKUP CD-ROM STMTS TOTAL TCB CPU TIME= .03 TOTA
$HASP395 P4SF762M ENDED |
Please help me with this. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Fri Mar 03, 2006 9:31 am Post subject: |
|
|
Vkphani,
You get an U0076 error when the User exit U11RDSEX has issued an invalid return code (see message U11-059) or MAXOLD table has overflowed (see message U11-037). Issued by
U11RMS, U11PRE.
U11RDSEX is used to determine if normal data set processing should be performed for a particular data set. U11RDSEX is called prior to data set processing for each and every data set in a job. The exit may be called from one of three programs:
U11RMS
U11PRE
U11OPR
The exit indicates one of three decisions for each data set handled.These are:
1. Perform normal processing.
2. Ignore normal processing.
3. Abend the job.
The decision is made based on information in the data set record and the job name. U11RDSEX is invoked prior to data set processing for each and every data set in the job, and prior to Job queue modification for the resolution of GDG data sets.
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
vkphani Intermediate
Joined: 05 Sep 2003 Posts: 483 Topics: 48
|
Posted: Fri Mar 03, 2006 7:43 pm Post subject: |
|
|
Hi Kolusu,
Thanks a lot for the help.
Could you please let me know the solution to avoid this abend. |
|
Back to top |
|
|
vkphani Intermediate
Joined: 05 Sep 2003 Posts: 483 Topics: 48
|
Posted: Fri Mar 03, 2006 7:47 pm Post subject: |
|
|
Hi Kolusu,
Thanks a lot for the help.
This is the message from spool for U11-037.
Code: | 025 U11-037 MAX (OLD,DELETE/UNCATLG) TABLE FULL - DSN=P4SF.BPDD.FTP.CU.JJ.ROMST036 |
Could you please let me know the solution to avoid this abend. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Sat Mar 04, 2006 9:21 am Post subject: |
|
|
vkphani,
You need to talk to your systems guy to increase limit for the table or empty it out.
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
vkphani Intermediate
Joined: 05 Sep 2003 Posts: 483 Topics: 48
|
Posted: Sat Mar 04, 2006 2:32 pm Post subject: |
|
|
Thanks for the help Kolusu. |
|
Back to top |
|
|
|
|