Template:JZJMAINT: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
(Automatically generated page update)
 
Line 6: Line 6:
//        JCLLIB ORDER=(hlq.M204V75.RKOBJLIB)                    1 <<
//        JCLLIB ORDER=(hlq.M204V75.RKOBJLIB)                    1 <<
//* ------------------------------------------------------------------
//* ------------------------------------------------------------------
//* This jobstream is used to relink the Model 204 modules with a
//* This jobstream is used to relink the Model 204 modules with a new
//* new version of Model 204 object module.  Copy it into a local TSO
//* version of RSQL and/or EVCP.  Copy it into a local TSO library
//* TSO library where you will examine the lines marked '<<' to
//* where you will examine the lines marked '<<' to to determine which
//* to determine which changes you must make, and submit the job with
//* changes you must make, and submit the job with those changes.  The
//* those changes.  The job stream is setup to relink the object
//* job stream is setup to relink the object module with ONLINE,
//* module with ONLINE, IFAM1, and IFAM4.  You may delete the steps
//* IFAM1, and IFAM4.  Delete the steps for those modules which you do
//* for those modules that you do not want to relink.
//* not have.
//*
//*
//* Lines 1-7 marked '<<' above MUST be edited and provided.
//* Lines 1-5 marked '<<' MUST be edited and provided.
//*
//*
//* 1:  Change 'hlq' to the same value provided in (2,4,6) - the
//* 1:  Change 'hlq' to the same value provided in (2,4,6) - the
Line 20: Line 20:
//*      downloaded object library
//*      downloaded object library
//*
//*
//* 2,4,6: Provide the high level qualifier(s) of all Model 204
//* 2,4,5: Provide the high level qualifier(s) of all Model 204
//*        installation DSNs
//*        installation DSNs
//*
//*
//* 3,5,7: Change modname to the name of the object module to
//* 3:     Change modname to the name of the object module (either
//*        include for relinking.
//*        RSQL or EVCP) which you use in your ONLINE
//*
//*
//* For detailed explanations, see
//* For detailed explanations, see
//*
//*
//* http://m204wiki.rocketsoftware.com/index.php/M204_inst_zOS#lkmaint
//* http://m204wiki.rocketsoftware.com/index.php/M204_mnt_zOS#relink
//*
//*
//LINKONLN EXEC LKMAINTP,
//LINKONLN EXEC LKMAINTP,
Line 42: Line 42:
//        HLQ=                                                    4<<
//        HLQ=                                                    4<<
//M204RLNK.SYSLIN DD *
//M204RLNK.SYSLIN DD *
   INCLUDE RKOBJ204(modname)                                         5<<
   INCLUDE RKOBJ204(EVCP)
   INCLUDE OLDLMOD(IFAM1)
   INCLUDE OLDLMOD(IFAM1)
   ENTRY  IFII1
   ENTRY  IFII1
Line 48: Line 48:
/*
/*
//LINKIFM4 EXEC LKMAINTP,
//LINKIFM4 EXEC LKMAINTP,
//        HLQ=                                                    6<<
//        HLQ=                                                    5<<
//M204RLNK.SYSLIN DD *
//M204RLNK.SYSLIN DD *
   INCLUDE RKOBJ204(modname)                                         7<<
   INCLUDE RKOBJ204(EVCP)
   INCLUDE OLDLMOD(IFAM4)
   INCLUDE OLDLMOD(IFAM4)
   ENTRY  IFAMIV
   ENTRY  IFAMIV
   NAME    IFAM4(R)
   NAME    IFAM4(R)
</nowiki></p>
</nowiki></p>

Latest revision as of 01:12, 18 November 2014

//name JOB jobCardParameters //* // JCLLIB ORDER=(hlq.M204V75.RKOBJLIB) 1 << //* ------------------------------------------------------------------ //* This jobstream is used to relink the Model 204 modules with a new //* version of RSQL and/or EVCP. Copy it into a local TSO library //* where you will examine the lines marked '<<' to to determine which //* changes you must make, and submit the job with those changes. The //* job stream is setup to relink the object module with ONLINE, //* IFAM1, and IFAM4. Delete the steps for those modules which you do //* not have. //* //* Lines 1-5 marked '<<' MUST be edited and provided. //* //* 1: Change 'hlq' to the same value provided in (2,4,6) - the //* value inside parentheses will then be the DSN of the //* downloaded object library //* //* 2,4,5: Provide the high level qualifier(s) of all Model 204 //* installation DSNs //* //* 3: Change modname to the name of the object module (either //* RSQL or EVCP) which you use in your ONLINE //* //* For detailed explanations, see //* //* http://m204wiki.rocketsoftware.com/index.php/M204_mnt_zOS#relink //* //LINKONLN EXEC LKMAINTP, // HLQ= 2<< //M204RLNK.SYSLIN DD * INCLUDE RKOBJ204(modname) 3<< INCLUDE OLDLMOD(ONLINE) ENTRY MAINTASK ALIAS BATCH204 NAME ONLINE(R) /* //LINKIFM1 EXEC LKMAINTP, // HLQ= 4<< //M204RLNK.SYSLIN DD * INCLUDE RKOBJ204(EVCP) INCLUDE OLDLMOD(IFAM1) ENTRY IFII1 NAME IFAM1(R) /* //LINKIFM4 EXEC LKMAINTP, // HLQ= 5<< //M204RLNK.SYSLIN DD * INCLUDE RKOBJ204(EVCP) INCLUDE OLDLMOD(IFAM4) ENTRY IFAMIV NAME IFAM4(R)