View previous topic :: View next topic |
Author |
Message |
help_me Beginner
Joined: 03 Oct 2003 Posts: 11 Topics: 4
|
Posted: Sat Oct 04, 2003 10:40 am Post subject: CICS Transaction Invoking from Batch |
|
|
Hi,
How can I trigger a CICS transaction from Batch.
Thank you. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
|
Back to top |
|
|
ar_karthick Beginner
Joined: 19 Dec 2006 Posts: 39 Topics: 20 Location: india
|
Posted: Tue Jan 02, 2007 1:20 pm Post subject: |
|
|
can u please show me tat jcl _________________ karthick |
|
Back to top |
|
|
powerhawk Beginner
Joined: 08 Nov 2004 Posts: 28 Topics: 4 Location: Stockholm
|
Posted: Mon Jan 08, 2007 5:05 am Post subject: |
|
|
This is a sample from a JCL I use. The only extra for me is the libraries in the JOBLIB statements, CICS.CICSTS23.. and I guess CEE.SCEERUN.
You also have to compile the program to include the CICS support.
Code: | //JOBLIB DD DSN=SYSTEM.UTV.PGM.LOAD,DISP=SHR
// DD DSN=SYSTEM.TEST.PGM.LOAD,DISP=SHR
// DD DSN=SYSTEM.PROD.PGM.LOAD,DISP=SHR
// DD DSN=CICS.CICSTS23.CICS.SDFHEXCI,DISP=SHR
// DD DSN=CEE.SCEERUN,DISP=SHR
//*-------------------------------------------------------------------*
//STEG01 EXEC PGM=NB9400
//*-------------------------------------------------------------------*
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//NB9401I DD DSN=HSD458.NETRON.IAN2,DISP=SHR
//NB9402U DD DSN=HSD458.TEST.PERM.HSD152,DISP=SHR
|
|
|
Back to top |
|
|
Earl Beginner
Joined: 09 Jun 2007 Posts: 26 Topics: 1
|
|
Back to top |
|
|
|
|