Template:JZLUTREQ: Difference between revisions

From m204wiki
Jump to navigation Jump to search
No edit summary
(Automatically generated page update)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<p class="code"><nowiki>
<!--This page was automatically generated and will be automatically replaced,
//REQUTLK  PROC ROKOB204=,SYSLMOD=
so any manual edits will be lost. You've been warned.-->
<p class="code"><nowiki>//REQUTLK  PROC ROKOB204=,SYSLMOD=
//*
//*
//* z/OS JCL PROC to link those Model 204 utility load modules which
//* z/OS JCL PROC to link those Model 204 utility load modules which
Line 19: Line 20:
//ROKOB204 DD DISP=SHR,DSN=&ROKOB204
//ROKOB204 DD DISP=SHR,DSN=&ROKOB204
//SYSLMOD  DD DISP=SHR,DSN=&SYSLMOD
//SYSLMOD  DD DISP=SHR,DSN=&SYSLMOD
//SYSLIN  DD DISP=SHR,DSN=&ROKOB204(JZIAUDT)  AUDIT204
//        DD DISP=SHR,DSN=&ROKOB204(JZIMRGJ)  MERGEJ
//        DD DISP=SHR,DSN=&ROKOB204(JZITULC)  UTILC
//        DD DISP=SHR,DSN=&ROKOB204(JZIUTLJ)  UTILJ
//*
//*
//        PEND
//        PEND
Line 28: Line 33:
//              ROKOB204=<<insert DSN>>,
//              ROKOB204=<<insert DSN>>,
//              SYSLMOD=<<insert DSN>>
//              SYSLMOD=<<insert DSN>>
//SYSLIN DD *
*
* AUDIT204: blah blah ??
INCLUDE ROKOB204(AUDTOS)
ENTRY AUDIT204
NAME AUDIT204(R)
*
* UTILC:    blah blah ??
* CPRx symbols in CPRD
INCLUDE ROKOB204(UTILC)
ENTRY UTIL
NAME UTILC(R)
*
* UTILJ:    blah blah ??
INCLUDE ROKOB204(UTILJ)
ENTRY UTIL
NAME UTILJ(R)
*
* MERGEJ:  blah blah ??
INCLUDE ROKOB204(MERGEJ)
ENTRY MERGEJ
NAME MERGEJ(R)
/*
</nowiki></p>
</nowiki></p>

Latest revision as of 11:50, 17 August 2014

//REQUTLK PROC ROKOB204=,SYSLMOD= //* //* z/OS JCL PROC to link those Model 204 utility load modules which //* must be replaced during installation. Parameters: //* //* ROKOB204=dsn Dataset name of the downloaded object library //* SYSLMOD=dsn Dataset name of the link output load library - //* where the load modules will be stored //* //* For detailed explanations, see //* //* http://m204wiki.rocketsoftware.com/index.php/ - //* M204_install#zOS_link_util_req //* //REQUTLK EXEC PGM=IEWL,REGION=0M, // PARM='SIZE=(2048K,200K),LIST,LET,NCAL,MAP,AC=1,RMODE=ANY' //SYSPRINT DD SYSOUT=* //ROKOB204 DD DISP=SHR,DSN=&ROKOB204 //SYSLMOD DD DISP=SHR,DSN=&SYSLMOD //SYSLIN DD DISP=SHR,DSN=&ROKOB204(JZIAUDT) AUDIT204 // DD DISP=SHR,DSN=&ROKOB204(JZIMRGJ) MERGEJ // DD DISP=SHR,DSN=&ROKOB204(JZITULC) UTILC // DD DISP=SHR,DSN=&ROKOB204(JZIUTLJ) UTILJ //* // PEND //* //* ------------------------------------------------------------------ //* Invoke in-stream PROC: //* ------------------------------------------------------------------ //REQUTLK EXEC REQUTLK, // ROKOB204=<<insert DSN>>, // SYSLMOD=<<insert DSN>>