OAF Migration For R12.1.* and R12.2.*
OAF Migration Approach For R12.1.3
1 – Place the class files in JAVA_TOP at appropriate folder.
2 – Run oracle.jrad.tools.xml.importer.XMLImporter for the required XML files.
- Bounce Apache
cd $ADMIN_SCRIPTS_HOME
adapcctl.sh stop
adapcctl.sh start
OAF Migration Approach For R12.2.*
Steps :
1 – Place the class files in JAVA_TOP at appropriate folder.
2 – Run oracle.jrad.tools.xml.importer.XMLImporter for the required XML files.
3 . Running the adcgnjar Utility (Doc ID 1577661.1)
$ cd $JAVA_TOP
$ adcgnjar
Enter the apps password.
- Run the scripts (Community Discussion ID 3611135)
cd $ADMIN_SCRIPTS_HOME
./admanagedsrvctl.sh stop oacore_server1
./admanagedsrvctl.sh start oacore_server1
Enter the WebLogic Admin password - Bounce Apache
cd $ADMIN_SCRIPTS_HOME
adapcctl.sh stop
adapcctl.sh start
–SampleShellScript For R12.2.*—
cd $JAVA_TOP
cp customall.jar customall_bkp.jar
rm customall.jar
rm customall.zip
zip -r customall xx
adjava oracle.apps.ad.jri.adjmx -areas $JAVA_TOP/customall.zip -outputFile $JAVA_TOP/customall.jar -jar $CONTEXT_NAME 1 CUST jarsigner -storePass -keyPass
Get the storePass and KeyPass Using the below Query
declare
spass varchar2(30);
kpass varchar2(30);
begin
ad_jar.get_jripasswords(spass, kpass);
dbms_output.put_line(spass);
dbms_output.put_line(kpass);
end;