Why we will create load module in PDS only, Why nt in PS?
Answer Posted / paray2x
Load modules are actually libraries which contains
programs. We cannot specify a PS in STEPLIB or JOBLIB.
In fact, I tried to compile and link edit a program by
giving a PS load module and got the error
"The SYSLMOD dataset is not a PDS".
Similarly, catalogued procedures in JCLs can only exist in
PDS.
Relate to this to C, C++ where the #include files are in
folders.
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What is the syntax of JCL statement?
How dummy is used in jcl?
Explain the job statement in jcl?
Is their any limit for data sets?
Must tape dataset definitions include vol=ser specifications?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
What dd statement is used to supply the name of a dataset?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
what happens in conversion stage in job processing?
What do you know about jcl?
How can a fb file convert to vb file using sort program?
how to do automated restart when a job abends?
What is job control language?
what are the statements that are not valid to be included in an include statement?
What are steplib and joblib? What for they are used?