Hello Friend,
Here are the issues that I have encountered after cloning and the fix for the same. hope this will help someone to quickly resolve the same issues.
Error in FNDCPASS command output:
Working...
Oracle error -29548: ORA-29548: Java system class reported: release of Java system classes in the database (12.1.0.2.181016 1.6) does not match that of the oracle executable (12.1.0.2.190416 1.6) - USER ( APPS ) has been detected in FND_WEB_SEC.GET_OP_VALUE.
This error is due to the mismatch of JAVA version in Oracle Database and Oracle Apps.
Solution for this: Re install JAVA in Oracle Database and re-run the FNDCPASS command
1. UnInstall JAVA
connect / as sysdba
set echo on
set serveroutput on
select * from v$instance;
execute rmjvm.run(false);
shutdown immediate
set echo off
spool off
exit
2. Install JAVA
set serveroutput on
set echo on
startup mount
alter system set "_system_trig_enabled" = false scope=memory;
alter database open;
create or replace java system
/
shutdown immediate
set echo off
spool off
exit