Friday 17 June 2016

Launching the Oracle ADF application from the Oracle EBS

The use case is to launch the ADF application from the Oracle EBS suite. The below process guides you to achieve it.
Create a jsp page Example.jsp and pace it under the $OA_HTML. This JSP will retrieve the URL                             defined in the EBS function and redirects to the ADF application.
          Example.jsp
          <%
           String redirectURL= request.getParameter("URL"); // This we will define in the function
            response.sendRedirect(redirectURL);
           %>
Now we need to create a function in EBS that stores the URL of the ADF Application. In the below screen shot under the parameters section we need to pass the application URL.

In the Web HTML give the JSP name we created.


The JSP file must be compiled and the OA core server must be bounced for the JSP changes to take effect. Once compiled the class file for the JSP is created under the $COMMON_TOP/_Pages folder.


Now create a menu function(personalization) that calls the function you have created in the earlier steps. You can use the same function on any screen to launch the  ADF application.

No comments:

Post a Comment