Can you execute a PROC from another PROC?
Answer Posted / tanji
Answer to #5:
Need to give the lib of all the proc in the jcllib,With
that the second and subsequent proc will be identifies the
the executing proc.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
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?
a dd statement has 2 types of parameters. Name them?
Differentiate between addressing mode and run mode.
How to submit a jcl from cics?
what is JCL?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
//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 /*
Explain about LMFREE�free data set from its association with data ID
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
Are there any set of rules for the names of the steps used in a job? What are they?
What does a disposition of (MOD,DELETE,DELETE) mean ?
what is the purpose of coding class parameter in job statement?
How can a stopped job be started again?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?