Feeds:
Posts
Comments

Archive for June 2nd, 2009

Oracle Workflow is tightly integrated with Oracle Apps and it is very common to invoke workflow from OAF Pages too.
The class oracle.apps.fnd.framework.webui.OANavigation provides Java wrappers for Oracle Workflow Engine’s PL/SQL APIs.
 It is very simple to invoke Workflow using OAF, again there are two options first using Java wrappers and second through calling PL/SQL procedures but [...]

Read Full Post »

There is lot of requirements where we need to use Java like zipping the files stored in database, deleting files from server.
 Oracle provides the way to access Java stored Procedure and classes from PL/SQL, we can use according to our need
Following steps are required:

Create Java class according to your requirement
Compile and load it into database
Write [...]

Read Full Post »

It is a very common requirement where we want to generate reports in PDF, MSWord, MS Excel and HTML format from an OAF page itself without submitting any concurrent program. 
To generate the output in PDF or other formats we need the following:

XML Data Definition, registered with Apps
Template, registered with Apps
XML Publisher APIs to process the [...]

Read Full Post »