When an implementation of Oracle E-Business Suite goes live you might want to monitor the use of the system to see if, for example, users logged in. We had this requirement.
Find the below SQL I created for your reference, as always change it where needed.
SELECT
FUSER.USER_NAME
, PER.FULL_NAME
, PER.EMPLOYEE_NUMBER
, FLO.START_TIME
FROM
APPLSYS.FND_LOGINS FLO
, APPLSYS.FND_USER FUSER
, APPS.PER_PEOPLE_F PER
WHERE
FLO.USER_ID = FUSER.USER_ID
AND FUSER.EMPLOYEE_ID = PER.PERSON_ID
AND FLO.TERMINAL_ID IS NULL
ORDER BY
FLO.START_TIME DESC
Nice posts with scripts, use full stuff for every one thanks for the post, And you can also check for any issues and tips and trouble shooting related to appsdba 11i and R12 on http://www.appstier.blogspot.in/
Excellent little query – did exactly what I needed. Many thanks from bonnie (and rainy) Scotland 🙂