Hi there,
My customer wants to monitor the access to a particular application, especially the IP Adress and User Agent.
SELECT time_stamp, userid, userid_lc, ip_address,user_agent
FROM APEX_ACTIVITY_LOG
WHERE flow_id = :APP_ID
AND time_stamp > (SYSDATE-1)
order by time_stamp desc
So I made a simple IR with the select above, but I only get the userid , no Ip or User Agent.
The application property "Logging " is set to 'Yes"
What did I missed ?
Regards
JeanYves Bernier