Upgrading to Model 204 version 7.5 on IBM z/OS: Difference between revisions

From m204wiki
Jump to navigation Jump to search
 
(191 intermediate revisions by 7 users not shown)
Line 1: Line 1:
This page describes the installation steps for <var class="product">Model 204</var> version 7.5 on the IBM z/OS operating system.
#REDIRECT [[Model 204 installation on IBM z/OS]]
<span style="color:#BA0000"><b>Note:</b> This page is currently under construction.</span>
<table><tr><td><b>Model 204 version 7.5 is an upgrade</b> to Model 204 version 7.4.
<p>In order to install version 7.5, <b>you must have version 7.4 and the latest Autofix set of Early Warnings installed</b> on your system.</p> </td></tr></table>
With 7.4 and all Early Warnings installed, to upgrade to version 7.5 simply download, upload, and link the 7.5 object modules available from the downloads page.
Details are provided below.
<div class="toclimit-3">__TOC__</div>
==Before you begin==
<ul>
<li>For system requirements for this installation, see the [[Release notes for Model 204 version 7.5#Operating system requirements|7.5 Release notes]].</li>
<li>Ensure that you have a [[Rocket M204 user ID]] to use for downloads (if you have a Sirius user ID, that is sufficient).</li>
</ul>
<div id="steps"></div>
 
==Overview of installation steps==
This section summarizes the steps for upgrading to <var class="product">Model 204</var> version 7.5. Details for each step are provided later on the page.
An [[#Example_workflow_for_7.5:_download_through_installation|example workflow]] is provided at the end of the page.
<ol>
<li><p>Use your [[Rocket M204 user ID]] to [[#downloading|download]] the Model 204 object library and the Model 204 macro library.</p></li>
 
<li>[[#uploading|FTP]] the downloaded components to the z/OS system on the IBM mainframe.</li>
<li>[[#bldLibs|Build]] the RKOBJLIB object library and RKMACLIB macro library. (Once you have built these libraries, [[#notouch|<b>do not</b> modify them]].)</li>
<li>Submit the job to [[#allocating|allocate the other data sets]] required for installation.</li>
<li>If you have your own user $functions (FUNU), you must [[#FUNU_7.5|modify FUNU for 64-bit addressing]] considerations and store the modified source in your local source library.
<p>Also store any user-defined messages (MSGU) in your local source library.</p>
<p>Then [[#asmFUNU|assemble]] FUNU (and MSGU, if applicable), with the output object file stored in your local object library.</p></li>
<li>If you use an external authorizer (such as RACF) for <var class="product">Model 204</var>, the security module is named <var class="term">xxxx</var>PARM. [[#secparm|Assemble <i>xxxx</i>PARM]]; the object file is stored in your local object library. If you use the dynamic <var class="term">xxxx</var>PARM configuration, link <var class="term">xxxx</var>PARM into the <var class="product">Model 204</var> load library.</li>
<li>Link the [[#lkonln|ONLINE]] (and, if you use them, the [[#link_ifam1|IFAM1]] and [[#link_ifam4|IFAM4]]) load modules.</li>
<li>Link the <var class="product">Model 204</var> [[#lkutils|utility load modules]].</li>
<li>If you use the CICS interface, customize [[#cics|the interface]] and then assemble and link the CICS modules.</li>
<li>If you use the TSO interface, assemble and link-edit the [[#tso|TSO]] source modules.</li>
<li>If you use SoftSpy, upgrade [[#softspy|SoftSpy]] for 7.5.</li>
</ol>
 
==Components for installation==
{{Template:Model 204 installation components}}
==Building the object and macro libraries==
<div id="downloading"></div>
===Downloading===
<!--Caution: <div> above-->
<p>
On the [https://model204.rocketsoftware.com/maint/objlist Model 204 object file download page], click the <b>Download object file</b> link beside the object library that you want.</p>
<p>
On the [https://model204.rocketsoftware.com/maint/maclist Model 204 macro library download page], click the <b>Download macro library</b> link beside the macro library that you want.</p>
<div id="uploading"></div>
 
===Uploading (FTP)===
<!--Caution: <div> above-->
Once the object file and macro library are downloaded to the workstation, FTP them to the z/OS system on the IBM mainframe.
Specify these characteristics for the upload files:
<table>
<tr><th>transfer format</th> <td>binary</td></tr>
<tr><th>record format</th> <td>FB</td></tr>
<tr><th>record size</th> <td>80 for object and macro libraries</td></tr>
<tr><th>block size</th> <td>6400 for object and macro libraries</td></tr>
<tr><th>storage size for both</th><td>primary: 10 CYL; secondary: 5 CYL</td></tr>
</table>
For details on how to download and upload, see [[Downloading and uploading Model 204 installation components]].
<div id="bldLibs"></div>
===Job stream to build the object and macro libraries===
<!--Caution: <div> above-->
Once you have uploaded the object and macro library input streams to the mainframe, use the following approach to build the object and macro libraries:
<ol>
<li>[http://sirius-software.com/download/new204lb.txt Click here to access] the NEW204LB job stream.
<li>Place the job stream into your local TSO library.
<li>On the first line, modify the JOB card according to your local standards.
<li>On the final four lines, marked <code>2 &lt;&lt;</code> ... <code>5 &lt;&lt;</code> on the right:
<ol style="list-style-type:lower-alpha;">
<li>Modify the <code>VERSION=</code> parameter, specifying the two-digit version of <var class="product">Model 204</var> you are installing.
<li>Modify the <code>HLQ=</code> parameter, specifying the high-level qualifier(s) of all <var class="product">Model 204</var> installation datasets.
<li>Modify the <code>OBJINP=</code> parameter, using the DSN of the object library input file you uploaded to the mainframe.
<li>Modify the <code>MACINP=</code> parameter, using the DSN of the macro library input file you uploaded to the mainframe.
</ol>
</ol>
<div id="notouch"></div>
 
===Do not modify RKOBJLIB or RKMACLIB===
<!--Caution: <div> above-->
Once you have built the object library ("RKOBJLIB") and macro library ("RKMACLIB") on your z/OS system, <b>do not</b> modify them in any way.
For example, <b>do not</b> store other members into the object library; it should only contain the members as supplied in a download from the web site.  For those object files which you might assemble (for example, FUNU or RACFPARM), you should place those into your local object library.
<div id="allocating"></div>
 
===RKOBJLIB README file===
README, a member of RKOBJLIB, contains details on the object files and installation steps. Once you have built RKOBJLIB, you can use README as an installation checklist if desired.
 
==Allocating data sets==
<!--Caution: <div> above-->
There are three data sets used during Model 204 installation:
<ul>
<li>data set for the Model 204 load modules
<li>data set for the local source library
<li>data set for the local object library
</ul>
The data set for the load modules will contain, after linking, the modules for the Model 204 product, including: ONLINE, IFAM1, and IFAM4. The local source library is used to store the customized source for modules such as FUNU, MSGU, and ACF2PARM, RACFPARM, or TOPSPARM.
When the source is assembled, it is stored in the local object library.
 
After [[#Downloading|downloading the object library]], one of the members of RKOBJLIB is named [[Model 204 data set allocation job stream for IBM z/OS|JALINSJ]].
 
===Job stream to allocate data sets===
 
<code>JALINSJ</code> is a job stream to allocate data sets for the installation.
 
<ol>
<li>Copy <code>JALINSJ</code> into a local TSO library.
<li>Edit your copy of <code>JALINSJ</code> for your configuration:
<ul>
<li>Replace the first line with a JOB card.
<li>Edit the lines, near the top of the job stream, marked with numbers followed by <code>&lt;&lt;</code>. The numbers correspond to numbered steps in the comments following these lines.
</ul>
<li>Submit the <code>JALINSJ</code> job to allocate the data set.
</ol>
<div id="lkonln"></div>
 
==Linking the Model 204 ONLINE load module==
<!--Caution: <div> above-->
<div id="onlnTable"></div>
<blockquote class="note"><b>Note:</b> Customized modules must be [[#FUNU_7.5|modified]] (if needed) and [[#Assembling customized modules into your local object library (LOCAL.OBJLIB)|assembled]] <b>before you link the ONLINE/IFAM1/IFAM4</b> load modules.</blockquote>
After [[#Downloading|downloading the object library]], one of the members of RKOBJLIB is named <code>LKONLNJ</code>.
 
[[Model 204 ONLINE link job stream for z/OS|LKONLNJ]] is a job stream to link the <var class="product">Model 204</var> ONLINE load module.
<blockquote class="note"><b>Notes:</b>
<ul>
<li>There is not a separate link step for BATCH204.  It is not
maintained as a separate module; the same module as ONLINE is used,
with a BATCH204 alias.
<li>The object library has the authorization zap (covering your licensed processors) preapplied, so you <b>do not</b> need to get a new one from the web site. <br />(The preapplied zap will authorize Model 204 itself and any separately purchased products such as MP/204 and SirScan.)
<li>The object library also has the maintenance zaps (as of the time the stream was
prepared) preapplied, so you <b>do not</b> need to apply any maintenance as part of this installation. (You will only need to apply new maintenance for this release when it becomes available.)
</ul>
</blockquote>
<div id="LKONLNJ"></div>
===Job stream to link ONLINE===
<!--Caution: <div> above-->
 
<ol>
<li>Copy <code>LKONLNJ</code> into a local TSO library.
<li>Edit your copy of <code>LKONLNJ</code> for your configuration:
<ul>
<li>Replace the first line with a JOB card.
<li>Edit the lines, near the top of the job stream, marked with 1-4 followed by <code>&lt;&lt;</code>. The numbers correspond to numbered steps in the comments.
<li>As needed, edit the lines after <code>SYSLIN DD *</code> that are marked with <code>&lt;&lt;</code>.  See the comments at the top of the <code>SYSLIN</code> sections (<b>A</b>-<b>C</b>) for instructions.
</ul>
<li>Submit the <code>LKONLNJ</code> job to link the ONLINE load module.
</ol>
The instructions in <code>LKONLNJ</code> should be sufficient to explain the edits you need to make. More details about link-editing the ONLINE load module are provided in the following table.
<table class="thJustBold">
<tr><th>1</th><td>You must specify a value for the HLQ symbolic parameter in the EXEC LKM204P statement.  The value of HLQ corresponds to the high level qualifier used for the DSN for the downloaded object library, the Model204 load library in addition to the other datasets that are required for installation.
</td></tr>
<tr><th>2</th><td>One of the modifications is <b>always required</b>, based on whether the ONLINE is to use RSQL (for Connect*) or not:
<ul>
<li>To link an ONLINE which <b>does</b> use RSQL, you must uncomment  the INCLUDE RKOBJ204(<b>LKSQLONL</b>) statement.
<li>To link an ONLINE which <b>does not</b> use RSQL, you must uncomment the INCLUDE RKOBJ204(<b>LKNOSONL</b>) statement.
</ul>
<b>Do not</b> uncomment both of them.
</td></tr>
<tr><th>3</th><td>The other modification frequently needed is to use an external authorizer such as RACF or ACF2.  If you use an external authorizer, you must:
<ul>
<li>[[#asm|Assemble the xxxPARM]] for your external authorizer, adding the object file (such as RACFPARM or ACF2PARM) to your local object library.
<li>In the SYSLIN DD *, uncomment the appropriate INCLUDE statement(s) for your external authorizer. <blockquote class="note"><b>Notes:</b><ul><li>Uncomment either the "static" or "dynamic" INCLUDE statement, depending upon your configuration.<li>If you use ACF2, there are two INCLUDE statements to be un-commented; one refers to your system ACF2 library.  You must also provide the DSN for the ACF2 library in the ACF2 symbolic parameter in the EXEC LKM204P statement.</ul></blockquote>
</ul>
</td></tr>
<tr><th>4</th><td>If you have other programs that you assemble for your Model 204 ONLINE module, for example, [[#FUNU|FUNU]], they should be assembled into your local object library.  You <strong>do not</strong> need to add additional INCLUDE statements for FUNU or other locally assembled object files; they are already present in the include streams from RKOBJLIB.
</td></tr>
<tr><th>5</th><td>If you have an MQ series load library, you should set the MQ symbolic parameter to the correct DSN in the EXEC LKM204P statement. This allows you to use the MQ Series feature of <var class="product">Model 204</var>, either if you are already authorized for it, or to support a trial of it, without requiring relinking of the load module. You must also uncomment the INCLUDE MQ statement in the SYSLIN input.
</td></tr>
</table>
 
<div id="link_ifam1"></div>
 
==Linking the Model 204 IFAM1 load module==
<!--Caution: <div> above-->
After [[#Downloading|downloading the object library]], one of the members of RKOBJLIB is
named <code>LKIFAM1J</code>.
 
<span class="plainlinks">[http://m204wiki.rocketsoftware.com/index.php/Model_204_IFAM1_link_job_stream_for_IBM_z/OS?title=Model_204_IFAM1_link_job_stream_for_IBM_z/OS&target=blank LKIFAM1J]</span> is a job stream to link the <var class="product">Model 204</var> IFAM1 load module.
 
===Job stream to link IFAM1===
<ol>
<li>Copy <code>LKIFAM1J</code> into a local TSO library.
<li>Edit your copy of <code>LKIFAM1J</code> for your configuration:
<ul>
<li>Replace the first line with a JOB card.
<li>Edit the lines, near the top of the job stream, marked with numbers followed by <code>&lt;&lt;</code>. The numbers correspond to numbered steps in the comments following these lines.
</ul>
<li>Submit the <code>LKIFAM1J</code> job to link the IFAM1 load module.
</ol>
 
<div id="link_ifam4"></div>
 
==Linking the Model 204 IFAM4 load module==
<!--Caution: <div> above-->
 
After [[#Downloading|downloading the object library]], one of the members of RKOBJLIB is
named <code>LKIFAM4J</code>.
 
<span class="plainlinks">[http://m204wiki.rocketsoftware.com/index.php/Model_204_IFAM4_link_job_stream_for_IBM_z/OS?title=Model_204_IFAM4_link_job_stream_for_IBM_z/OS&target=blank LKIFAM4J]</span> is a job stream to link the <var class="product">Model 204</var> IFAM4 load module.
===Job stream to link IFAM4===
 
<ol>
<li>Copy <code>LKIFAM4J</code> into a local TSO library.
<li>Edit your copy of <code>LKIFAM4J</code> for your configuration:
<ul>
<li>Replace the first line with a JOB card.
<li>Edit the lines, near the top of the job stream, marked with numbers followed by <code>&lt;&lt;</code>. The numbers correspond to numbered steps in the comments following these lines.
</ul>
<li>Submit the <code>LKIFAM4J</code> job to link the IFAM4 load module.
</ol>
<div id="lkutils"></div>
<!--Caution: <div> above-->
 
==Linking the Model 204 utility load modules==
<!--Caution: <div> above-->
Most of the utility load modules from Model 204 version 7.4 will continue to perform correctly when used with version 7.5.
However, you must use the 7.5 version of the following utilities, which are sensitive to the Model 204 journal and checkpoint format:
<table>
<tr><td><b>AUDIT204</b></td> <td>Extract from journal, with report stats and analysis</td></tr>
<tr><td><b>MERGEJ</b></td> <td>Merge concurrent journal streams</td></tr>
<tr><td><b>UTILC</b></td> <td>Information from checkpoint stream</td></tr>
<tr><td><b>UTILJ</b></td> <td>Information from journal stream; add EOF markers</td></tr>
</table>
===Job stream to link utility load modules===
The downloaded object library contains a member named [[Model 204 utilities link job stream for IBM z/OS|LKALLUTJ]], which is a job stream to link the <var class="product">Model 204</var> utility load modules.
<ol>
<li>Copy <code>LKALLUTJ</code> into a local TSO library.
<li>Edit your copy of <code>LKALLUTJ</code> for your configuration:
<ul>
<li>Replace the first line with a JOB card.
<li>Supply your installation high level qualifier(s) in the following lines marked with <code>&lt;&lt;</code>:
<ul>
<li>for <code>hlq</code> in the <code>JCLLIB ORDER=(hlq.</code>... line after the <code>JOB</code> card
<li>after <code>HLQ=</code>, on the line after <code>EXEC LKALLUTP</code> at the bottom of the job stream
</ul>
</ul>
<li>Submit <code>LKALLUTJ</code> to link the utility load modules.
</ol>
<div id="asm"></div>
 
==Assembling customized modules into your local object library (LOCAL.OBJLIB)==
<!--Caution: <div> above-->
Copy the module (such as FUNU, MSGU, ACF2PARM, RACFPARM, TOPSPARM, or CDBT) into your local source library, if you have not already done so. (The local source library is not version-specific, so modules copied into it can be used for future installations.)
 
The downloaded object library contains a member named [[Model 204 local member assembly job stream for IBM z/OS|JASMJ]].
 
<code>JASMJ</code> is a job stream to assemble a member from your Model 204 local source library into your local object library (LOCAL.OBJLIB).
 
===Job stream to assemble modules into your local object library===
 
<ol>
<li>Copy <code>JASMJ</code> into a local TSO library.
<li>Edit your copy of <code>JASMJ</code> for your configuration:
<ul>
<li>Replace the first line with a JOB card.
<li>Supply your installation high level qualifier(s) in the following lines marked with <code>&lt;&lt;</code>:
<ul>
<li>for <code>hlq</code> in the <code>JCLLIB ORDER=(hlq.</code>... line after the <code>JOB</code> card
<li>after <code>HLQ=</code>, on the ASM line at the bottom of the job stream
</ul>
<li>Provide the member name to assemble (such as FUNU, MSGU, RACFPARM) on the <code>MEM=</code> line.
</ul>
<li>Submit <code>JASMJ</code> to assemble the module.
</ol>
<div id="lkcram"></div>
<div id="secparm"></div>
 
==Setting up the security module==
<!--Caution: <div> above-->
If you use a security interface, such as ACF2, RACF, or Top Secret:
 
<ol>
<li> [[#Assembling customized modules into your local object library (LOCAL.OBJLIB) |Assemble]] the security module:
ACF2PARM, RACFPARM, or TOPSPARM.</li>
<li>(Optional) Link the security module as described below if you want it to be dynamically loaded.</li>
</ol>
 
===Linking security modules===
If you want Model 204 to dynamically load your security module during Model 204 ACF2, RACF, or TOPSECRET interface initialization, then you must link the corresponding security parameter module.
 
<ol>
<li>Copy [[Model 204 security module link job stream for IBM z/OS|LKSECRJ]] into a local TSO library.
<li>Edit your copy of <code>LKSECRJ</code> for your configuration:
<ul>
<li>Replace the first line with a JOB card.
<li>Edit the lines, near the top of the job stream, marked with numbers followed by <code>&lt;&lt;</code>. The numbers correspond to numbered steps in the comments following these lines.
</ul>
<li>Submit the <code>LKSECRJ</code> job to link-edit the security parameter module (ACF2PARM, RACFPARM, or TOPSPARM).
</ol>
 
Dynamic loading lets you modify the security parameters without having to relink Model 204, which would be required if the parameter module were linked into Model 204 directly.
 
<div id="cics"></div>
 
==CICS interface==
<p class="note"><b>Note:</b> It is not necessary to install the CICS interface, if it has been installed for a previous version of Model 204. The load modules from the older version are completely compatible with version 7.5 of Model 204.
<!--Caution: <div> above-->
 
===Requirements===
<ul>
<li>CICS Transaction Server support
<p>Rocket M204 supports the CICS Transaction Server versions 3.1, 3.2, 4.1, and 4.2.</p></li>
<li>Supporting TPROCESS COBOL applications
<p>You must relink any CICS TPROCESS applications using AMODE=31, as AMODE=24 is not supported.</p></li>
</ul>
===CICS Interface overview information===
For an overview of the CICS Interface, including storage requirements and a listing of CICS interface components, see [[CICS interface]].
===Installation steps for the CICS interface===
 
To install the CICS interface:
<ol>
<li>Customize the interface by copying the CICFG copy member into your local source library and editing it as needed.
<p>For information on customizations needed for using the CICS Standard Mapping Service, see [[CICS interface]].</p></li>
<li>Update the CICS System Definition (CSD) using one of the following methods:
<ul><li>Resource Definition Online (CEDA). The supplied member CEDAM204 in RKMACLIB provides an example of the required PCT, PPT, and PLT definitions.</li>
<li>The IBM DFHSCDUP offline utility, to process the definitions in batch.</li>
</ul>
<li>Assemble and link the CICS modules. To do this, run job [[Model 204 CICS module assembly job stream for_ IBM z/OS|LKCICSJ]].</li>
</ol>
 
===Updating the CICS System Definition (CSD)===
You can update the CSD using either CEDA or the DFHCSDUP utility and the CEDAM204 member of RKMACLIB. Use the values in the following table, where appropriate, for the method you choose. Information about
using CEDA follows the table.
<b>CICS System Definition values</b>
<table>
<tr><th>User program</th> <th>Program name</th> <th>Transaction ID</th> <th>Modifiable <br>CICFG symbol</th>
<th>TWA size</th></tr>
<tr><td>IFAM2 pseudo conversational</td> <td>DFHPSF</td> <td>DFHPSF is accessed by using a CICS LINK. It is never
invoked with a transaction ID from a terminal.</td> <td /> <td /><tr>
<tr><td>Full-screen interface</td> <td>M204PSFS</td> <td>M204</td> <td>&TRN</td> <td>88</td></tr>
<tr><td>Screen copy transaction</td> <td>M204CRPS</td> <td>U204</td> <td /> <td /></tr>
<tr><td>Screen print transaction</td> <td>M204PRNT</td> <td>P204</td> <td>&COP</td> <td>88</td></tr>
</table>
CEDA (the Resource Definition Online transaction) or the DFHCSDUP utility defines the transactions and programs to the CSD file.
If you are not using CEDAM204 member, then define the transactions and programs using CEDA
and the values in the previous table, as in the following example:
<p class="syntax">CEDA DEFine PROG(program_name)
  GRoup(group_name)
  LANGuage(ASSEMBLER)
  RELoad(NO)
  RESident(NO) (Except for DFHPSF, RESident(YES))
  RSL(PUBLIC)
  STatus(ENABLED)
CEDA DEFine TRANsaction(trans_ID)
  GRoup(group_name)
  PROgram(program_name)
  TWASIZE(twa_size_value)
  .
  .
  .
  RSL(PUBLIC)
  .
  .
  .
CEDA CHeck GRoup(group_name) </p>
You can use a transaction ID for a user program that is different from the value
shown in the previous table; however, if you do so, you must change the associated
CICFG symbol shown in the table.
As shown in the example above, group_name is any valid group name for the
user site.
<p class="note"> <b>Note:</b> Remember to add the groups to the GRPLIST for the particular CICS
region. If the groups are not added, they are not installed during each CICS initialization.</p>
<div id="tso"></div>
===Assembling and linking CICS modules===
 
The downloaded object library contains a member named [[Model 204 CICS module assembly job stream for_ IBM z/OS|LKCICSJ]]. LKCICSJ is a job stream to assemble and link the <var class="product">Model 204</var> CICS modules.
<ol>
<li>Copy <code>LKCICSJ</code> into a local TSO library.
<li>Edit your copy of <code>LKCICSJ</code> for your configuration:
<ul>
<li>Replace the first line with a JOB card.
<li>Supply your Model 204 installation high level qualifier(s) in the following lines marked with <code>&lt;&lt;</code>:
<ul>
<li>for <code>hlq</code> in the <code>JCLLIB ORDER=(hlq.</code>... line after the <code>JOB</code> card
<li>after <code>HLQ=</code>, on the line after <code>EXEC LKALLUTP</code> at the bottom of the job stream
</ul>
<li>Supply the high level qualifier(s) for your CICS libraries on the <code>CICSHLQ</code> line.</li>
</ul>
<li>Submit <code>LKCICSJ</code> to assemble and link the CICS module.
</ol>
 
==TSO interface==
<!--Caution: <div> above-->
The Model 204 TSO Interface enables the TSO user to communicate with a Model 204 Online.
The TSO Interface consists of two assembly language modules, TSFS and TSUL, whose source is located in the macro library. The modules are completely reentrant, reusable, and refreshable. Installation requires assembly and link-editing of the TSO source modules.
<p>To install the TSO interface:</p>
<ol>
<li>If you are using TSO extensions, modify TSFS in the local source library by changing:
<p class="code">&TSOV SETC 'TSO' </p>
<p>to:</p>
<p class="code">&TSOV SETC 'TSOE'</p></li>
<p>Changing the &TSOV SETC 'TSO' code in TSFS causes assembly of the NOEDIT form of the TPUT macro in the TSFS module. The NOEDIT form, required for 3270 extended data streams, allows proper handling of colors or highlighting in TSO extensions. NOEDIT is recommended for all TSO extensions.</p>
<li>Assemble and link the TSO modules, using the <code>LKTSOJ</code> job.</li>
</ol>
===Job stream to assemble TSO modules===
 
The downloaded object library contains a member named [[Model 204 utilities link job stream for IBM z/OS|LKTSOJ]], which is a job stream to assemble and link the <var class="product">Model 204</var> TSO modules.
<ol>
<li>Copy <code>LKTSOJ</code> into a local TSO library.
<li>Edit your copy of <code>LKTSOJ</code> for your configuration:
<ul>
<li>Replace the first line with a JOB card.
<li>Supply your installation high level qualifier(s) in the following lines marked with <code>&lt;&lt;</code>:
<ul>
<li>for <code>hlq</code> in the <code>JCLLIB ORDER=(hlq.</code>... line after the <code>JOB</code> card
<li>after <code>HLQ=</code>, on the line after <code>EXEC LKALLUTP</code> at the bottom of the job stream
</ul>
</ul>
<li>Submit <code>LKTSOJ</code> to assemble and link the TSO modules.
</ol>
<div id="FUNU"></div>
 
==FUNU and optional MSGU==
<!--Caution: <div> above-->
This section lists installation considerations if you have your own user-written $functions module (FUNU).
<blockquote class="note">
<b>Notes:</b>
<ul>
<li>If you have your own FUNU, it must be assembled <b>before linking the ONLINE/IFAM1/IFAM4</b> load modules.
<li>Some customers who have their own FUNU also have their own MSGU module.  If so, MSGU must also be assembled before linking
ONLINE/IFAM1/IFAM4.
</ul>
</blockquote>
<div id="FUNU_7.5"></div>
===FUNU changes for version 7.5===
<!--Caution: <div> above-->
{{Template:FUNU changes for 7.5}}
<div id="asmFUNU"></div>
===FUNU assembly===
<!--Caution: <div> above-->
Copy the source into your local source library.
After making any changes required for the version of <var class="product">Model 204</var> you are installing, run JASMJ to [[#asm|assemble FUNU]] into your local object library.  (This job will also be used to assemble MSGU, if you have it.)
<p>You do <b>not</b> need to insert any INCLUDE statements for either FUNU nor MSGU; they are already present in the INCLUDE member (LKSQLONL or LKNOSONL) provided in the downloaded object library.</p>
<div id="softspy"></div>
 
==Upgrading SoftSpy for 7.5==
<!--Caution: <div> above-->
The SoftSpy procedure file, SPYPROC, is distributed in a dump format that you must download to a workstation file (in binary form), upload to your z/OS system, and then RESTORE into a Model 204 SOUL file.
Download SPYPROC from the [https://m204.rocketsoftware.com/maint/ullist?nickname=ROCKET SOUL files download page].
For detailed instructions, see [http://m204wiki.rocketsoftware.com/index.php?title=Web_help_download_SOUL_files Downloading and restoring SOUL files].
 
==Verifying your Model 204 7.5 installation==
To perform an initial verification that your 7.5 installation was successful, perform the following tasks:
<ul>
<li>Issue the ROCKET command</li>
<li>Issue the DISPLAY ZAPS command</li>
<li>Invoke DICTADMIN</li>
<li>Invoke SUBSYSMGMT</li>
</ul>
 
==Example workflow for 7.5: download through installation==
<table><tr><th>Reminder: This section shows one typical installation workflow; the previous sections on this page provide the actual installation steps in detail.</th></tr></table>
This is an example for a site which does not use RSQL.
It uses the RACF external authorizer, and it does not have its own FUNU. The IBM system MQ loadlib is <code>MQSERIES.SCSQLOAD</code> (this is typical in z/OS).
The high level qualifier in this example is MYBUILD.
The other item needed is the member name <code>MYBLDOB</code>, which is chosen arbitrarily for this example, and the following DSNs:
<ul>
<li><code>MYBUILD.M204V75.RKOBJLIB.DISTRIB</code>
<li><code>MYBUILD.M204V75.RKOBJLIB</code>
<li><code>MYBUILD.M204V75.RKMACLIB.DISTRIB</code>
<li><code>MYBUILD.M204V75.RKMACLIB</code>
<li><code>MYBUILD.M204V75.LOCAL.OBJLIB</code>
<li><code>MYBUILD.M204V75.LOADLIB</code>
</ul>
===Build RKOBJLIB===
<ol>
 
<li>Download the object library (M204V75.OBJ) from the downloads page.
<li>Upload to the mainframe, in <b>Binary</b> format, with settings FB/80/6400, as <code>MYBUILD.M204V75.RKOBJLIB.DISTRIB</code>.
<li>Download the macro library (M204V75_ZOS.MAC) from the downloads page.
<li>Upload to the mainframe, in <b>Binary</b> format, with settings FB/80/6400, as <code>MYBUILD.M204V75.RKMACLIB.DISTRIB</code>.
<li>Create the member MYBLDOB in my TSO library from a [http://sirius-software.com/download/new204lb.txt download] of the job stream to build the object and macro libraries, using the following at the end of the job stream:
<p class="code">//BLD EXEC NEW204LB,VERSION=75,
//        HLQ=MYBUILD,
//        OBJINP=MYBUILD.M204V75.RKOBJLIB.DISTRIB,
//        MACINP=MYBUILD.M204V75.RKMACLIB.DISTRIB
</p>
<li>Run MYBLDOB from my TSO library; this deletes and then creates <code>MYBUILD.M204V75.RKOBJLIB</code> and
<code>MYBUILD.M204V75.RKMACLIB</code>.
 
<li>Upload to the mainframe, in <b>Binary</b> format, with settings FB/80/6400, as <code>MYBUILD.M204V75.RKMACLIB.DISTRIB</code>.
<li>Create the member MYBLDDS in my TSO library by copying
the job stream from [[Model 204 data set allocation job stream for IBM z/OS|JALINSJ]], using the following at the end of the job stream:
<p class="code">//BLD EXEC JALINSP,
// HLQ=MYBUILD
</p>
 
<li>Run MYBLDDS from my TSO library; this allocates an empty loadlib data set for the Model 204 load modules, an empty local source library for the customized source files and an empty local object library for the customized local object modules, with the following names: <code>MYBUILD.M204V75.LOADLIB</code>,  <code>MYBUILD.M204.LOCAL.SRCLIB</code> and <code>MYBUILD.M204V75.LOCAL.OBJLIB</code>.
 
</ol>
 
===Assemble and link===
<ol start="10">
<li>Copy the RACFPARM source to the <code>MYBUILD.M204.LOCAL.SRCLIB</code> and make any necessary modifcations.
<li>Create the member JASMSECJ in my TSO library by copying
the job stream from [[Model 204 local member assembly job stream for IBM z/OS|JASMJ]], using the following at the end of the job stream:
<p class="code">//ASM    EXEC JASMP,HLQ=MYBUILD,   
//            MEM=RACFPARM         
</p>
<li>Run JASMSECJ from my TSO library; this assembles the RACFPARM source file in the <code>MYBUILD.M204.LOCAL.SRCLIB</code> and stores the object in <code>MYBUILD.M204V75.LOCAL.OBJLIB</code>.
<li>Copy the member LKONLNJ from <code>MYBUILD.M204V75.RKOBJLIB</code> to my TSO libary, and customize LKONLN as follows:
<ul>
<li>Make these changes at the top of the job stream:
<p class="code">//            JCLLIB ORDER=(MYBUILD.M204V75.RKOBJLIB)
//LKONLN EXEC LKM204P,
//            HLQ=MYBUILD,
//            MQ=MQSERIES.SCSQLOAD
</p>
<li>Uncomment the <code>INCLUDE</code> line for LKNOSONL (that is, without RSQL).
<li>Uncomment the <code>INCLUDE</code> line for MQ.
<li>Uncomment the <code>INCLUDE</code> line for your external authorizer module (such as RACFOS and RACFPARM).
<li>Submit LKONLNJ from my TSO library, this creates ONLINE (and BATCH204 alias) in MYBUILD.M204V75.LOADLIB.
</ul>
<li>Perform a simple smoke test: run BATCH204 with 'DISPLAY ZAPS' and 'ROCKET' commands.
<li>To link the utilities, copy member LKALLUTJ from <code>MYBUILD.M204V75.RKOBJLIB</code> to my TSO library, and see all <code>&lt;&lt;</code> lines to customize for my site; submit this job stream.
<li>Ensure that any JCL that performs deferred index sorting for <var class="product">Model 204</var> version 7.5
(typically, FLOD jobs) uses the new <code>MYBUILD.M204V75.LOADLIB</code> for the E15 (OI15OS) and E35 (OI35OS) sort exits.
</ol>
 
==See also==
<ul>
<li>[[Model 204 installation on IBM z/VM CMS]]
<li>[[Model 204 installation on IBM z/VSE]]
</ul>
 
==Additional information==
Refer to the <i>[http://m204wiki.rocketsoftware.com/images/d/de/M204_V7R4_zOS_Install.pdf Rocket Model 204 Installation Guide for IBM z/OS, version 7.4]</i>, for additional installation information.
[[Category:Installation]]

Latest revision as of 21:09, 6 February 2017