How do you check the syntax of a JCL without running it?
Answer Posted / psreddy
We can give 'jcl' in tso command line
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
how can you check if a file is empty using jcl?
how to do automated restart when a job abends?
What is the function of a dd statement?
what are the statements that are not valid to be included in an include statement?
how to run batch program without jcl?
How can a stopped job be started again?
How does the jcl specify the job to os?
How to pass data to a program that is coded in an exec statement?
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
How does jcl act on a cobol code?
What is the use of symbol // in jcl?
What is NOTCAT ?
What do you understand by jcl?
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.
//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 /*