After opening the popup page from main page in OAF, the main page buttons are not working as earlier
I used the below logic for calling a page as popup
1) Create Image bean on your page or region.
Lets say you have created Image bean having id DetailsIMG
2) Create a page or region that you want to open as a popup.
3) Add following code in process request method of main page's controller.
/** Opening the popup
*/
OAImageBean img = (OAImageBean) webBean.findChildRecursive("DetailsIMG");
String url = "/xxtst/oracle/apps/per/selfservice/job/webui/XxTstPG";
// String Popupparams = "P_OrderNo={@OrderNo}&P_EmpCi={@EmpCi}";
// String page = url + "&retainAM=Y&fndOAJSPinEmbeddedMode=y" + "&" + Popupparams;
String page = url + "&retainAM=Y&fndOAJSPinEmbeddedMode=y";
String destURL = OAWebBeanConstants.APPS_HTML_DIRECTORY + OAWebBeanConstants.APPLICATION_JSP + "?" + OAWebBeanConstants.JRAD_PAGE_URL_CONSTANT + "=" + page;