Skip to main content

Changing user password in Oracle Applications 10.7

 Unlike 11i 10.7 does not have any utility for changing passwords for application users. Follow the steps below to change the password of any application user on 10.7. Example is shown for sysadmin user.


1. Find the encrypted value that ICX_CALL.CRCHASH is returning for the SYSADMIN password

In SQL*Plus as APPS owner:

SQL> variable x number

SQL> execute :x :=icx_call.crchash('SYSADMIN', 'sysadmin');



PL/SQL procedure successfully completed



SQL> print x



2. Change SYSADMIN's encrypted password to the value returned for x.

SQL> update fnd_web_users
          set password = 'VALUE RETURNED FOR X'
          where username = 'SYSADMIN';


3. Login as SYSADMIN/sysadmin. This should now be successful.

NOTE: Take a backup of FND_WEB_USERS before changing the password.



If the above procedure does not work or if you do not find the scripts then you must be on a lower version of AOL, try the following (This should work).

1. Take a backup of table FND_USER.
2. Execute update,

update fnd_user set ENCRYPTED_FOUNDATION_PASSWORD ='9B7E9A1B0F4C1E5012D34265F7F3DFDD6779CF66449A9ED9EE6AC8BA978BC1C5',
ENCRYPTED_USER_PASSWORD='AB5A8B42AC7F4CB4537028E51FF45607EF1B69A699E085DF5D72D88AAB5E2DBA'
where user_name=’SYSADMIN’;
 
3. Login as USERNAME: SYSADMIN
                  PASSWORD: SYSADMIN

Comments

Deepak said…
Many thanks Mithun to share such a useful info. Its very good and useful document.

Regards,
Deepak

Popular posts from this blog

Basics of RDBMS

Data Small set of information becomes data, this set of information helps make decision. Data is always some useful information. Database Place where you store the data. Database represents some aspect of the real world called "miniworld". A database is designed, built and populated with data for a specific purpose. It has intended group of users and some preconceived applications in which these users are interested. In other words, a database has some source from which data is derived, some degree of interaction with events in the real world and an audience that is actively interested in the contents of the database. Database can also be defined as collection of one or more tables. Ex: Mobile, human brain etc DBMS (Database Management System ) Is a program that stores retrieves and modifies data in the database on request. Study of different techniques of design, development and maintenance of the database Types of DBMS These types are based upon their m...

Installing Oracle 10g Database

Once you have downloaded the software from www.oracle.com/downloads , following steps can be used to install the software. 1. Unzip the dump downloaded from oracle.com 2. Once Unzipped, click on setup.exe to run Oracle Universal Installer Program. This will open a window as shown below.