Hi folks.
I can see in Process Management list of them but they are, obviously, in different stages:
Is there a way for me, in the GUI, to see how many in-flight processes are running on my instance?
Thanks,
KGM
Hi folks.
I can see in Process Management list of them but they are, obviously, in different stages:
Is there a way for me, in the GUI, to see how many in-flight processes are running on my instance?
Thanks,
KGM
Thanks Alan Beam but I am looking for a total number of Process overall or in a category. If I filter, I get pages and pages of Processes in a particular category but I can´t see the total number (and I´d rather count how many pages of 20´s I have...):
See what I am getting at?
Btw, I am an admin so I am not just looking for my processes but rather total in the system.
Thanks,
KGM
Hi
We solved the same problem using the advanced reports module with this query
select cas_status, count(1) from pmse_inbox
where deleted = 0
group by cas_status
It could be usefull for you.