In CICS,are there anyways to find out how many times particular transaction has been accessed(Used)? hope you guys got my point !! please get me an idea on the same!!!!
I am not sure about the transaction, but you can check how many times a program has been executed by seeing the value in "Use" after executing the command
CEMT I PROG(PROGB)
The Use shows the number of times the program has been executed since when the region was brought up.
You know which program is associated with your transaction and so can derive the number of times the transaction has been executed.
In case the same program is executed by mutiple transactions then, using this method to count the number of times a transaction has been executed cannot be used.