Answer Posted / swathiii
Yes. We can write proc with in a proc.
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
Explain how can the submitting users racf authority be overridden in a job stream?
Which statement is used to identify the private libraries in job?
How can the disposition of sysout datasets be set for an entire jobstream?
For what purpose steplib and joblib are used ?
what is use of disp parameter in dd statement?
What does a disposition of (MOD,DELETE,DELETE) mean ?
Explain the purpose of dd dummy statement?
define cond parameter in jcl?
//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 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
How does jcl specify the job to the operating system?
What are the parameter we cannot use in procedure?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?