Monday, December 31, 2018

Oracle OAF :- Deploying New Page



Page Compile
===================

java oracle.jrad.tools.xml.importer.XMLImporter $JAVA_TOP/oracle/apps/fnd/framework/navigate/webui/NewHomePG.xml /* Page Path */
-username apps  /* User Name */
-password testapps   /* Password */
-rootdir $JAVA_TOP
-dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(
HOST=192.11.101.11 /*Host*/
)(
PORT=1001 /*Port*/
))(CONNECT_DATA=(
SID=TESTINSTANCE /*SID*/
)))"


Check the Page is Deployed
=============================

DECLARE
BEGIN
   jdr_utils.printdocument (
      '/oracle/apps/fnd/framework/navigate/webui/NewHomePG',
      1000);
EXCEPTION
   WHEN OTHERS
   THEN
      DBMS_OUTPUT.put_line (SQLERRM);
END;



No comments:

Post a Comment