how do you resolve for soc7 error
Answers were Sorted based on User's Feedback
Answer / munish
SOC7 is data exception and can occur when packed
instructions are used. For its resolution , we have to
correct the data or conversion formatin the program.
| Is This Answer Correct ? | 26 Yes | 7 No |
Answer / vidhya
Q31) Basically you need to correcting the offending
data. Many times the reason for SOC7 is an un-initialized
numeric item.
Examine that possibility first. Many installations provide
you a dump for run time abend’s ( it can be generated also
by calling some subroutines or OS services thru assembly
language). These dumps provide the offset of the last
instruction at which the abend occurred. Examine the
compilation output XREF listing to get the verb and the
line
number of the source code at this offset. Then you can
look at the source code to find the bug. To get capture
the
runtime dumps, you will have to define some datasets
(SYSABOUT etc ) in the JCL. If none of these are helpful,
use
judgement and DISPLAY to localize the source of error.
Some installation might have batch program debugging
tools. Use them.
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / srinivas yadav
SOC7: NON-NUMERIC FILEDS ON NUMERIC FIELDS
TO RESOLVE: GO TO SPOOL AND COPY THE OFFSET VALUE AND TYPE
IN THE COMMAND LINE F OFFSETVALUE, IT GOES TO THE
PARTICULAR PLACE SO THAT WE NEED TO CHANGE IT.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / soumya
Actualy S0C7 abends normaly happens due to wrong data/ non-
numeric data in numeric field.By wrong data i mean to say
like if key is duplicated or some garbage data.
The resolution can be done in two ways :
1)code fix by which you can fix the cobol program code and
stage it
2)By deleting the bad records from the file
But be carefull about the file deletion if its a batch
process and some other jobs depend on the p[articular
job,so it can effect to other if any wron fixation done.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / mohi
go to spool and check what data is moved to the variable
present in the code. and definitely u will come to know
what to do..
| Is This Answer Correct ? | 1 Yes | 1 No |
How to print the Output to SPOOL using MSGCLASS and SYSOUT ?
What are the parameter in the job card wihtout which job won't run........
In your JCL, run the even numbered steps if date is even and run odd numbered steps if date is odd . Where do you generate the date ??in cobol or JCL ??
Which dd parameters are required?
Does jcl support automatic restart?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
what is use of space parameter in dd statement?
What is the meaning of the EXEC statement keyword, COND? What is its syntax?
Hi, Say I have 10 flat files and I want to copy all these 10 flat files to a GDG versions flat files (I have GDG base: FDWS01.TEST.RESTORE) in one shot. Can we do that in one shot using a JCL. May be by using IEBGENER. It's a bit urgent. So anyone's fast rely would be appreciated.. Thanks in advance.. 10 flat files ----------------------------------- FDWS01.SUB.RESTORE1 FDWS01.SUB.RESTORE2 FDWS01.SUB.RESTORE3 ; ; FDWS01.SUB.RESTORE10 TO GDG versions ----------------------- FDWS01.TEST.RESTORE.G0001V00 FDWS01.TEST.RESTORE.G0002V00 FDWS01.TEST.RESTORE.G0003V00 ; ; FDWS01.TEST.RESTORE.G0010V00
How can I write the joblog in the spool on normal end of a job step and direct the joblog to a dataset only if the step abends?
Is it possiable to use a gdg in the INCLUDE statement in a SORT jcl? I am using this because I want to change the condition with out changing the jcl. Please provide with a sample code.
Can we use empty VSAM as input?