If you use IBM BPM version 8.5 and later, you can find out the number of users connected to Process Portal using the table BPM_USR_RUNTIME_PROPS.
The table shows only users connected to Process Portal, except ProcessAdmin, ProcessCenter and so on.
The list of users (Oracle query):
SELECT U.USER_NAME FROM BPMDB.BPM_USR_RUNTIME_PROPS U WHERE U.ONLINE_STATUS = 'T';
The number of users:
SELECT count(U.ONLINE_STATUS) as USNUM FROM BPMDB.BPM_USR_RUNTIME_PROPS U GROUP BY U.ONLINE_STATUS HAVING U.ONLINE_STATUS = 'T';
If you use 8.5.7 - there is a bug and the solution does not work. Install CF 2016.12
The table shows only users connected to Process Portal, except ProcessAdmin, ProcessCenter and so on.
The list of users (Oracle query):
SELECT U.USER_NAME FROM BPMDB.BPM_USR_RUNTIME_PROPS U WHERE U.ONLINE_STATUS = 'T';
The number of users:
SELECT count(U.ONLINE_STATUS) as USNUM FROM BPMDB.BPM_USR_RUNTIME_PROPS U GROUP BY U.ONLINE_STATUS HAVING U.ONLINE_STATUS = 'T';
If you use 8.5.7 - there is a bug and the solution does not work. Install CF 2016.12
It is very nice & useful......
ReplyDeleteDoesn't seem to work anymore at version 8.5.7. Any ideas what could be the cause?
DeleteThanks!
Yes, it is true. You should install CF 2016.12. It fixes the issue.
Delete