In how ways you can pass the data from Jcl to cobol ?
Answer Posted / rknaidu
Four ways.
there are,
1. sysin card.
2. via parm parameter.
3. files.
4. control cards.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What is the function of job statement in jcl?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
when does a dataset go uncataloged?
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
What is the purpose of dd?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
Differentiate between the joblib and the steplib statements?
What is the function of the steplib dd statement?
what is DSN parameter and DISP parameter is used for?
Is it possible to left uncode disp?
write a jcl to execute a job by 7:00 am on jan 20,1986?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
//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 can an in-stream dataset be terminated?