|
|
| Author |
Message |
Jairam21
New User
Joined: 31 Jan 2008 Posts: 5 Location: USA
|
|
|
|
Hi,
I have a question. I need to execute a program/transaction every 5 minutes automatically when the CICS starts in AM time. We need to use/code ICE in the program. Please let me know what parameters we need to pass/code changes etc.
Jai |
|
| Back to top |
|
 |
References
|
Posted: Mon Mar 24, 2008 8:52 pm Post subject: Re: How to auto start a CICS trans every 5 minutes.. |
 |
|
|
 |
Marso
Active User
Joined: 13 Mar 2006 Posts: 288 Location: Israel
|
|
|
|
I think there are different ways to start a transaction when CICS goes up.
Check with your CICS admin.
For the "every 5 minutes" bit, consider using:
| Code: |
EXEC CICS START TRANSID('XXXX')
AFTER MINUTES(5)
END-EXEC |
just before the RETURN to CICS |
|
| Back to top |
|
 |
|
|