Skip to main content
May 28, 2024
Solved

Display Current Login User

  • May 28, 2024
  • 1 reply
  • 0 views

Hi All,

I would like to create the Dashboard for the Adim which should display all the Current login users Details in the applications.

Kindly help to achieve this development.

 

Thanks

Best answer by mathieu_cartel

Hi NSHAIK2 

You can create a dashboard data adapter that runs the query below against the Framework database:

SELECT
[UserName]
,[AppName]
,[LogonTime]
,[LastActivityTime]
FROM [UserLogonActivity] where LogonStatus = 0 order by Logontime desc

This will return all users currently connected.

1 reply

May 28, 2024

Hi NSHAIK2 

You can create a dashboard data adapter that runs the query below against the Framework database:

SELECT
[UserName]
,[AppName]
,[LogonTime]
,[LastActivityTime]
FROM [UserLogonActivity] where LogonStatus = 0 order by Logontime desc

This will return all users currently connected.

NSHAIK2Author
May 28, 2024

Hi mathieu_Cartel,

 

Thank you much for the reply .

It worked I was not aware the table name that helped me.

Thanks