Hi,
How to change all Application users password in EBS R12 in Backend?
Thanks.
Sign Up to our social questions and Answers to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers to ask questions, answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Hi Jihad,
[code]
SQL>set head off
SQL> set newpage none
SQL> set pagesize 9999
SQL> spool changepassword.sh
SQL> select ‘FNDCPASS apps/apps 0 Y system/manager USER ‘||user_name||’ ‘||’tech@321’ from fnd_user ;
SQL> spool off
[/code]
Regards,
Mahmoud Morsy.