Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following figure illustrates the Universal Connector for SAP for z/OS JCL procedure (USPPRC, located in the SUSPSAMP library) that is provided to simplify the execution JCL and future maintenance.
 

<pre>
//USPPRC   PROC UPARM=,               -- USAP options
//             SAPRFC=USPRFC00,       -- SAP RFC member
//             USAPPRE=#SHLQ.UNV,
//             USAPPRD=#PHLQ.UNV
//*
//PS1      EXEC PGM=USAP,PARM='ENVAR(TZ=EST5EDT)/&UPARM'
//STEPLIB  DD  DISP=SHR,DSN=&USAPPRE..SUNVLOAD
//*
//UNVNLS   DD  DISP=SHR,DSN=&USAPPRE..SUNVNLS
//UNVRFC   DD  DISP=SHR,DSN=&USAPPRD..UNVCONF(&SAPRFC)
//UNVTRACE DD  SYSOUT=*
//*
//SYSPRINT DD  SYSOUT=*
//SYSOUT   DD  SYSOUT=*
//CEEDUMP  DD  SYSOUT=*
</pre>
Panel
Html bobswift

 
The parameter UPARM specifies EXEC PARM keyword values. The parameter CONFIG specifies the configuration member. The parameter SAPRFC specifies the SAP RFC configuration member. The parameter USAPPRE specifies the data set name prefix of USAP installation data sets.

...

The following figure illustrates the Universal Connector for SAP for z/OS JCL using the USPPRC JCL procedure, above.
 

html-bobswift
Panel
<pre>
//jobname  JOB CLASS=A,MSGCLASS=X
//STEP1    EXEC USPPRC
//SYSIN    DD  *
  -dest BIN_45 -client 850 -userid user -pwd password  
  -run
  -jobname SAMPLE1   
  -jobid 13203001  
  . . .
/*
</pre>

 
Job step STEP1 executes the procedure USAPPRC.

...