Answer Posted / 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 |
Post New Answer View All Answers
How to pass data to a program that is coded in an exec statement?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
How to submit a jcl from cics?
What is 'mounting' of volumes ? Is there anything that a programmer can do in it ? How to find currently mounted volume ?
How gdg are concatenated?
Explain the function of //jcllib statement?
What is Cataloged Procedures?
is there any way to execute more than one proc in the same exec statement at the same time..?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
What is timing concept in mainframe?
Is it possible to left uncode disp?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
what is use of dcb parameter in dd statement?
What is condition checking in jcl? Is this possible?
how can you check if a file is empty using jcl?