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 |
wht is packed decimal in cobol
A s9(4). B v9(4) value 0.21 can i move this?
can we use variable picture clause as xx.99 in cobol.
I want to remove a duplicates form a given input field using cobol program. please Any one help me out to solve this ... Thanks in Advance.
Have you used comp and comp-3 in your project? And how?
what is the difference between Normal vaiable and comp variable.
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these
In my table having 3000 Records. How can I delete the 500th row? (we don't know what is data inside the table)
What are the divisions in a cobol program?
How To move a value to an array using move verb?
how many bytes do SPPPP999 will store?
Is it possible to mutliply a comp variable with an comp-3 variable. Will there be any error if i do it?