InterviewSolution
| 1. |
How will you repair the SOC-7 error? |
|
Answer» The most common cause of SOC-7 error is PROBLEMATIC data associated with an uninitialized numeric item. We can get hold of dumps of run-time abends by performing some setups like invoking Operating System Services using assembly languages. Using these dumps, we can get the exact location of INSTRUCTION where the abend has occurred. Using this, we can verify the XREF output that lists the compilation to get the line number and verb of the source code of the instruction error OFFSET. RUNTIME dumps can be captured by defining datasets as Sysabout (for example) in JCL. We can also make use of the debugging utilities provided by the setups. When none of the methods is working, we need to find the error location by making use of good judgement and understanding of the system developed. |
|