whn do i get soc7 abend while moving alphanumeric to
numeric or while moving numeric to aplhanumeric please
reply ASAP?
Answer Posted / b.rajesh
SOC7 abend error will occur when we pass ALPHANUMERIC to
NUMERIC
ex:-
01 a pic x(6) value 'rajesh'.
01 b pic 9(6).
procedure division.
move a to b.
it shows SOC7 error.
SOC7 abend error will NOT occur when we pass NUMERIC to
ALPHANUMERIC
ex:-
01 a pic 9(6) value '901090'.
01 b pic x(6).
procedure division.
move a to b.
| Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
How do define dynamic array in cobol.
Which division and paragraphs are mandatory for a COBOL program?
What is the local-storage section?
Mention the guidelines to write a structured cobol program?
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
how to move the records from file to array table. give with code example
What is a scope terminator give example?
Which is not true about evaluate statement
how do you reference the printer file formats from cobol programs
What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
What are the access modes of START statement?
how do you reference the variable unblock file formats from cobol programs
What is difference between static and dynamic call in cobol?
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..