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

From m204wiki
Jump to navigation Jump to search
(Created page with "The M204CATP job stream is used to allocate managed space, define sublibraries, and catalog procedures during Upgrading to Model 204 version 7.5 on IBM z/VSE|installation on...")
 
m (add category)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The M204CATP job stream is used to allocate managed space, define sublibraries, and catalog procedures during [[Upgrading to Model 204 version 7.5 on IBM z/VSE|installation on IBM z/VSE]].  
The M204CATP job stream is used to allocate managed space, define sub-libraries, and catalog procedures during [[Model 204 installation on IBM z/VSE|installation on IBM z/VSE]].  


See the comments in the code below for instructions on editing M204CATP.  
See the comments in the code below for instructions on editing M204CATP.  
Line 5: Line 5:
* ********************************************************************
* ********************************************************************
*                          Rocket Model 204
*                          Rocket Model 204
*                                12/14
*                                05/15
* ********************************************************************
* ********************************************************************
/* M204CATP allocates VSAM managed space for the Model 204
/* M204CATP allocates VSAM managed space for the Model 204
Line 23: Line 23:
     DEFINE CLUSTER ( -
     DEFINE CLUSTER ( -
         NAME (M204LIB.V750.LIBRARY    ) -
         NAME (M204LIB.V750.LIBRARY    ) -
         TRACKS      (0800 100  ) -
         TRACKS      (1200 100  ) -
         SHAREOPTIONS (3) -
         SHAREOPTIONS (3) -
         RECORDFORMAT (NOCIFORMAT        ) -
         RECORDFORMAT (NOCIFORMAT        ) -
Line 51: Line 51:
/+
/+
/*
/*
/&
/& </nowiki></p>
</nowiki></p>
 
[[Category: Model 204 installation job streams]]

Latest revision as of 16:59, 23 April 2018

The M204CATP job stream is used to allocate managed space, define sub-libraries, and catalog procedures during installation on IBM z/VSE.

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

// JOB M204CATP * ******************************************************************** * Rocket Model 204 * 05/15 * ******************************************************************** /* M204CATP allocates VSAM managed space for the Model 204 /* library, defines the sublibraries and catalogs /* the two Model 204 procedures. /* /* To adapt this procedure to your installation: /* 1. Modify JOB statement /* 2. Modify the following in the job stream: /* user.cat - user catalog /* volume - volume serial of dataset /* // OPTION NODUMP // DLBL IJSYSUC,'user.cat',,VSAM // DLBL M204LIB,'M204LIB.V750.LIBRARY',,VSAM // EXEC IDCAMS,SIZE=AUTO DEFINE CLUSTER ( - NAME (M204LIB.V750.LIBRARY ) - TRACKS (1200 100 ) - SHAREOPTIONS (3) - RECORDFORMAT (NOCIFORMAT ) - VOLUMES (volume) - NOREUSE - NONINDEXED - TO (99366)) - DATA (NAME (M204LIB.V750.LIBRARY.@D@ ) ) LISTC ENT (M204LIB.V750.LIBRARY ) ALL /* // EXEC LIBR DEFINE LIB=M204LIB /* REPLACE=YES */ DEFINE SUBLIB=M204LIB.V750 REUSE=IMMEDIATE DEFINE SUBLIB=M204LIB.J750 REUSE=IMMEDIATE ACCESS S=IJSYSRS.SYSLIB CATALOG M204JCL.PROC REPLACE=YES * M204JCL PROC: ACCESS THE M204 JCL SUBLIB // DLBL IJSYSUC,'user.cat',,VSAM // DLBL M204LIB,'M204LIB.V750.LIBRARY',,VSAM,CAT=IJSYSUC /+ ACCESS S=M204LIB.V750 CATALOG M204V750.PROC REPLACE=YES * M204V750 PROC: ACCESS THE M204 SUBLIBS // DLBL M204LIB,'M204LIB.V750.LIBRARY',,VSAM /+ /* /&