Oracle ERP10.7-Change apps password issue

Source: Internet
Author: User

Recently, when dba B updated Oracle ERP10.7 TEST DB, an error occurred while changing the apps step, resulting in the inability to log on to ERP10.7 Form.

The troubleshooting section in the change ERP10.7 apps schema password method still cannot solve the problem:

UPDATE apps. fnd_oracle_userid

SET encrypted_oracle_password =

'Authorization'

WHERE oracle_username = 'applsyspub'

 

UPDATE apps. fnd_oracle_userid

SET encrypted_oracle_password =

'Authorization'

WHERE oracle_username IN ('apps ', 'applsys ');

 

UPDATE apps. fnd_user

SET encrypted_foundation_password

= 'Hangzhou ',

Encrypted_user_password = 'authorization'

WHERE user_name = 'sysadmin'

 

Alter user apps identified by apps;

Alter user applsys identified by apps;

 

During login, the system always prompts that the password is incorrect or the database is not connected.

 

 

Later, the above SQL password was updated according to the encrypted password of the official database, and the problem still could not be solved:

 

UPDATE apps. fnd_oracle_userid

SET encrypted_oracle_password =

'Authorization'

WHERE oracle_username = 'applsyspub'

 

UPDATE apps. fnd_oracle_userid

SET encrypted_oracle_password =

'Authorization'

WHERE oracle_username IN ('apps ', 'applsys ');

 

UPDATE apps. fnd_user

SET encrypted_foundation_password = 'authorization ',

Encrypted_user_password = 'authorization'

WHERE user_name = 'sysadmin'

 

Alter user apps identified by "xxxxxxxx ";

Alter user applsys identified by "xxxxxxxxxx ";

 

During login, the system always prompts that the password is incorrect or the database is not connected.

 

When dba B solves this problem, I found that when I change the apps password in the database to the apps password in the test database, I can log on to the database but cannot connect to the database when I select Responsibility. I tested it myself and found that it was true. Therefore, it can be judged that some changes were correct when dba B modified. What if I can get that the password for apps is testapps's encrypted password?

 

Later I thought of another dev db of ERP10.7, and the app password is also testapps. So I tried to update the above SQL statement with the encrypted password corresponding to testapps. After execution, I can log on to ERP10.7.

Everything is normal:

UPDATE apps. fnd_oracle_userid

SET encrypted_oracle_password =

'Authorization'

WHERE oracle_username = 'applsyspub'

 

UPDATE apps. fnd_oracle_userid

SET encrypted_oracle_password =

'Authorization'

WHERE oracle_username IN ('apps ', 'applsys ');

 

UPDATE apps. fnd_user

SET encrypted_foundation_password

= 'Hangzhou ',

Encrypted_user_password = 'authorization'

WHERE user_name = 'sysadmin'

 

Alter user apps identified by testapps;

Alter user applsys identified by testapps;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.