Wednesday, September 1, 2021

FNDCPASS Error:Oracle error -29548: ORA-29548: Java system class reported:

 We faced this issue while changing the APPS password through FNDCPASS.

We are not sure, have you guys have faced this issue or not but hope this may useful here if anyone face this issue in future. 

Issue :

FNDCPASS system/***** SYSTEM APPLSYS *****
+----------------------------------------------------------------------------+
Working...
Oracle error -29548: ORA-29548: Java system class reported: release of Java system classes in the database (12.1.0.2.200114 1.6) does not match that of the oracle executable (12.1.0.2.200414 1.6) – USER ( APPS ) has been detected in FND_WEB_SEC.GET_OP_VALUE.


The error is due to java.

Solution:

Connect as sys and run below



cd $ORACLE_HOME

SQL> @? /javavm/install/update_javavm_db.sql
SQL> SET FEEDBACK 1
SQL> SET NUMWIDTH 10
SQL> SET LINESIZE 80
SQL> SET TRIMSPOOL ON
SQL> SET TAB OFF
SQL> SET PAGESIZE 100
SQL>
SQL> alter session set "_ORACLE_SCRIPT"=true;
 
Session altered.
 
SQL>
SQL> -- If Java is installed, do CJS.
SQL>
SQL> -- If CJS can deal with the SROs inconsistent with the new JDK,
SQL> -- the drop_sros() call here can be removed.
SQL> call initjvmaux.drop_sros();
 
Call completed.
 
SQL>
SQL> create or replace java system;
  2  /
 
Java created.
 
  update dependency$
  set p_timestamp=(select stime from obj$ where obj#=p_obj#)
  where (select stime from obj$ where obj#=p_obj#)!=p_timestamp and
  (select type# from obj$ where obj#=p_obj#)=29  and
  (select owner# from obj$ where obj#=p_obj#)=0;
 
0 rows updated.
 
SQL>
SQL> commit;
 
Commit complete.
 
SQL>
SQL> alter session set "_ORACLE_SCRIPT"=false;
 
Session altered.
 
SQL>
SQL> exit
 
SQL> select dbms_java.get_jdk_version() from dual;
 
DBMS_JAVA.GET_JDK_VERSION()
--------------------------------------------------------------------------------
1.6.0_71
 
 
Use FNDCPASS now and change passwords .


No comments:

Post a Comment

ORACLE DATABASE CONTENT

ORACLE DATABASE 11gR2 & 12C  CONTENT Pre-Requisite: UNIX, SQL Basics Introduction to Oracle Database §   Introduction of Database ...