What is meant by S0C7 system abend code?

Answers were Sorted based on User's Feedback



What is meant by S0C7 system abend code?..

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

What is meant by S0C7 system abend code?..

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

What is meant by S0C7 system abend code?..

Answer / prashanthkodakani

soc7: 'data exception error'-a non numeric operation on
numeric field

Is This Answer Correct ?    10 Yes 5 No

What is meant by S0C7 system abend code?..

Answer / jim

An attempt has been made to perform arithmetic on an
invalid packed field.

Is This Answer Correct ?    4 Yes 0 No

What is meant by S0C7 system abend code?..

Answer / g

previous ans is correct

Is This Answer Correct ?    8 Yes 7 No

What is meant by S0C7 system abend code?..

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

What is meant by S0C7 system abend code?..

Answer / swapna

Data excepton error

Is This Answer Correct ?    1 Yes 0 No

What is meant by S0C7 system abend code?..

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

Post New Answer

More JCL Interview Questions

What is DSNDB06 ?

1 Answers  


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

0 Answers  


How do you pass parameters to the program as the job is being executed ?

2 Answers  


delete rules in db2

1 Answers   Keane India Ltd,


Could you provide an example and its effect OF, Using COND on JOB and EXEC both ?

4 Answers   IBM,






What is default if we don't specify RD parameter at all ?

1 Answers   IBM,


What is a Proc ? why do we go for a Proc ? What are the types of procs?Can we have nesting in Procs ?

9 Answers   Xansa,


Can we use COND=EVEN on a job card, when jobs are scheduled through scheduler?

5 Answers   L&T,


Explain the purpose of the dd keylen parameter?

0 Answers  


I need to compare two VSAm files. In input VSAM file some fields are updating and the updated feilds are coming into the output file. now i need to compare these two files with respect to a perticular field. Please suggest a suitable JCL code me.

2 Answers   Cognizant, Wipro,


is there any way to execute more than one proc in the same exec statement at the same time..?

0 Answers  


I have 5 steps in my jcl ,I need to execute first three steps and then 2nd step again ,4th and 5th steps if rc of 2nd step is zero

1 Answers   ABC,


Categories