Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
CEE3250C - abend U1188 R=05896596

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> ABENDS & Debugging
Author Message
Ed VanBebber

New User


Joined: 05 Jan 2008
Posts: 11
Location: Sacramento, Ca

PostPosted: Wed Aug 06, 2008 1:27 am    Post subject: CEE3250C - abend U1188 R=05896596
Reply with quote

I'm having problems diagnosing this abend. Job is intermittently bombing with the following:


CEE3250C The system or user abend U1188 R=05896596 was issued.
From compile unit FIS302 at entry point FIS302 at statement 3755 at compile unit offset +0000242E at entry
offset +0000242E at address 2B2032A6.

Any ideas?

Thanks
Back to top
View user's profile Send private message
References
dick scherrer

Global Moderator


Joined: 23 Nov 2006
Posts: 8596
Location: 221 B Baker St

PostPosted: Wed Aug 06, 2008 1:34 am    Post subject:
Reply with quote

Hello,

Suggest you post considerably more info about the problem process. . .

What does the code do? What is at the statement mentioned in the abend? What do the abended runs have in common? Is this code used in multiple processes and do all of them sometimes abend?
Back to top
View user's profile Send private message
Ed VanBebber

New User


Joined: 05 Jan 2008
Posts: 11
Location: Sacramento, Ca

PostPosted: Wed Aug 06, 2008 1:46 am    Post subject:
Reply with quote

Thanks Dick Scherrer. The customer is not available for more info but job occasionally bombs in step15 and is using the sort work files from step5.

//STEP05 EXEC PGM=&FIS100,TIME=30,COND=(0,NE)
//STEPLIB DD DSN=TZ.Y2K.PRODLIB,DISP=SHR
//Y2KWIN DD DSN=TRUCAT02.TZ.Y2K.CENTURY.WINDOW,DISP=SHR *READ*
//FISADD DD DSN=TZ.Y2K.APSCNTRL(FISSRTA),DISP=SHR
//FISACNTL DD DSN=TZ.Y2K.APSCNTRL(FIS41AA),DISP=SHR
//SORTWK01 DD UNIT=(SORTDA,4),SPACE=(CYL,(300,300)),DISP=(,PASS)
//SORTWK02 DD UNIT=(SORTDA,4),SPACE=(CYL,(300,300)),DISP=(,PASS)
//SORTWK03 DD UNIT=(SORTDA,4),SPACE=(CYL,(300,300)),DISP=(,PASS)
//OC DD DSN=TRUCAT02.TR.FIS.PROD1.OC,DISP=SHR
//SM DD DSN=TRUCAT02.TR.FIS.PROD1.SM,DISP=SHR
//VE DD DSN=TRUCAT02.TR.FIS.PROD1.VE,DISP=SHR

//STEP15
EXEC PGM=&FIS302,TIME=45,COND=(0,NE)
//STEPLIB DD DSN=TZ.Y2K.PRODLIB,DISP=SHR
//Y2KWIN DD DSN=TRUCAT02.TZ.Y2K.CENTURY.WINDOW,DISP=SHR *READ*
//FISADD DD DSN=TZ.Y2K.APSCNTRL(FISSRTA),DISP=SHR
//FISACNTL DD DSN=TZ.Y2K.APSCNTRL(FIS41AC),DISP=SHR
//$ORTPARM DD DSN=TZ.Y2K.APSCNTRL(FIS41A15),DISP=SHR
//SORTWK01 DD DSN=*.STEP08.SORTWK01,DISP=(OLD,PASS)
//SORTWK02 DD DSN=*.STEP08.SORTWK02,DISP=(OLD,PASS)
//SORTWK03 DD DSN=*.STEP08.SORTWK03,DISP=(OLD,PASS)
//CNT DD DSN=TR.FIS.PROD1.RECONCIL(+1),DISP=(SHR,PASS)
//SM DD DSN=TRUCAT02.TR.FIS.PROD1.SM,DISP=SHR,AMP=('BUFNI=2')
Back to top
View user's profile Send private message
CICS Guy

Senior Member


Joined: 18 Jul 2007
Posts: 1199
Location: At my desk

PostPosted: Wed Aug 06, 2008 1:52 am    Post subject:
Reply with quote

Explanation: A system or user abend has occurred.
Programmer Response: Look in the messages and codes or system codes manual for the particular platform to resolve the system-described problem.
Back to top
View user's profile Send private message
Ed VanBebber

New User


Joined: 05 Jan 2008
Posts: 11
Location: Sacramento, Ca

PostPosted: Wed Aug 06, 2008 1:57 am    Post subject:
Reply with quote

Thanks CICS Guy but qw was not very helpful
Back to top
View user's profile Send private message
CICS Guy

Senior Member


Joined: 18 Jul 2007
Posts: 1199
Location: At my desk

PostPosted: Wed Aug 06, 2008 2:09 am    Post subject:
Reply with quote

FWIW,
a Google of U1188 wrote:
I just wanted everyone to know what fantastic response I have been getting from IBM, EMC and Syncsort on this issue.
IBM and EMC are seeing a channel error and are working on this aspect. Syncsort did a fantastic job of helping to identify the direction of this error for me.
Second, out of this issue, Syncsort has recognized that the message
WER494I INPUT PHASE USED MIDAW
maybe produced with MIDAW is disabled. They are currently working on a fix.
And why are even defining the sortworks?
Back to top
View user's profile Send private message
Ed VanBebber

New User


Joined: 05 Jan 2008
Posts: 11
Location: Sacramento, Ca

PostPosted: Wed Aug 06, 2008 2:14 am    Post subject:
Reply with quote

That is great info CICS Guy....Thank you!
Back to top
View user's profile Send private message
dick scherrer

Global Moderator


Joined: 23 Nov 2006
Posts: 8596
Location: 221 B Baker St

PostPosted: Wed Aug 06, 2008 2:37 am    Post subject:
Reply with quote

You're welcome icon_smile.gif

There is an old IBM phrase that comes to mind. . .

"The results may be unpredictable. . .".

I suggest you remove the referbacks to the SORTWK datasets. Also seems kind of spooky to have a "+1" with disp=shr. . .
Back to top
View user's profile Send private message
Ed VanBebber

New User


Joined: 05 Jan 2008
Posts: 11
Location: Sacramento, Ca

PostPosted: Wed Aug 06, 2008 3:58 am    Post subject:
Reply with quote

I will run those suggestions by the customer. Thanks again CICS Guy.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> ABENDS & Debugging All times are GMT + 6 Hours
Page 1 of 1