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
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.
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.