Вы находитесь на странице: 1из 1

Deployment steps:

1. Move the zip file into $JAVA_TOP and extract it. After extraction, the folder
structure should be $JAVA_TOP/xxdfc/oracle/apps/per/eit... and so on...
2. Run the following command from command prompt of the server computer. Make sure
the environment has already been initialized for EBS commands. The following
command will import the page view component (xml file) into MDS tables.

java oracle.jrad.tools.xml.importer.XMLImporter %JAVA_TOP


%/xxdfc/oracle/apps/per/eit/webui/eitSelfServicePG.xml -username <apps_username>
-password <apps _pwd> -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=
<name of HOST>)(PORT=<port_number>))(CONNECT_DATA=(SID=<SID_NAME>)))" -rootdir
%JAVA_TOP%

java oracle.jrad.tools.xml.importer.XMLImporter %JAVA_TOP


%/xxdfc/oracle/apps/per/eit/webui/xxdfcAxnHistoryRN.xml -username <apps_username>
-password <apps _pwd> -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=
<name of HOST>)(PORT=<port_number>))(CONNECT_DATA=(SID=<SID_NAME>)))" -rootdir
%JAVA_TOP%

3. Print the uploaded page Document imported XML page content (Optional) to check
if the page has imported correctly ( from Toad/sqldeveloper/ sqlplus)

set serveroutput on;


begin

jdr_utils.printDocument('/xxdfc/oracle/apps/per/eit/webui/eitSelfServicePG');

end;
set serveroutput off;

Вам также может понравиться