how to resolve soc-7 ? please tell me
Answers were Sorted based on User's Feedback
Answer / sharmila_g
soc 7 is a data exception error (or) invalid data (or) bad data.
eg: moving all arithmetic operations.
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / raghuveer
change the non numric data given into numeric
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vinothkumar
Answer: To change the correct manipulating operation for
that suitable data type.
for ex:
move non-numeric value to numeric value, this is wrong.
so move the correct variable to the corresponding data type.
Wrong : MOVE 'ABCD' TO A.
where, 'A' is 10 & 'ABCD' is the alphabets.
Correct : MOVE 5 TO A.
MOVE 'ABCD' TO WS-MSG.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is a MODELDSCB?
How does the jcl specify the job to os?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
in production region 100 steps are running,but i need to run only step5 without changing code how can i do it?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
how to resolve sb37,sd37 se37 abends
Explain the purpose of dd dummy statement?
when we use sysprint and sysout statements
whats SOC7?
what type of version is we r using now real time in all modules(cobol, jcl, cics, db2, vsam)?
what is the purpose of coding class parameter in job statement?
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)