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
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
What is the motivation behind coding class parameter in job statement?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?
whats the diff bw the evaluate also and and?
Explain the function of a dd statement?
what is SOC4 error?
Explain the purpose of dd * statement in jcl?
Explain dd statement in jcl?
how you will the direct the data to spool using sysout option?
Can I share my data with other jobs? How?
How to submit a jcl from cics?
Is it possible to code instream data in a PROC?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
What is the use of symbol // in jcl?
is there any way to execute more than one proc in the same exec statement at the same time..?