what is soc7 abend?how u can trace it?
Answers were Sorted based on User's Feedback
Answer / valmiki1980
Soc7 generally occurs when a non mumeric data moved to a
numeric data type and perform computation.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / piyush mani
all answers r correct but ther r many cause of soc7 abend
like
1.Numeric operation
on non-numeric data
2.Un-initialize working-storage
3.Coding past the maximum allowed sub scrip
thanks
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vinay sonar
SOC7 occurs when numeric operations are performed on non-
numeric data
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / pandu
hi i will give you one eg
x1 pic x(10)
x2 pic 9(4)
i want to move x1 to x2 but it is not possible becoz how
can we send the alpha -numeric data in to numeric. at that
time Soc7 will raise. but it will possible if the alpha-
numeric data is only numeric data i.e alpha numeric means
combination of A-Z and 0-9 if we send the digits to digits
it is no problem
Kindly tell me if answer is wrong? i will waiting for reply.
| Is This Answer Correct ? | 3 Yes | 3 No |
I got user abend U4038 while compiling my runjcl.. can anyone help me?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
A paragraph PARA-X is to be executed when none of the data names A, B and C have value of 1. Which of the following will achieve this ? (a) IF A NOT = 1 OR B NOT = 1 OR C NOT = 1 PERFORM PARA-X (B) IF NOT A= 1 AND B= 1 AND C = 1 PERFORM PARA-X (C) IF A NOT =1 IF NOT B = 1 OR C= 1 PERFORM PARA-X (C) IF A NOT = 1 AND B NOT = 1 AND C NOT = 1 PERFORM PARA-X
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
How can we find out wether to declare the data items like Integer, Char,Comp? If comp types how can we decide wether it is Comp and Comp3.How it is? Please Explain... Cheers.
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
how can you identify wheather the program is using search or search all in the cobol program?
how do you reference the printer 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?
How to know whether the module is dynamical or statistical?
01 a pic s9(5) occupies how many bytes ?
In A cobol program , we can use COPY Statement in FILE- SECTION / WORKING-STORAGE SECTION / ENVIRONMENT DIVIION basically what is the difference