Can anybody tell what is tool used to generate the list of
PROCS used in JCL to generate a PROCTREE
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between specifying DISP=OLD and DISP=SHR for a dataset?
There are two steps in a JCl, the first one generates a report while the second step send an email saying the report has been generated, but the second steps should only be executed when the report file is non-empty. How can it be acheived. We may include steps in between.
//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 /*
lines(1,cancel)??What is meant by that??Plz explain it....
Explain how can values be passed from the job stream to an executable program?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
what is the job entry system used in your project?
I have two files each contains 10 records. I would like to copy both files into one output file but in alternate sequence. for e.g. first record from file1 then record 2 from file2.....
Can anyone tell me the syntax for printing two files at two different destinations in a single step?
What is RESTART? How is it invoked?
How many steps we can overide in the proc's?
is it possible to submitt more than one job in job card in jcl? and if yes than is it necessary to have the jobs same name?