Your Doorstep to the Temple of Oracle

Oracle EBS

Archive for the ‘FNDCPASS’ Category

APP-FND-01496 Results From FNDCPASS Chaning The APPLSYS password

Posted by appsdba11i on April 22, 2011

APP-FND-01496 Results From FNDCPASS Chaning The APPLSYS password

AFTER manually using the ‘alter user’ in sqlplus the following error occurs in the log for every application user account:

ERROR
APP-FND-01496: Cannot access application ORACLE password
Cause: Application Object Library was unable access your ORACLE password.

The APPLSYS (APPS) password became corrupted using ALTER USER because an applications session was not maintained at the same time. This apps session is necessary to change the APPLSYS password in:
‘Security> Oracle> Register’ WHILE being in SQL*PLUS as the SYSTEM user.

The supported method is use of FNDCPASS.

To implement the solution, please execute the following steps:

1. Restore the FND_ORACLE_USERID and FND_USER tables from a backup.

2. Then run FNDCPASS to change the APPLSYS password. Ex.

FNDCPASS apps/ 0 Y system/ SYSTEM APPLSYS WELCOME

Posted in FNDCPASS | Tagged: | Leave a Comment »

FNDCPASS Gives: APP-FND-01502: Cannot Encrypt Application ORACLE Password

Posted by appsdba11i on April 22, 2011

FNDCPASS Gives: APP-FND-01502: Cannot Encrypt Application ORACLE Password

APP-FND-01502: Cannot encrypt application ORACLE password
Application Object Library was unable encrypt your ORACLE password.
Action: Contact your support representative. (ORACLEUSER=APPS_SERV)

The table fnd_oracle_userid contain rows for schemas that does not exist. Those rows must be deleted
from the table.

To implement the solution, please execute the following steps:

1. Execute the following select statement:

select * from fnd_oracle_userid
where oracle_username not in
(select username from all_users);

If this returns any rows, then delete them.

Posted in FNDCPASS | Tagged: | Leave a Comment »

APP-FND-01496 Received When Changing The APPLSYS Password With FNDCPASS

Posted by appsdba11i on April 22, 2011

APP-FND-01496: Cannot access application ORACLE password
Cause: Application Object Library was unable access your ORACLE password.

The ALTER command was run manually against the APPS user before running FNDCPASS. The APPS and APPLSYS user passwords must be identical.

To implement the solution, execute the following steps:

1. Run the ALTER command against the APPS and APPLSYS users in sqlplus to change back to the old passwords:

sql>ALTER USER APPLSYS IDENTIFIED BY XXX;
sql>ALTER USER APPS IDENTIFIED BY XXX;

2. Afterwards run FNDCPASS:

FNDCPASS apps/ 0 Y system/ SYSTEM APPLSYS
Ex: $FNDCPASS apps/ 0 Y system/ SYSTEM APPLSYS NEWPASSWORD

Note: Changing the APPLSYS password automatically changes the APPS password to match as these two must always agree.

Posted in FNDCPASS | Tagged: | Leave a Comment »

FNDCPASS Not Able To Decrypt Password For APPLSYSPUB When Changing The APPS Password

Posted by appsdba11i on April 22, 2011

The APPS password appears to have been successfully updated and Autoconfig runs without issue.
However, Discoverer users have authentication problems.

The issue is caused by a data corruption issue in the fnd_user table.

To implement the solution, execute the following steps:

1. Use FNDCPASS to reset the APPLSYSPUB password.

e.g. FNDCPASS apps/ 0 Y system/ ORACLE APPLSYSPUB PUB

2. Retest for the issue.

Posted in FNDCPASS | Tagged: | Leave a Comment »