how we rectify soc4 and soc7 error in project(need real time
answer)? please reply
Answers were Sorted based on User's Feedback
Answer / ray davis
SOC4 is a boundary violation (trying to access memory not
allocated to your program. SOC7 is trying use a numeric
field which isn't numeric. Then you do as the previous
post describes and dig though the dump to find out what and
where the problem is.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / charanya
Either we can try to find using the offset value as the
previous poster suggested and the other way is we can use
DISPLAY in programs to rectify the Soc7 error.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is CALL statement in COBOL?
Name the divisions in a COBOL program ?
How can I tell if a module is being called DYNAMICALLY or STATICALLY?
How to read records from flat file in reverse order through COBOL program?
14 Answers Accenture, Broadridge, IBM, MAT, Polaris, SPIC, Syntel, TCS, Wipro,
What is tne need to use sub programs in Cobol?
how do you reference the rrds file formats from cobol programs
what are the paramater we cannot use in procedure?how many instream we can write in single jcl?can we call instream to catalog and ctalog to instream?
wht is the use of evalute verb ? how do u declare recfm in cobol and jcl ?
If I want to increase the Limit in GDG. What should I do?
What is an in line PERFORM? When would you use it? Anything else to say about it?
How can you submit a job from COBOL programs?
01 var1 pic s9(9)v99. 01 var2 pic x(30). procedure division. move 12345.99 to var1. move12345.99 to var2. display var1. display var2. what is the output?