What is the purpose of include statement in a JCL?
Answers were Sorted based on User's Feedback
Answer / jojav
"INCLUDE" is to access a member in global PDS. example:
INCLUDE MEMBER = XXXXXXX. This XXXXXX should be a member of
the global PDS. This XXXXXX can be a proc or control card.
Its just used for reusability.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / guest
It is used as an alternative for STEPLIB. When we specify
the dataset name in include ,it will search in all the
datasets specified in the include dataset.
| Is This Answer Correct ? | 5 Yes | 6 No |
can we write a proc with in a proc
how you can direct the data to spool using SYSOUT option?
What do you do if you do not want to keep all the space allocated to a dataset?
how can we override data definitions in jcl. can any one give detailed example
what is a jcl?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
How to get the last but one duplicate record of the file using Sort?
Which storage devices are grouped under DASD and SYSDA ?
How to print the Output to SPOOL using MSGCLASS and SYSOUT ?
mainframe questions like basic&depth
what is JCL?
in a series of 10 steps, i need to run only 1,3,5,7 & 9th steps only. how do u code?