//{name} INCLUDE MEMBER=memname {comments}
in the include statement, what actually happens when its
executed? The membername conatains a list of valid JCL
statements, so will the include statement be substituted by
these statements and how can we mention the pds that
conatains the member? How does the include group differ from
a PROC?
how is include statement connected to JOBLIB and STEPLIB?

Answer Posted / max

We are using two sysres volume for 4 lpar, one online e one
offline for maintenance.Using INCLUDE member=memname in the
jcl (or proc), in joblib o steplib,for switch from one
library to other ptf library(standing in the other sysres
offline volume), how can i involve in the specific case of OMVS?
There is the problem, that for aplly ptf, i'll mount root
directory of the voleume sysres offline. Infact with two
unique sysres, on e system cloud have different sysres
online. And thus? i can't apply ptf on the root file if it's
mounted on other system lpar.

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Are there any set of rules for the names of the steps used in a job? What are they?

614


Explain the function of job statement in jcl?

649


in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?

2063


how you can access an uncataloged dataset in a JCL?

656


Explain the function of dd disp parameter?

595






How does jcl act on a cobol code?

659


I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?

832


How gdg are concatenated?

672


List in order the hierarchical levels of jcl?

670


how would you create a temporary dataset? And where will you use them?

768


what is DD statement is used in JCL?

683


Can I share my data with other jobs? How?

670


how to do automated restart when a job abends?

854


What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?

679


WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move

854