A file has dta in S9(09) COMP format. How do I move the
data into a character field X(10)?
Answer Posted / dineshj
you do redefine for S9(09) COMP format
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
//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 /*
How do you create a temporary dataset?
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
Explain the function of dd disp parameter?
what is use of space parameter in dd statement?
What is the purpose of dd dummy statement?
write a jcl to execute a job by 7:00 am on jan 20,1986?
how do you code a null statement?
How jcl work to handle various input output file operations?
List the different components of jcl statement?
Where & How Do You Code Identifier In Jcl?
How can a stopped job be started again?
What is the syntax of JCL statement?
Is their any limit for data sets?
What is the significance of addrspc parameter in exec statement?