Answer Posted / suersh ramaiyan
JCLLIB: The PDS, where all the JCL (procedures) are present.
JOBLIB: The PDS, which contains the load modules of the programs.
In a JCL, if we are including any procedures, the system should know where it needs to be searched. That's why we are mentioning JCLLIB.. here is the syntax..
//DDNAME JCLLIB ORDER=(Emer.proclib,prod.proclib)
Where, DDNAME can be anything within 8 chars, JCLLIB & ORDER are the keywords and there is no DISP is needed.
When a program is try to run the system will execute the macro to load the executable code(load module of the program) from the load library to main memory. So we should mention where it should find the same. here is the syntax.....
//JOBLIB DD DSN=emer.loadlib,DISP=SHR
// DD DSN=prod.loadlib,DISP=SHR
// DD DSN=test.loadlib,DISP=SHR
Where, other than the library name, all others are keyworkds.
Please include if I missed anything..
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
In which area will you utilize 88 level items in cobol?
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
Write some characteristics of cobol as means of business language.
Can we change the password using ALTER? anyone tried and changed?
what happens if parmparameter passes zero bytes to the program
how to move the records from file to array table. give with code example
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
how do you reference the esds vsam file formats from cobol programs
How do you reference the fixed block file formats from cobol programs
) How do u handle errors in BMS macro?
Write a program that uses move corresponding.
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?
What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
What is the difference between structured cobol programming and object alternativelyiented cobol?
what is search and searchall?what is the diffrence between them?give an best example?