How to track User activity in Oracle Application - EBS R12 / Query to audit user activity on Oracle Forms
Track User activity in #Oracle Application - #EBS R12 / Query to #Audit user activity on #Oracle #Forms
How to Audit User Activity in Oracle Database
*---------------------------------------------------------------*
Pre-requisite:
Set the Profile option "Sign-On:Audit Level" = 'Form'
This profile option can be enabled at Site level or any specific user.
It will populate the data in below tables:
FND_LOGINS
FND_LOGIN_RESPONSIBILITIES
FND_LOGIN_RESP_FORMS
SQL Query
Run below #SQL query to extract the user activity details on #ERP application:
"SELECT frtl.RESPONSIBILITY_NAME , fft.USER_FORM_NAME , flf.START_TIME, flf.END_TIME
FROM FND_LOGIN_RESP_FORMS flf,
FND_LOGINS fl,
FND_LOGIN_RESPONSIBILITIES flr,
FND_RESPONSIBILITY_TL FRTL,
FND_FORM_TL fft
WHERE FLf.LOGIN_ID = FL.LOGIN_ID
and FLR.LOGIN_ID = FL.LOGIN_ID
and FLR.LOGIN_ID = FLF.LOGIN_ID
and FLF.FORM_ID = FFT.FORM_ID
and flf.LOGIN_RESP_ID = flr.LOGIN_RESP_ID
AND FLR.RESPONSIBILITY_ID = FRTL.RESPONSIBILITY_ID
AND FL.USER_ID = 6199
and FLF.LOGIN_ID = 35313895"
*----------------------------------------------------*
Comments
Post a Comment