What is meant by S0C7 system abend code?
Answers were Sorted based on User's Feedback
Answer / guest
S0C7 - Data exception error - you will get it whenever you
are trying to move the low values or spaces into the numeric
field, or compare the numeric fields with low values, or try
to do some arithmetic operations on the low values. To avoid
this you have to always initialize the numeric fields
otherwise they will contain the low values.
| Is This Answer Correct ? | 34 Yes | 2 No |
Answer / shakila vinayagam
Program Check Exception - Data. Check for spaces in a
packed decimal or numeric field. Check to see if record
layouts or file layouts have been changed.
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / prashanthkodakani
soc7: 'data exception error'-a non numeric operation on
numeric field
| Is This Answer Correct ? | 10 Yes | 5 No |
Answer / jim
An attempt has been made to perform arithmetic on an
invalid packed field.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vinod
soc7 is will arise when there is a 'data type mismatch'.the
main reasons are program attempting to math on illegal data,
moving zeroes to group item whose subordinate items are
packed decimal,
unintialized packed decimal fields
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / harish k r
Program check exception or Data exception- it 'll arise
when you dont initialise the numeric field, and movin any
field to it.
it may occur due to passing non-numeric data into numeric
data.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is JCLLIB and PROCLIB in jcl and their syntax
What is the use of IEBGENER ?
What is DYNAMBR in jcl?
what is d/f b/w sysout & sysprint
If a field is declared as a comp-3 field and if we want to sort a dataset based on this field, then how will the sort card be??? e.g- if we want to sort by a field which is defined as a PIC X(5) then we will mention - sort fields=(1,5,ch,a). Likewise if a field is defined as PIC S9(10)COMP-3 then in this case how will the sort field be defined (because in this case a sign is also involved)???
1) SORT FIELDS=(20,4,CH,D,10,3,CH,D) OUTREC FIELDS=(7:20,4,C' FUTURE ',20,2,10,3,1Z,1,9,13,7, 24,57,TRAN=LTOU,6X'FF') This example illustrates how a fixed-length input data set can be sorted and reformatted for output. The SORTIN LRECL is 80 bytes. The reformatted output records are fixed length with a record size of 103 bytes. SOLRF (the IBM-supplied default) is in effect, so unless the SORTOUT LRECL is specified or available, it will automatically be set to the reformatted record length of 103. in the above example i have some doubts that a) sort fields=(20,4,CH,D,10,3,CH,D) -what exactly it does and this fields related to output record fields or input record fields b)outrec used to refprmat the records after sorting that means could please reply me as soon as possible Thanks. Venkat
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?
Can we change the LIMIT of GDG?
I have a jcl which is using 2 data sets i want to override those data sets. how can i override the files within the JCL. Give me the syntax. Make sure that it is not calling any Proc.
how to put a dependency on job in jcl using opc scheduler?
How does jcl act on code(if you take a cobol program)?
What do you feel makes a good program?