Page 1 of 1

How many times CICS program was executed?

Posted: Sun Oct 13, 2013 7:17 pm
by BobP
Hi,

Is there any way to how many times a CICS program was executed with a unit or in general?

Re: How many times CICS program was executed?

Posted: Sun Oct 13, 2013 7:49 pm
by Robert Sample

Code: Select all

CEMT I PROG(xxxxxxxx)
will give you the USE count -- the number of times the program has been executed since the CICS region started. If you are using a shared application region, the command would need to be executed in the AOR, not the TOR.

Re: How many times CICS program was executed?

Posted: Tue Apr 08, 2014 12:14 pm
by BobP
Thanks, this helped.