The following example shows sample z/OS JCL for assembling and linking DBCVTR that includes SKIPLOAD macros for URTs that you want to skip for loading at STARTUP Services time. Modify the JCL as required to meet your site standards.
//DBCVTPR JOB (acct info),'job desc',CLASS=X,MSGCLASS=X
//PROCLIB DD DSN=SYS1,PROCLIB,DISP=SHR
//*******************************************************************
//* *
//* ASSEMBLE AND LINKEDIT -- DBCVTPR CICS SERVICES OPTIONS *
//* *
//*******************************************************************
//STEP1 EXEC HLASMCL,
// PARM.C='OBJECT,NODECK',
// PARM.L='MAP,LET,LIST'
//C.SYSLIB DD DSN=SYS1.MACLIB,DISP=SHR
// DD DSN=CAI.THLQ.CAB1MAC,DISP=SHR
// DD DSN=CAI.DHLQ.CABDMAC,DISP=SHR
// DD DSN=CICS.SDFHMAC,DISP=SHR
//C.SYSPRINT DD SYSOUT=*
//C.SYSIN DD *
DBCVTPR USERS=6,MULTUSE=YES,MSTOPR=***, X
PREFIX=DBURT,MAXURTS=5000,SCROLL=MANUAL, X
SYSRCV=YES,AUTO=(001,002,003,010)
SKIPLOAD SKIP_LOAD_FROM=11,SKIP_LOAD_TO=19
SKIPLOAD SKIP_LOAD_FROM=500,SKIP_LOAD_TO=510
SKIPLOAD SKIP_LOAD_FROM=600,SKIP_LOAD_TO=4000
END
//L.SYSLMOD DD DSN=CAI.CHLQ.CUSLIB,DISP=SHR
//L.SYSPRINT DD SYSOUT=*
//L.SYSIN DD *
NAME DBCVTPR(R)
/*
//
Note: The previous PROC invokes the ASMA90 program. With previous reference to SYSLMOD, see the product installation procedures to determine the correct custom load library (CUSLIB) data set to contain DBCVTPR. This data set must also be included in your CICS DFHRPL library concatenation ahead of the CA Datacom CICS Services target library.
|
Copyright © 2015 CA Technologies.
All rights reserved.
|
|