Skip to main content
Solved

Setup for showing last login for specific users

  • February 19, 2023
  • 1 reply
  • 238 views

Forum|alt.badge.img+5

Hi all,

 

Is there anyone know how to create quick report that shows login details of  users  who belongs to one role

Ex: there is a  role  : ‘economy ‘ and it uses by 10 people. We want to see the login details of that 10 users, want to know who logs in as economy and when.

Can we create a quick report to show those details or is there another way to do this one?

 

kindly give your opinions.

 

Thank You

sara

Best answer by Shan Peiris

Hi @sara19 

you can use below SQL Querry for find users who belongs to role “economy”

select a.identity,
       a.description,
       a.active,
       b.role,
       ifsapp.fnd_user_api.get_last_activity(a.identity) last_login
  from ifsapp.fnd_user a JOIN ifsapp.fnd_user_role_runtime b
  ON a.identity=b.identity
  WHERE b.role=’economy’

Thanks & Regards
Shan

1 reply

Forum|alt.badge.img+9
  • Hero (Employee)
  • 79 replies
  • Answer
  • February 20, 2023

Hi @sara19 

you can use below SQL Querry for find users who belongs to role “economy”

select a.identity,
       a.description,
       a.active,
       b.role,
       ifsapp.fnd_user_api.get_last_activity(a.identity) last_login
  from ifsapp.fnd_user a JOIN ifsapp.fnd_user_role_runtime b
  ON a.identity=b.identity
  WHERE b.role=’economy’

Thanks & Regards
Shan