We will be unable to login using none of the seeded users nor custom users. Applications will not allow any user to be logged in.
For a VISION instance(only), if the Profile option "MO: Operation Unit" (short name for this profile options is ORG_ID) is changed to any other value apart from "Vision Operations", we encounter the above specified error.
Another place where we can check the error is when we run adstrtal.sh or adstpall.sh scripts. The following errors can be found in the log file:
Oracle error -20001: ORA-20001: FND-ORG_ID PROFILE CANNOT READ: N, OPTION, MO: Operating Unit has been detected in FND_GLOBAL.INITIALIZE.
Solution
Following are steps to change the profile option from backend:
1. Get the Profile option ID using the following query:
SQL> Select PROFILE_OPTION_ID,PROFILE_OPTION_NAME from fnd_profile_options
where PROFILE_OPTION_NAME ='ORG_ID';
Example:
SQL> Select PROFILE_OPTION_ID,PROFILE_OPTION_NAME from fnd_profile_options
where PROFILE_OPTION_NAME ='ORG_ID';
2
PROFILE_OPTION_ID
-----------------
PROFILE_OPTION_NAME
--------------------------------------------------------------------------------
1991
ORG_ID
2. Run the following procedure which changes the profile option: Use 1991 as the PROFILE_ID
DECLARE
stat boolean;
BEGIN
dbms_output.disable;
dbms_output.enable(100000);
stat := FND_PROFILE.SAVE('ORG_ID',(enter the Profile ID from above query), 'SITE');
IF stat THEN
dbms_output.put_line( 'Stat = TRUE - profile updated' );
ELSE
dbms_output.put_line( 'Stat = FALSE - profile NOT updated' );
END IF;
commit;
END;
3) Restart the apache server
Share the content if you found it is useful (You can share using 300 community websites) click "share" at the end of the post.
You are encouraged to leave a comment.
You are encouraged to leave a comment.
Monday, March 09, 2009
Oracle error &ERRNO: &REASON has been detected in &ROUTINE.
Subscribe to:
Post Comments (Atom)
Let us be Friends...
Popular Posts
-
In Oracle Application 11i and R12, we have an FND functionality for changing the passwords for either application user, or product schema pa...
-
While running adop phase=prepare, select node_name from FND_OAM_CONTEXT_FILES 2 where NAME not in ('TEMPLATE','ME...
-
This blog speaks about the Login Page Issue on R12.1.1 instance. Suddenly the login page was throwing an error - 404 /OA_HTML/AppsLogin was ...
-
The DBMS_REPAIR package is used to work with corruption in the transaction layer and the data layer only (software corrupt blocks). Blocks w...
-
This blog describes the process of re-creating an existing Applications Release 12 database instance using the export and import utilities....
-
Hi, everybody should come across, while during a clone, you might have experienced very poor performance while running txkWfClone.sh profil...
-
1. Installation of the Demantra Base Application or Patches Create a C:/Tmp folder on the machine where the setup.exe will be executed pri...
-
Secure Sockets Layer (SSL) SSL is a technology that defines the essential functions of mutual authentication, data encryption, and data inte...
-
Linux platform migration provides a way to quickly and easily move an existing Oracle Applications middle tier System from any platform to ...
-
Symptom: A MultiException has 6 exceptions. They are: 1. java.lang.AssertionError: Cannot export non clusterable object with jndiName:weblo...
No comments:
Post a Comment