View previous topic :: View next topic
|
Author |
Message |
surya_pathaus
Active User
Joined: 28 Aug 2006 Posts: 110
|
|
|
|
Hi,
I am not aware of IMS DB/DC stuff. In my system testing Jcl flow I need to execute one IMS step.
While executing this step We are using "DFSRRC00" program. In this step I am getting an abend.
Code: |
*IEF450I A029407A P0010S01 STEP01 - ABEND=SFFE U0000 REASON=00000000 910
|
Can anyone help me out. |
|
Back to top |
|
|
William Thompson
Global Moderator
Joined: 18 Nov 2006 Posts: 3156 Location: Tucson AZ
|
|
|
|
Explanation: The system detected an error while processing a Supervisor Call (SVC) instruction. The last 2 digits of this completion code, nn, are the operand of the SVC instruction in hexadecimal. For example, completion code X'F0D' means that the error occurred while the system was processing SVC X'0D', that is, SVC 13.
For recently installed SVCs, if the number (nn) is X'C8' thru X'FF', it is an installation defined SVC. If the SVC number is X'00' thru X'C7', and you continue to have a problem after following the next steps, contact the IBM Support Center. |
|
Back to top |
|
|
surya_pathaus
Active User
Joined: 28 Aug 2006 Posts: 110
|
|
|
|
What would be the resolution for the above? |
|
Back to top |
|
|
William Thompson
Global Moderator
Joined: 18 Nov 2006 Posts: 3156 Location: Tucson AZ
|
|
|
|
It is an installation defined SVC, maybe a slip trap? Talk to your systems people, they probably devised and installed it, they are responsble for it. |
|
Back to top |
|
|
SouravPani
New User
Joined: 06 Feb 2023 Posts: 1 Location: India
|
|
|
|
First of all thanks to the Awesome mainframe community for making life easy for us .
I received a ABEND=SFFA U0000 REASON=00000000 when running a ACBGEN , Could not find it anywhere except this thread .
After reading William's Reply I tried to check my IEASVCXX and found the SVC were loaded from IMS 15.1 and I was installing IMS 15.2 , As the SVC need to be reinstalled for Newer versions .
www.ibm.com/docs/en/ims/15.3.0?topic=zos-ims-svc-modules
Ran the below SVC Update to reload the IMS SVC
//DYNSVC EXEC PGM=DFSUSVC0,PARM='SVCTYPE=(2,4)'
//STEPLIB DD DISP=SHR,DSN=IMS.SDFSRESL
//DFSRESLB DD DISP=SHR,DSN=IMS.SDFSRESL
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
The SVC250 should be a type 2 and SVC241 should be a type 4 .
IMS Need those 2
Make sure to have the modules IGC0024A ,IGC250 in SDFSRESL
Thank you |
|
Back to top |
|
|
Rohit Umarjikar
Global Moderator
Joined: 21 Sep 2010 Posts: 3076 Location: NYC,USA
|
|
|
|
Please start a new post and avoid tailgating any older post. |
|
Back to top |
|
|
|