Previous Topic: User Requirements Table ProcessingNext Topic: z/VSE Environment


z/OS Environment

In a z/OS operating environment, make your User Requirements Table available by using the following two procedures:

User Requirements Table Assembly

 //jobname    See the note above and JCL Requirements.
 //STEP1      EXEC ASMFC,PARM.ASM='NODECK,LOAD'
 //ASM.SYSLIB DD   DSN=maclib name,DISP=SHR
 //ASM.SYSGO  DD   DSN=objlib name(TEMP),DISP=SHR
 //ASM.SYSIN  DD   *
          DBURSTR
          DBURTBL
             .
             .        URT macro parameters
             .
          DBUREND
           END
 /*
 //

Link-Edit to Load Library

 //jobname    See the note above and JCL Requirements.
 //STEP1        EXEC LKED
 //LKED.SYSLIN  DD DDNAME=SYSIN
 //LKED.SYSLMOD DD DSN=loadlib name,DISP=SHR
 //LKED.OBJLIB  DD DSN=objlib name,DISP=SHR
 //LKED.SYSIN   DD *
   INCLUDE OBJLIB(TEMP)
   NAME phasename(R)
 /*
 //

Note: For more information about macro parameters, see the CA Datacom/DB Database and System Administration Guide.