Page 1 of 1

How to check the curentently running tasks in CICS?

Posted: Tue May 24, 2016 4:59 pm
by Anup Apte
How to check the currently running tasks in CICS? Is there any tool available for this, please help me on this.

Re: How to check the curentently running tasks in CICS?

Posted: Tue May 24, 2016 9:05 pm
by enrico-sorichetti
If You have the need to know, Your support will be happy to provide You
with the appropriate authorisations an HOW TOs

Re: How to check the curentently running tasks in CICS?

Posted: Wed May 25, 2016 5:07 pm
by Chandan Yadav
not sure if you are looking for below command

Code: Select all

CEMT I TASK()

Re: How to check the curentently running tasks in CICS?

Posted: Wed May 25, 2016 5:34 pm
by Robert Sample
CEMT I TASK will show currently active tasks.  However, for a pseudoconversational task where the task has returned to CICS until the user completes filling in the screen (or whatever), the task is NOT active and hence will not show up.  CEMT I NET is probably the most accurate way of showing the region usage.  A monitor like Mainview or Omegamon is generally the best way to see the status of the region.

Re: How to check the curentently running tasks in CICS?

Posted: Thu May 26, 2016 10:07 am
by Chandan Yadav
Thanks Robert for the details explanation

Re: How to check the curentently running tasks in CICS?

Posted: Mon May 30, 2016 11:21 am
by Anup Apte
Robert Sample wrote:CEMT I TASK will show currently active tasks.  However, for a pseudoconversational task where the task has returned to CICS until the user completes filling in the screen (or whatever), the task is NOT active and hence will not show up.  CEMT I NET is probably the most accurate way of showing the region usage.  A monitor like Mainview or Omegamon is generally the best way to see the status of the region.
Thanks Robert. CEMT INET has helped.