How can we execute only one step in a job
Answer Posted / pavan kumar
give that steps name in the restart parameter on the job
card and after that step put //
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how can the same proc be re-used and called by many jobs?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.
when can a job time-out occur? How to overcome that?
What is the motivation behind coding class parameter in job statement?
Name what parameter directs the output of the job log dataset?
what operation is performed by job statement?
can any one plzzzzzz tell the jcl code for creating ps using idcams
What statement can be used to send data to another mvs jes3 node?
Define concatenating?
Explain how can an in-stream dataset be terminated?
what is use of dsn parameter in dd statement?
When output dataset space is required, what quantity categories are used?
//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 /*
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you