Archive


Category: OAF

  • How to find the current version of JDeveloper for Oracle E-Business Suite

    Click on Help About – If it shows OA Extension , it means its a valid JDeveloper for OAF, else it is not capable to create OAF pages Following is the information from Oracle MOS About Finding the right version of Jdeveloper for Ebiz.  How to Find the Correct Version of JDeveloper to Use with […]

  • OAF XML Publisher – XDOException in R12.2.*

    When integrating OAF with XML Publisher or Migration EBS R12.1.3 code to EBS R12.2.* – always there is a chance of XDOException class not found. Please refer to the below jar file for the purpose of : XDOException class – get the xdo10g.zip — library/jar file From Server to Local Machine

  • 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 […]

  • OAF – Popup Region on Button Event

    Lets Understand the components involved in designing the above sample OAF Page – OpenPoupPG Popup Region – PendingWithDetailsRN – Region Path : /xxsar/oracle/apps/fnd/webui/PendingWithDetailsRN Shared Region : /xxsar/oracle/apps/fnd/webui/PendingWithDetailsRN In the main Page – Create the below : Region Style : popRN of style : popUp points to the shared region Create the button with the below […]

  • OAF/ADF – Get Current Date and time

    Get Current Date and time We usually need to get current date and time in java class. It is easy to get current date for java.util.Date class. java.util.Date date = new java.util.Date(); This date object gives current date and time. To use this date and time this can be formatted in needed date format as […]