Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
How to retrieve the user name and password change notifications in fusion

We want to retrieve the following username and password notification logs in Oracle Fusion. Please provide the method to obtain the logs for the notifications listed below.
ORA Administration Activity Request
ORA Forgot User Name
ORA New Account
ORA Password Generated
ORA Password Expiration
ORA Password Reset Confirmation
ORA Password Reset Manager
ORA Password Reset Manager Confirmation
ORA Single Sign-On Disabled Confirmation
Answers
-
Hello @Shanti Kumar ,
Can you please review the below document and see if it's helpful.
Thanks,
Praveen
0 -
Hi Shanti, To better serve you, I would recommend you post this question in the Application Security forum.
0 -
Hi @Shanti Kumar,
You can use the below query to see when a password has been reset for a user. The ASE tables are the security tables for Fusion.
select * from ase_audit_user_changes
order by creation_date desc;1