How many types of parameters are used in JCL and what are
mandatory parameters of JOB statement.
Answer Posted / srinivas
There are two types of parameters in JCL.Those are Key word
and Positional Parameters.For JOB statement ,
Key Word parameters are NTIFY ,CLASS,MSGCLASS,MSGLEVEL.
And Positional Parameters are ACCOUNTING
INFORMATION,ADDRESSSPACE.
| Is This Answer Correct ? | 25 Yes | 4 No |
Post New Answer View All Answers
what are the various stages of job processing?
which utility is used to run a cobol-db2 program?
How can a jobs execution priority be modified?
How to submit a jcl from cics?
Are there any set of rules for the names of the steps used in a job?
what JCL Procedures?
What does a disposition of (new,catlg,keep) for a dsn mean?
//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 cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
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) ?
List in order the hierarchical levels of jcl?
Explain about LMQUERY�give a dialog information about a data set
What are s0c1, s0c4, s0c5, s0c7 and socb?
what are JCLLIB and STEPLIB in JCL?
How to pass the parameter in parm using linkage section ? (syntax)?