Order Management - EBS (MOSC)

MOSC Banner

After opening the popup page from main page in OAF, the main page buttons are not working as earlier

edited Jul 1, 2020 5:04AM in Order Management - EBS (MOSC) 1 commentAnswered

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;

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center