Hi,
Is there a way to monitor the users who are login into Forms with authenticated participant license?
Forms Version 10.1
Thanks!
Hi,
Is there a way to monitor the users who are login into Forms with authenticated participant license?
Forms Version 10.1
Thanks!
Hey AJ,
You can find information on which users are logged into Forms with an authenticated participant license through the Forms database.
The steps would be as follows:
In dbo.cf_users you can find the user_type which corresponds to these different user types. You'll primarily be interested in 3, 4, and 8.
3 = Authenticated participants
4 = LDAP inherited Forms participants
8 = SSO participants
Once you have that information you can look look to their user_id. The user_id will be needed to join the two tables.
Within dbo.cf_sessions you will also user_id, but also the column last_active. Writing a query using the details I have provided should produce what you are asking.
A few things to also note:
Thanks,
Kevin
Thanks Kevin
Thank you Kevin. This is useful.
Is it possible to obtain the last_active column for all users, not just users who were recently active or did not close their browser properly? The purpose of this ask is to determine whether users are using the licenses they have been allocated; i.e., to justify the procurement of additional licenses.
It is possible to determine this for Full Named user licenses (as mentioned in this post ) but I could not find anything similar for Participant users. Thanks.