View previous topic :: View next topic
|
Author |
Message |
angt
New User
Joined: 01 Jun 2005 Posts: 17 Location: USA
|
|
|
|
Hi,
I copied PROD VSAM in test using file aid and used it in test JCL , I got SOC4 but when I replaced above DSN with PROD dataset name in my test job, It ran fine.
SYSTEM COMPLETION CODE=0C4 REASON CODE=00000011
TIME=09.57.08 SEQ=19037 CPU=0000 ASID=0175
PSW AT TIME OF ERROR 078C0000 87D5DEE0 ILC 4 INTC 11
NO ACTIVE MODULE FOUND
NAME=UNKNOWN
DATA AT PSW 07D5DEDA - 90005890 D1D05820 906C5520
AR/GR 0: 00000000/00000003 1: 00000000/00000080
2: 00000000/00000002 3: 00000000/07D5FFF0
4: 00000000/2D501570 5: 00000000/2E472038
Can someone please tell me what can be causes of this.
Thanks
angt |
|
Back to top |
|
|
Robert Sample
Global Moderator
Joined: 06 Jun 2008 Posts: 8700 Location: Dubuque, Iowa, USA
|
|
|
|
How does the LISTCAT for the test file compare to the LISTCAT for the production file? |
|
Back to top |
|
|
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 8796 Location: Welsh Wales
|
|
|
|
Did you forget an AIX or PATH |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello,
Are you using a new or recently changed program in test?
Does the production version of the program run successfully with the test vsam file? |
|
Back to top |
|
|
angt
New User
Joined: 01 Jun 2005 Posts: 17 Location: USA
|
|
|
|
Hi All
Bob ...Listcat appears to be same
Expat ..there is no AIX or PATH ..
Dick .. It's a recently changed program. Prod as well test version gave SOC4 with test file but it runs fine with PROD file.
angt |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello,
If the listcat is the same, sounds like there might be a jcl problem or the file is corrupt. . .
What happens if you try to sort the test vsam file and write the output to a qsam file or a dd dummy? |
|
Back to top |
|
|
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2146 Location: At my coffee table
|
|
|
|
Did you check the file status after any opens, closes and reads? |
|
Back to top |
|
|
angt
New User
Joined: 01 Jun 2005 Posts: 17 Location: USA
|
|
|
|
For me JCL is fine because when I change test DSN with prod DSN, job runs smooth.
I also initially thought file is corrupted
I already did delete/define, sorted all the data and then REPRO it to VSAM but all in vain I am still getting SOC4.
finally I added some display statements in my program to display file status code. some how it is 00 for all ( open read & close) . but still job returns SOC4.
angt |
|
Back to top |
|
|
CICS Guy
Senior Member
Joined: 18 Jul 2007 Posts: 2146 Location: At my coffee table
|
|
|
|
My best guess would be answered when you relate the PSW address to the statement in the program (it's called debugging)....... |
|
Back to top |
|
|
Robert Sample
Global Moderator
Joined: 06 Jun 2008 Posts: 8700 Location: Dubuque, Iowa, USA
|
|
|
|
The MAC says for S0C4 reason code 11:
Quote: |
11
Page-translation exception. This error is caused by one of the following:
* A program that was running disabled attempted to reference storage while that storage was paged out. To correct the error, page-fix the storage before a program running disabled attempts to reference it.
* A program attempted to reference storage that had not been obtained. To correct the error, allocate the storage before attempting to reference it.
* A program running in a subspace attempted to reference storage that was not accessible to the subspace at the time of error. To correct the error, ensure that the program running in a subspace references only the storage assigned to that subspace, or storage that can be referenced by all subspaces.
* SMS abend. The reason code is X'12C'. |
Unless there's messages you haven't told us about, I think it's time you consult with your site support group to find out if they can find the reason for the abend. |
|
Back to top |
|
|
dick scherrer
Moderator Emeritus
Joined: 23 Nov 2006 Posts: 19243 Location: Inside the Matrix
|
|
|
|
Hello,
Is the vsam file variable length - possibly with an "occurs depending on" . . .?
It may be due to data content that the code is trying to process an invalid occurrence. . .
What was the source for the test data? |
|
Back to top |
|
|
expat
Global Moderator
Joined: 14 Mar 2007 Posts: 8796 Location: Welsh Wales
|
|
|
|
And if the listcat is the same, maybe the data has changed in the prod file and has not yet been propogated to test. |
|
Back to top |
|
|
|