Use this JCL to link edit the compiled Total application program with the ETOTCINT macro.
CICS APPLICATION PROGRAM LINK EDIT z/OS
//LKEDTOTA EXEC PGM=HEWL,PARM=(XREF,LET,LIST),REGION=256K //SYSPRINT DD SYSOUT=A //SYSUT1 DD UNIT=disk,SPACE=(CYL,(2,2)) //SYSLMOD DD DSN=idms.loadlib,DISP=SHR //SYSLIB DD DSN=idms.loadlib,DISP=SHR // DD DSN=cics.loadlib,DISP=SHR //userlib DD DSN=user.loadlib,DISP=SHR //SYSLIN DD * INCLUDE userlib(userprog) INCLUDE SYSLIB(etotcint) additional INCLUDE statements for CICS interface modules as required: ENTRY userprog NAME userprog(R)
|
idms.loadlib |
Dataset name of the CA IDMS/DB load library |
|
cics.loadlib |
Dataset name of the Total CICS load library |
|
disk |
Symbolic device name of the linkage editor work file |
|
etotcint |
Name of the ETOTCINT module |
|
user.loadlib |
Dataset name of the user load library containing the Total CICS application program |
|
userlib |
DDname of the user load library containing the CICS application program |
|
userprog |
Name of the CICS application program |
|
Copyright © 2013 CA.
All rights reserved.
|
|