Template:JZLONLN: Difference between revisions
(Automatically generated page update) |
(Automatically generated page update) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
** automatically replaced ** -- any manual edits will be lost. | ** automatically replaced ** -- any manual edits will be lost. | ||
You've been warned.--> | You've been warned.--> | ||
<p class="code"><nowiki>// | <p class="code"><nowiki>//LKM204P PROC HLQ=, High level qualifier(s) of install DSNs | ||
// MQ=NULLFILE, IBM MQ series load library | |||
// MQ=NULLFILE, | // ACF2=NULLFILE ACF2 security interface load/objlib | ||
// ACF2=NULLFILE | |||
//* | //* | ||
// | //* ******* z/OS JCL PROC to link edit into Model 204 loadlib ****** | ||
//* | //* | ||
//* ****************************************************************** | //* ****************************************************************** | ||
//* ** Do not copy nor edit this PROC. It is invoked by member | //* ** Do not copy nor edit this PROC. It is invoked by a ** | ||
//* ** | //* ** jobstream member (such as LKONLNJ, LKIFAM1, etc.) for the ** | ||
//* ** | //* ** particular load module you are linking. You should copy the ** | ||
//* ** jobstream member from the downloaded object library and then ** | |||
//* ** edit in a local TSO library. The jobstream contains ** | |||
//* ** instructions to modify and submit that jobstream. ** | |||
//* ****************************************************************** | //* ****************************************************************** | ||
//* | //* | ||
//* The first | //* The first symbolic parameter (HLQ=) is required. | ||
//* | //* | ||
//* | //* The other two depend on the jobstream being used to invoke this | ||
//* | //* PROC, and on your Model 204 configuration. | ||
//* | //* | ||
//* | //* Detailed explanations are also available for the load module | ||
//* you are linking at | |||
//* | //* | ||
//* http://m204wiki.rocketsoftware.com/index.php/M204_inst_zOS | //* http://m204wiki.rocketsoftware.com/index.php/M204_inst_zOS | ||
//* | //* | ||
//M204LINK EXEC PGM=IEWL,REGION=0M, | //M204LINK EXEC PGM=IEWL,REGION=0M, | ||
Line 53: | Line 31: | ||
//SYSPRINT DD SYSOUT=* | //SYSPRINT DD SYSOUT=* | ||
//* | //* | ||
//RKOBJ204 DD DISP=SHR,DSN=& | //RKOBJ204 DD DISP=SHR,DSN=&HLQ..M204V75.LOCAL.OBJLIB, | ||
// DCB=BLKSIZE=32720 | // DCB=BLKSIZE=32720 | ||
// DD DISP=SHR,DSN=& | // DD DISP=SHR,DSN=&HLQ..M204V75.RKOBJLIB Downloaded obj lib | ||
//* | //* | ||
//SYSLMOD DD DISP=SHR,DSN=& | //SYSLMOD DD DISP=SHR,DSN=&HLQ..M204V75.LOADLIB Model 204 modules | ||
//* | //* | ||
//MQ DD DISP=SHR,DSN=&MQ IBM MQ series load library | //MQ DD DISP=SHR,DSN=&MQ IBM MQ series load library | ||
Line 63: | Line 41: | ||
//ACF2 DD DISP=SHR,DSN=&ACF2 ACF2 system load/object library | //ACF2 DD DISP=SHR,DSN=&ACF2 ACF2 system load/object library | ||
//* | //* | ||
// PEND ************** End of | // PEND ************** End of LKM204P PROC ************* | ||
</nowiki></p> | </nowiki></p> |
Latest revision as of 15:39, 24 October 2014
//LKM204P PROC HLQ=, High level qualifier(s) of install DSNs // MQ=NULLFILE, IBM MQ series load library // ACF2=NULLFILE ACF2 security interface load/objlib //* //* ******* z/OS JCL PROC to link edit into Model 204 loadlib ****** //* //* ****************************************************************** //* ** Do not copy nor edit this PROC. It is invoked by a ** //* ** jobstream member (such as LKONLNJ, LKIFAM1, etc.) for the ** //* ** particular load module you are linking. You should copy the ** //* ** jobstream member from the downloaded object library and then ** //* ** edit in a local TSO library. The jobstream contains ** //* ** instructions to modify and submit that jobstream. ** //* ****************************************************************** //* //* The first symbolic parameter (HLQ=) is required. //* //* The other two depend on the jobstream being used to invoke this //* PROC, and on your Model 204 configuration. //* //* Detailed explanations are also available for the load module //* you are linking at //* //* http://m204wiki.rocketsoftware.com/index.php/M204_inst_zOS //* //M204LINK EXEC PGM=IEWL,REGION=0M, // PARM='SIZE=(2048K,200K),LIST,LET,NCAL,MAP,AC=1,RMODE=ANY' //SYSPRINT DD SYSOUT=* //* //RKOBJ204 DD DISP=SHR,DSN=&HLQ..M204V75.LOCAL.OBJLIB, // DCB=BLKSIZE=32720 // DD DISP=SHR,DSN=&HLQ..M204V75.RKOBJLIB Downloaded obj lib //* //SYSLMOD DD DISP=SHR,DSN=&HLQ..M204V75.LOADLIB Model 204 modules //* //MQ DD DISP=SHR,DSN=&MQ IBM MQ series load library //* //ACF2 DD DISP=SHR,DSN=&ACF2 ACF2 system load/object library //* // PEND ************** End of LKM204P PROC *************