Friday, 23 January 2015

Deploying steps

Deploy OAF page

1. Copy all files from local machine to appropriate $JAVA_TOP directory 
2. Compile all java files (Controller Files) with command javac <file_name>.java
3, Call java importer to import all xml files
java oracle.jrad.tools.xml.importer.XMLImporter $JAVA_TOP/prajkumar/oracle/apps/fnd/webui/HelloWorldPG.xml -username apps -password apps -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST= <name of HOST>)(PORT=<port_number>))(CONNECT_DATA=(SID=<SID_NAME>)))" -rootdir $JAVA_TOP
4. Print Documents to check imported XML page content (Optional)
jdr_utils.printDocument('/prajkumar/oracle/apps/fnd/webui/HelloWorldPG',1000)
 
Example –
DECLARE
BEGIN
jdr_utils.printDocument('/xxapps/oracle/apps/fnd/webui/HelloWorldPG',1000);
EXCEPTION
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE(SQLERRM);
END;
 
5. Create form function with property "SSWA jsp function" and webhtml "OA.jsp?page=xxapps/oracle/apps/fnd/webui/HelloWorldPG"
 

 

 

 
6. Add function to menu

 
7. Add menu to responsibility
 


8.Add this responsibility to the required user to get the our OAF page and Login with the user navigate to the responsibility menu and function then we will get the OAF page in the Application.

No comments:

Post a Comment