Thursday 25 February 2021

How to find application user end date in oracle applications 11i and R12

 

We can not delete the user in oracle applications 11i/R12. Instead of we can end date the user. Use below query to find the end date of a user.


select user_name,LAST_UPDATE_DATE,LAST_UPDATED_BY,CREATED_BY,
START_DATE,END_DATE from fnd_user where user_name='TVIJK';


No comments:

Post a Comment