Model 204 LINKONLN job stream for IBM z/VSE: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (add category)
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
The LINKONLN job stream is used to link and catalog the Model 204 ONLINE phase during [[Upgrading to Model 204 version 7.5 on IBM z/VSE|installation on IBM z/VSE]].  
The LINKONLN job stream is used to link and catalog the Model 204 ONLINE phase during [[Model 204 installation on IBM z/VSE|installation on IBM z/VSE]].  


See the comments in the code below for instructions on editing LINKONLN.  
See the comments in the code below for instructions on editing LINKONLN.  


====LINKONLN JCL example====
====LINKONLN JCL example====
<p class="code"><nowiki>// JOB LINKONLN                                                              
<p class="code"><nowiki>// JOB LINKONLN
* ********************************************************************      
* ********************************************************************
*                          Rocket Model 204                                
*                          Rocket Model 204
*                                02/15                                      
*                                02/15
* ********************************************************************      
* ********************************************************************
*  LINKONLN links/catalogs the MODEL 204 ONLINE phase                        
*  LINKONLN links/catalogs the MODEL 204 ONLINE phase
/*                                                                          
/*
/*  Note: if using LE functions in MODEL 204,                                
/*  Note: if using LE functions in MODEL 204,
/*    - add INCLUDE statements for LE modules                              
/*    - add INCLUDE statements for LE modules
/*    - concatenate appropriate sublibrary to search.                      
/*    - concatenate appropriate sublibrary to search.
                                                                             
 
/*  Note: M204 VSE TCP requires access to CSI TCPIP 15F or later.            
/*  Note: M204 VSE TCP requires access to CSI TCPIP 15F or later.
/*        Add DLBL/EXTENT and LIBDEF OBJ info to this job if needed.        
/*        Add DLBL/EXTENT and LIBDEF OBJ info to this job if needed.
/*        INCLUDE IPNRSTUB will allow TCPNAME to specify SSID nn in          
/*        INCLUDE IPNRSTUB will allow TCPNAME to specify SSID nn in
/*        Online User0 parm and is also required.                            
/*        Online User0 parm and is also required.
/*                                                                          
/*
// EXEC PROC=M204JCL      DLBL for JCL sublibrary                            
// EXEC PROC=M204JCL      DLBL for JCL sublibrary
// LIBDEF PROC,SEARCH=M204LIB.V750                                          
// LIBDEF PROC,SEARCH=M204LIB.V750
// EXEC PROC=M204V750    DLBL for V750 M204 library  
// EXEC PROC=M204V750    DLBL for V750 M204 library
// LIBDEF PHASE,CATALOG=M204LIB.V750                                  
// LIBDEF PHASE,CATALOG=M204LIB.V750
// LIBDEF OBJ,SEARCH=M204LIB.V750                                      
// LIBDEF OBJ,SEARCH=M204LIB.V750
// OPTION CATAL                                                        
// OPTION CATAL
  ACTION ERRLMT(500)                                                    
  ACTION ERRLMT(500)
  PHASE ONLINE,* REPLACE=YES                                            
  PHASE ONLINE,* REPLACE=YES
* INCLUDE LKNOSONL  /* Uncomment for Pattern Matcher                  
* INCLUDE LKNOSONL  /* Uncomment for Pattern Matcher
* INCLUDE LKSQLONL  /* Uncomment for Remote SQL and Pattern Matcher  
* INCLUDE LKSQLONL  /* Uncomment for Remote SQL and Pattern Matcher
* INCLUDE IPNRSTUB  /* For TCPNAME using TCPIP release 15F or later  
* INCLUDE IPNRSTUB  /* For TCPNAME using TCPIP release 15F or later
  ENTRY MAINTASK                                                        
  ENTRY MAINTASK
/*                                                                    
/*
// EXEC LNKEDT,'RMODE=ANY'                                                       
// EXEC LNKEDT
/*                                                                    
/*
/&                                                                                              
/& </nowiki></p>
</nowiki></p>
 
[[Category: Model 204 installation job streams]]

Latest revision as of 16:58, 23 April 2018

The LINKONLN job stream is used to link and catalog the Model 204 ONLINE phase during installation on IBM z/VSE.

See the comments in the code below for instructions on editing LINKONLN.

LINKONLN JCL example

// JOB LINKONLN * ******************************************************************** * Rocket Model 204 * 02/15 * ******************************************************************** * LINKONLN links/catalogs the MODEL 204 ONLINE phase /* /* Note: if using LE functions in MODEL 204, /* - add INCLUDE statements for LE modules /* - concatenate appropriate sublibrary to search. /* Note: M204 VSE TCP requires access to CSI TCPIP 15F or later. /* Add DLBL/EXTENT and LIBDEF OBJ info to this job if needed. /* INCLUDE IPNRSTUB will allow TCPNAME to specify SSID nn in /* Online User0 parm and is also required. /* // EXEC PROC=M204JCL DLBL for JCL sublibrary // LIBDEF PROC,SEARCH=M204LIB.V750 // EXEC PROC=M204V750 DLBL for V750 M204 library // LIBDEF PHASE,CATALOG=M204LIB.V750 // LIBDEF OBJ,SEARCH=M204LIB.V750 // OPTION CATAL ACTION ERRLMT(500) PHASE ONLINE,* REPLACE=YES * INCLUDE LKNOSONL /* Uncomment for Pattern Matcher * INCLUDE LKSQLONL /* Uncomment for Remote SQL and Pattern Matcher * INCLUDE IPNRSTUB /* For TCPNAME using TCPIP release 15F or later ENTRY MAINTASK /* // EXEC LNKEDT /* /&