Audit Requirement: Need to get Extract of Users Last logon Dates for a Period ( Month/Quarter)
HI Team,
Oracle Fusion :-
To get the last Logon Date for the User Between Period we are using below steps .Can you confirm is this OK, If not what is the alternative ?
- Scheduled/Running the Program " Import User Login History" daily once
- Extracting the details from Orcale BIP Report using below Query.
SELECT U.USERNAME,A.LAST_LOGIN_DATE
FROM ASE_USER_LOGIN_INFO A
,PER_USERS U
WHERE A.USER_GUID = U.USER_GUID
AND U.USERNAME NOT LIKE 'FUSION_APPS_%'
AND u.SUSPENDED='N'
AND u.created_by !='anonymous'
AND USERNAME not in ('fa_monitor','ops_monitor')
Tagged:
1