Query to find the Application FND user password in Oracle Apps 11i

Please use the below query to find application user's password.
SELECT Usr.user_name,
       Usr.description,
       get_user_pwd.Decrypt((SELECT (SELECT get_user_pwd.Decrypt (
                                            fnd_web_sec.get_guest_username_pwd,
                                    Usertable.encrypted_foundation_password)
                                     FROM   dual) AS Apps_Password
                             FROM   fnd_user Usertable
                             WHERE  Usertable.user_name = (SELECT
Substr(fnd_web_sec.get_guest_username_pwd, 1,
Instr(
fnd_web_sec.get_guest_username_pwd, '/')
- 1)
FROM   dual)), Usr.encrypted_user_password) Password
FROM   fnd_user Usr
WHERE  Usr.user_name = '&1'; 

Comments