Skip to main content

Posts

Showing posts from October, 2018

OAF to ADF Integration OR EBS to ADF Integration OR Deploy ADF Page in EBS

Oracle Fusion Middleware is  demanding and very much a need of today .But there are situation or customers who still want to be in EBS but want's the advantage of Middleware functionality. For example , customer is happy to see rich experience of ADF , but want this to be integrated with EBS. However , Oracle has developed different tools which take care of only integration. Below is an example of integrating EBS to ADF manually without any tool. 1) Create a Page and link an OAF Controller in EBS (this will be our landing place to land on ADF). *****Controller sample syntax************ We will write our code only in Process Request part and nothing will be required in process form request.   public void processRequest(OAPageContext pageContext, OAWebBean webBean) {         logMessage(pageContext, "processRequest:STARTS");         super.processRequest(pageContext, webBean);         HashMap params = new...