OAF Parameterized Popup Issue (12.1.3)

I am unable to access the parameters set by the parameterized popup within the base page PR method.  The popup page controller PR method has no problem accessing the parameters but I need to access them in the base page controller PR method as I believe the popup documentation says is possible.  I've read everything I could find on this and I believe I have tried everything.  But the base page PR method gets null for the pageContext.getParameter("popupEvent") call when it is invoked after the popup is submitted.
I am trying to use the popup as an LOV for a detail table since LOVs are not supported in detail tables.  And everything works except for the the base page PR method.
Please help.
Thank you

It's all working except for the saving of the detail VO changes I make in the base page controller's PR method.  I can see the changes reflected in the rendered page but the changes don ot get saved to the database.
XxmclApValidatorSetRevsVOImpl vo1 = (XxmclApValidatorSetRevsVOImpl)am.getXxmclApValidatorSetRevsVO1();
XxmclApValidatorSetRevsVORowImpl row1 = (XxmclApValidatorSetRevsVORowImpl)vo1.getFirstFilteredRow("RevisionNumber",new Number(1));
RowIterator rulesIterator = row1.getXxmclApValidatorSetRevRulesVO();
while (rulesIterator.hasNext()) {
  XxmclApValidatorSetRevRulesVORowImpl row2 = (XxmclApValidatorSetRevRulesVORowImpl)rulesIterator.next();
  row2.setOperator1(operator);
I can use the master VO object to update master VO attributes in the base page controller's PR method that do get updated to the database.  So I believe it's a problem with the detail VO.  Perhaps I need to call a method to tell the AM that the detail VO needs to be saved to the database.  Any ideas?
Thank you

Similar Messages

  • Issue with Parameterized Popup

    Hi,
    I have created a parameterized popup which gets opened on click of an image. Opening the popup is working fine but custom close button (not the X icon) is not working. I have added javascript:closeit() as the destination URI of the button but nothing happens when I click the button. I also tried adding a javascript function for closing the window and put a PPR on the button to forward to the current page and execute the java script but no luck :-( Issue with using X button for closing the popup is - the control is still in the popup processformrequest afer I close the wondow using X. Whatever action I perform on the base page is yielding no results/undesired results. That's why I wanted a custom close button so that I can direct the control back to the calling page.
    Please advise.
    My requirement is to have 2 buttons on the popup region (save and close). On click on save, data should be saved and the calling (base) page should get refreshed and close should just close the popup and bring the control back to the base page. I have a standalone region created with desired fields and buttons and this region is added to the region popup.
    Can anyone please help me with this?
    Thanks in advance.
    Shreevatsa

    Thanks Peddi. Any other option of achieving this functionality in parameterized popup?
    Also I saw the below in the dev guide.
    You can handle user interactions for embedded and parameterized pop-ups as follows:
      All-Submit - Configure buttons on an embedded pop-up to submit the pop-up data and the base page data together. The pop-up closes and the base page submits after this event.
      Self-PPR - Define partial page refresh events on the pop-up to refresh the pop-up window alone. The pop-up remains displayed after a self-PPR event.
      Page-PPR - Define partial page refresh events on the pop-up to refresh the base page items. The popup closes after a page-PPR event.
    I didn't understand completely as what are the differences and how we can enable these actions on popup. I am thinking of Page-PPR which might work for my requirement but I am not sure how to enable this. Is this same as enabling a PPR on a item on the popup region.
    Thanks
    Shreevatsa

  • How to add a parameterized Popup to seeded iProc page by Personalisation ?

    Hi
    I'm trying to add a button on the iProcurement 'Add To Cart' region (ResultsInParagraphRN), to display a standard OAF popup. Release 12.
    Please let me know where I went wrong :)
    1. I read the OAF Dev Guide on popups, as far as I can currently follow it ...
    2. I made a region in a different project, and a test page, and successfully deployed that project so I can call the popup, so far no problem.
    3. I used personalization to create a Parameterized Popup and a Button to call it, in iProc, using the same values as above.
    4. When I click on the button in iProc, there is no reaction other than an 'Error on Page' indication in the browser.
    In IE6 - still our standard browser :(, I get and 'Error on Page' message, which then gives a message 'object required'.
    In Firefox, I see this message : 'popupdiv is null'. line 132 in popup.js - the last line of this fragment is highlighted -
    *//To avoid code redundency this is commen mehtod for showpopup and showpopuponppr.*
    function displayPopup()
    var winW = 630, winH = 460;
    t = document.getElementById(currentElement);
    *if (parseInt(navigator.appVersion)>3) {*
    *if (navigator.appName=="Netscape") {*
    winW = window.innerWidth;
    winH = window.innerHeight;
    *if (navigator.appName.indexOf("Microsoft")!=-1) {*
    winW = document.body.offsetWidth;
    winH = document.body.offsetHeight;
    width=popupDiv.style.width;_
    So, either I have gone wrong somewhere, or there is an issue with the Javascript generated by Framework?
    Thanks in advance for any help!

    user13501968 wrote:
    Hi ,
    Your popup id's are not properly generated.For popups under table the id's should be generated like
    tablename:popupname but in your case it is just popupname alone
    thats why you get javascript error since in run time java script cannot find popup of type tablename:popupname.
    Please share the page structure.
    Meanwhile try adding the popup under rowlayout instead of flowlayout.
    Regards,
    Guru Krishnan.Hi
    Here is (part of) the page structure (table is already nested inside another). The bit I added starts
    at <oa:flowLayout id="CustomFlow">
                  <oa:rowLayout id="ControlsRow" width="100%">
                     <ui:contents>
                        <oa:cellFormat id="AddToCartTopCell">
                           <ui:contents>
                              <oa:tableLayout id="AddToCartTableLayout">
                                 <ui:contents>
                                    <oa:rowLayout id="AddtoCartRow">
                                       <ui:contents>
                                          <oa:cellFormat id="QuantityFormatCell" extends="/oracle/apps/icx/icatalog/shopping/webui/QuantityFormatRN" rendered="${oa.current.IsItemAvailable}"/>
                                          <oa:cellFormat id="AddToCartSpacerCell" rendered="${oa.current.IsItemAvailable}">
                                             <ui:contents>
                                                <oa:spacer id="AddToCartSpacer" width="5"/>
                                             </ui:contents>
                                          </oa:cellFormat>
                                          <oa:cellFormat id="AddToCartButtonCell" rendered="${oa.current.IsItemAvailable}">
                                             <ui:contents>
                                                <oa:button id="AddToCart" text="Add to Cart" prompt="Add to Cart" shortDesc="Adds this item to your shopping cart." rendered="${oa.ShoppingPVO.IsIPFlow}"/>
                                                <oa:button id="AddToDocument" text="Add to Document" prompt="Add to Document" shortDesc="Adds this item to your document." rendered="${oa.ShoppingPVO.IsSicFlow}"/>
                                                <oa:flowLayout id="CustomFlow">
                                                   <ui:contents>
                                                      <oa:popUp id="CustomPopup" popupType="ParameterizedPopup" popupRegion="/oracle/apps/xxfss/newcart/webui/AddToCartRN" popupParameters="pItemId={@ItemId}" popupTitle="CustomPopup" height="200" width="400" readOnly="false" shortDesc="CustomPopup" comment="Custom Popup Region"/>
                                                      <oa:button id="CustomButton" popupId="CustomPopup" popupEnabled="true" text="Custom Button" prompt="Custom Button" shortDesc="Custom Button Additional Text" comment="Custom Button Comments"/>
                                                   </ui:contents>
                                                </oa:flowLayout>
                                             </ui:contents>
                                          </oa:cellFormat>
                                          <oa:cellFormat id="ItemNotAvailableCell" rendered="${oa.current.IsItemNotAvailable}">
                                             <ui:contents>
                                                <oa:formattedText id="ItemNotAvailableText" shortDesc="This item is not available." styleClass="OraTipText" text="This item is not available."/>
                                             </ui:contents>
                                          </oa:cellFormat>
                                       </ui:contents>
                                    </oa:rowLayout>
                                 </ui:contents>
                              </oa:tableLayout>
                           </ui:contents>
                        </oa:cellFormat>                                                           

  • "Define query parameters" popup in Dataset properties - Refersh field, not displayed for Sps in SSDT 2010 (Works fine in BIDS)

    When we upgraded our SSRs projects to 2012, we are facing an issue in Data tools environment.
    When we click REFRESH FIELDS button in Dataset properties, With query type as SP (For all our sps), the "Define query parameters"  popup is not displayed. 
    When we checked the SQL Profiler for queries executed at back end , NULL values are used for parameters.
    But when we Used the QUERY DESIGNER button, and clicked execute for sp, the popup comes.
    For User defined Functions, the Popup comes correctly.
    In BIDS, still we can open the RDLs and do the operations correctly
    Please advice

    Dear Wendy Fu
    My Scenario is different.
    In Query Designer, Every thing is fine (Parameter Popup is coming, and fields are populated under data set)
    But what we need to do is
    1, Select Query Type As SP
    2, Select the required SP
    3, Click Refresh Button
    4, A "Define
    query parameters" window popsup
    5, Provide values and click Ok
    6, Fields will be populated under the dataset
    The issue we face is that, we are not getting the  Define query parameters popup,
    Hence NULL values are passed to execute the sp, to retrieve the fields set.
    The Work around we are using now is editing the sp, and use
    set @Parameter = Value
    for each parameters in sp, and then we get the fields populated under dataset, when we click refresh.
    The issue exists in both  MSDT for
    Visual studio 2010 &  MSDT for  Visual studio 2012.
    But every thing is fine in BIDS with VS 2008 Shell for the same RDL

  • Task flow-call  as a Dialog with inline-popup issue JDev 11.1.1.2.0

    I have a very serious issue with task flow-call running as a Dialog with inline-popup
    have bunch of data driven table components pointing to pageDefs with Iterators
    the problem is, the dialog comes first with nothing in it (blank) and it takes 3-5 seconds to fetch all views,
    this is useless, there is no option to control taskflow-call activation , like you do for af:region
    For reference : I am talking about this : http://jobinesh.blogspot.com/2010/08/refresh-parent-view-when-in-line-popup.html
    Download the workspace , connect as HR Schema and you will see what I am talking about
    looks really dumb, it would make sense to show dialog with data all at once, rarther than looking at blank screen to wait for the data to show up
    Edited by: user626222 on Sep 20, 2010 8:57 AM
    can I call this a bug?
    Edited by: user626222 on Sep 20, 2010 1:58 PM
    sometimes I wonder if anyone tested this, as soon as you have some data driven components on your page, you get all sorts of problems in ADF
    But something simple, Adf client side invokes the Dialog as a popup first, and then it thinks oh ya I get massive pageDef to load, so end-user customer will stare at the blank screen for 10 secs , hoping that something will come up or program is crashed
    Well, I am afraid to say you lost your customer :(
    Edited by: user626222 on Sep 20, 2010 2:29 PM
    Edited by: user626222 on Sep 20, 2010 2:35 PM
    Edited by: user626222 on Sep 20, 2010 2:35 PM
    Edited by: user626222 on Sep 20, 2010 2:36 PM

    ok, knowing this fact, I want to show some kind of status indicator during the wait time.
    Unfortunately, putting af:statusIndicator does not work untill after entire page loads
    <?xml version="1.0" ?>
    <?Adf-Rich-Response-Type ?>
    <content action="/EmpApp/faces/displayEmployees.jspx?_adf.ctrl-state=5plp6ahes_72">
    <fragment><![CDATA[<span id="f1::postscript"><input type="hidden" name="javax.faces.ViewState" value="!-e8tyzkiuc"></span>]]>
    </fragment>
    <fragment>
    <![CDATA[<div id="afr::DlgSrvPopupCtnr::content" style="display:none"><div id="j_id12" style="display:none">
    <div style="top:auto;right:auto;left:auto;bottom:auto;width:auto;height:auto;position:relative;" id="j_id12::content">
    <div id="j_id13" class="x142"><div class="x157" _afrPanelWindowBackground="1"></div>
    <div class="x157" _afrPanelWindowBackground="1"></div><div class="x157" _afrPanelWindowBackground="1">
    </div><div class="x157" _afrPanelWindowBackground="1"></div>
    <table cellpadding="0" cellspacing="0" border="0" summary="" class="x146">
    <tr>
    <td class="p_AFResizable x148" id="j_id13::_hse"> </td>
    <td class="p_AFResizable x14a" id="j_id13::_hce"><table cellpadding="0" cellspacing="0" border="0" width="100%" summary=""><tr>
    <td><div id="j_id13::_ticn" class="x151"><img src="/EmpApp/afr/task_flow_definition.png" alt=""></div></td><td class="x14e" id="j_id13::tb">
    <div id="j_id13::_ttxt" class="xz8"></div></td><td>
    <div class="x153"><a href="#" onclick="return false" class="xz7" id="j_id13::close" title="Close"></a></div></td></tr></table></td><td class="p_AFResizable x14c" id="j_id13::_hee"> </td></tr><tr><td class="p_AFResizable x14j" id="j_id13::_cse"> </td>
    <td class="p_AFResizable x14g" id="j_id13::contentContainer">
    <div id="j_id13::_ccntr" class="x14h" style="width:700px;height:430px;position:relative;overflow:hidden;">
    <div id="j_id14" class="xne" style="position:absolute;width:auto;height:auto;top:0px;left:0px;bottom:0px;right:0px">
    <iframe _src="javascript:'<html&gt;<head&gt;<title/&gt;</head&gt;
    <body/&gt;
    </html&gt;'" src="javascript:''" frameborder="0" style="position:absolute;width:100%;height:100%">
    </iframe>
    </div></div></td><td class="p_AFResizable x14l" id="j_id13::_cee"> </td></tr><tr><td class="p_AFResizable x14n" id="j_id13::_fse"><div></div></td>
    <td class="p_AFResizable x14p" id="j_id13::_fce">
    <table cellpadding="0" cellspacing="0" border="0" width="100%" summary=""><tr>
    <td class="p_AFResizable x14u" id="j_id13::_fcc"></td><td align="left" valign="bottom"><div class="p_AFResizable x14y"><a tabIndex="-1" class="x14w" id="j_id13::_ree" title="Resize"></a></div></td></tr></table></td><td class="p_AFResizable x14r" id="j_id13::_fee">
    <div></div></td>
    </tr></table></div></div></div></div>]]>
    </fragment>
    <script-library>/EmpApp/afr/partition/gecko/default/opt/frame-SHEPHERD-PS1-9296.js</script-library>
    This is how it launches the taskflow-call, so there is no way to control this behaviour from the calling taskflow's jspx, feels very closed system,why ADF is not making this behavior Open by some kind of client listener,
    <script>
    <![CDATA[AdfDhtmlLookAndFeel.addSkinProperties({"AFPopupSelectorFooterStart":"x11b","AFPopupSelectorHeader":"x114","af|panelWindow-tr-open-animation-duration":"300","AFPopupSelectorHeaderStart":"x115","AFPopupSelectorContentEnd":"x119","AFPopupSelectorContent":"x117","af|panelWindow::resize-ghost":"x144","AFPopupSelectorContentStart":"x118","AFPopupSelectorFooter":"x11a","AFPopupSelectorFooterEnd":"x11c","AFPopupSelectorHeaderEnd":"x116","AFPopupSelector":"x110",".AFPopupSelector-tr-open-animation-duration":"200"});AdfPage.PAGE.addComponents(new AdfRichPopup('j_id12',{'_dialogURL':'/EmpApp/faces/adf.dialog-request?_adf.ctrl-state=5plp6ahes_76&_rtrnId=1285074907739&__ADFvDlg__=true','_inlineFrameId':'j_id14','_launchId':'r1:0:cb2','_panelWindowId':'j_id13','_rtnId':'1285074907739','contentDelivery':'immediate'}),new AdfRichPanelWindow('j_id13',{'modal':true,'resize':'on','stretchChildren':'first'}),new AdfRichInlineFrame('j_id14',{'source':'javascript:\'\x3chtml>\x3chead>\x3ctitle/>\x3c/head>\x3cbody/>\x3c/html>\''}));AdfPage.PAGE.clearMessages();AdfPage.PAGE.clearSubtreeMessages('r1');]]>
    </script>
    AdfDhtmlRichDialogService.getInstance().launchInline there is no way for me to put af:statusindicator for the wait time using this way
    <script>AdfDhtmlRichDialogService.getInstance().launchInline('j_id12');*</script>
    </content>

  • Reader X - Save dialog box popup issue

    Hello,
    I found that in Adobe Reader X whenever you goto save a file using just the "Save" (ctrl+S) option it brings up the Windows file system box prompt, which allows the user to see other windows files, folders, etc.. This is a huge issue for us as we do not want our users to be able to save to different locations or change the current filename on accident.
    How can I prevent this Save dialog from showing?  It is the dialog I would expect to get from choosing a "save as" option, not just your standard "save" option. Also, we are opening PDF files from our own software developed in C#. So if there are any open parameters I can pass to disable this save dialog that would be helpful as well.
    Please advise or provide insight.
    Thanks!
    Seth

    Seth -
    This is the expected behavior for Reader X, it's somewhat unexpected, so let me explain the rationale behind it:
    With Reader X, Adobe introduced the concept of sandbox - this mechanism severly curtails the rights provided to the Reader process to prevent exploits from running. In your case, Reader process cannot write to user's disk without users' explicit approval. The Save as dialog that you see is seeking that approval. Certain folders such as the TEMP folder are white listed, you should see if you can incorporate those into your workflows.
    You can find details here:
    http://blogs.adobe.com/asset/2010/10/inside-adobe-reader-protected-mode-part-1-design.html
    http://blogs.adobe.com/asset/2010/11/inside-adobe-reader-protected-mode-part-3-broker-proc ess-policies-and-inter-process-communication.html
    -abhigyan

  • Window popup issue in WD ABAP

    Hello Techies,
    In one of our application in WD ABAP we are facing issue while opening window popup. Window screen is not opened in popup screen but displayed in same screen at the bottom. Also we are not able to do any operation. Like putting value in input field & clicking on button. This issue doesn't appear in test system. Also this is an issue in IE7 , IE8 whereas it works fine with IE6. Also this is specific to this window, all other windows are working fine in application. Any clue?
    Thanks & Regards,
    Lakshman

    Hi Sap user
                          transfer the data from popup screen to another view make a serve side cookies. call the method set_server_ cookies from the class cl_bsp_server_sde_cookies in   Onmanipulation event. And call the method get_server_cookies from the class cl_bsp_server_side_cookies in Onrequest event.
    this will transfer the data from popu to main page.
    Thanks
    Vishwas Sahu

  • WAS Logon Popup issue for BW Report iview

    Hi
    I created a BW Report iview and mapped with the SAP BW System,
    Every time user logon to Portal, and executing BW Report iview, it is asking for WAS Logon.
    I created a system with this user credentials
    ITS
    ITS Description : BI_PRD
    ITS Host Name : biprdn.xxxxx.com:8000
    ITS Path            : scripts/wgate/webgui/!
    ITS Protocol     : http
    WAS
    Web AS Description : BW_PRD_WAS
    Web AS Host Name : biprdn:8000
    Web AS Path           : /sap/bw/bex
    Web AS Protocol      : http
    Connector
    Application Host     : 10.20.0.8
    Gateway Host     :
    Gateway Service       :
    Logical System Name : BWPCLNT200
    Remote Host Type     : 3
    SAP Client     : 200
    SAP System ID (SID) : BWP
    SAP System Number     : 00
    Server Port     : 3200
    System Type     : SAP_BW
    User Management
    Logon Method     : UIDPW
    User Mapping Type     : admin,user
    Pls can any one solve this issue which i am facing.
    Regards
    Srikanth

    Hi Achim
    Thanks for ur reply
    After changing Web AS Host Name and Application Host to FCDN, still i am getting that WAS Popup for logon.
    And for SSO we are using UIDPW method for user mapping.
    Acutally BW Report iview is connecting to the backend system and showing the report in Portal,
    But they are some Drop down list boxes in that report when i am choosing some value to display, WAS Popup for logon is comming no the screen.
    Regards
    Srikanth
    Srikanth A

  • Path Mapping popup issue

    If anyone else has an issue with the "Path Mapping" popup appearing when debugging a Flex and PHP application on your local Zend Server, here is the solution.
    When you first install Flash Builder 4.5 for PHP, it will remind you to download and install Zend Server CE.
    Once you have done that, the next time you start Flash Builder, you get this.
    Unfortunately, Flash Builder for PHP did not configure Path Mapping for Zend Server CE correctly.  When I create a combined Flex and PHP project, and go to debug it, I got this:
    The popup appears like 100 times for various php classes in the framework. I would select the bottom option of "Get content from the server for the following path:"  I would have to go through 5 minutes of clicking these popups before finally getting my application to launch.
    The problem turned out to be the Path Mapping.  If you go to Preferences --> PHP --> PHP Servers, you will see that the Local Zend Server has been added as the default.  Select it and click the Edit button. Then select the Path Mapping tab.
    The entry for Zend Framework will point to a wrong server path.
    The "Path on Server" is set to /usr/local/zend/ZendServer/share/ZendFramework/library
    It should be set to /usr/local/zend/share/ZendFramework/library
    Once I changed it, the popups no longer appeared.

    Jamie
    I just managed to install and setup Builder 4.5 for PHP with Zend Debugger.
    It was quite a headache to enable Zend Debugger on WAMP server. I have been forced to downgrade PHP to ver 5.2.11 (and subsequently to downgrade Apache version to 2.0.63) to make it work. Anyways, not a good start but I thought, ok, finally some progress. At the moment I am faced with same issue as reported in that post however I am not sure how to setup path mapping(s) so I wont be presented with 30-50 popups when trying to debug my PHP classes.
    I tried to check the status of reported bug you have mentioned but link seems to be broken.
    Example of first popup I am presented with:
    Path Mapping - Select Local Resource
    Select the local resource that matches the following server path:
    ...Adobe Flash Builder 4.5\.metadata\.plugins\org.zend.php.framework.resource\resources\ZendFramework-1\library\ Zend\Loader.php
    Get content from the server to the following path:
    C:\Users\Michael\Adobe Flash Builder 4.5\.metadata\.plugins\org.zend.php.framework.resource\resources\ZendFramework-1\library\ Zend\Loader.php
    Once I will confirm that popup I am presented with another 30-50 of these. After all is confirmed I am finally able to debug my code.
    Can anyone please advise how to setup this mapping?
    PS. I can create a separate mapping for each php file that is mentioned but surely there should be better way than defining 30-50 separate mappings...
    Regards
    Michael
    Nevermind, I have decided to create mapping for all 30-50 files. It works fine now. Good thing its a global setting and does not have to be set for each project separately;)
    Message was edited by: Michael Orzechowski

  • OAF-UCM integration - Issue in deploying RIDC.jar to EBS server

    Hi ,
    We are doing OAF-UCM integration with followng business scenario and need your help urgently.
    Business Scenario :
    We have custom OAF pages with OA train and and in one train link we have added 'managed attachment' button to open UCM page to add documents to DM server .
    We are successfully able to do integration of OAF to UCM , that is we are able to open UCM page on clicking Managed attachment button.Business agreed that OAF and UCM are two different applications so after transaction is completed in  UCM, at OAF we have refresh button which user has to clicked explicitly to pull document metadata ( lilke PDF URL etc) to OAF pages.
    This is data needs to stored in EBS tables as well , to achive the same we are using RIDC mechanism to PULL the data stored corresponding on 1 unique metadata.
    I m successfully able to integrate the PULL( Sychnonizaton) of data on click on refersh button of OAF page. RIDC ( UCM version 11g) is correctly configured in Jdev10g and working fine on local oc4j server,
    Problem :
    When this RIDC is jar is deployed in EBS server  I m getting following error -
    Request URI:/OA_HTML/OA.jsp
    Exception:
    java.lang.NoClassDefFoundError: oracle/stellent/ridc/IdcClientException
    We have added RIDC jar(actual physical path is =/APPS/XXXXXXX/common/java/)   file name in jserv.properties and also added in CLASS PATH
    # Custom classpath
    wrapper.classpath=/APPS/XXXXXXX/common/java/oracle.ucm.ridc-11.1.1.jar
    Appreciate if some can provide pointers how to deploy this external jar file (RIDC.jar) and avoid this error.
    Many Thanks ,
    Ashish

    Ok, Figured out the issue,
    Values in the OAF_AXF_CMD_PARAMS table was not matching with the actual attributes on the OAF pages. The four values
    Entity Name, Primary Key, View Object and Attributes are to be entered for each page where we are intending to have the MA button.
    Thanks,
    Rajiv.

  • Page URL and Popup issue

    Hi,
    I have a page A with a button, clicking on which will forward (forwardImmediate) to Page B. Even in page B there is a button which will take you back (again forwardImmediate) to page A. When I click the button in Page A, it takes me to Page B without any issues but the page URI still points to that of Page A!! Similarly when I click the button in Page B it forwards to Page A, but the URL shown in the page is that of page B (note that I am not sharing the AM between pages, both are having different AMs). Can somebody let me know is this is the expected behaviour when pageContext.forwardImmediate is used? How this can be solved (to show the correct URL)?
    Issue with the above is -
    In Page A I have one more button which opens a Java Modal Popup window (using openWindow javascript) where user can create some records and clicking on Close in the popup should get closed and refresh the base page (not full page refresh, only a particular VO is refreshed to ensure that newly created record is reflected in base page). This is absolutely working fine when Page A is opened and popup button is clicked. But when I navigate to Page B (by clicking the button), then comeback to Page A from Page B(again using the button available in Page B), then open the popup and click on Close in the popup, it throws the error "Opener is Null or Not an object" OR "Object required" error (I am using JavaScript "window.opener.submitForm('DefaultFormName') and window.close" in the popup for close button event). Can anybody help me with this? Since this is happening only in the particular scenario (page navigation), I assume that the issue should be with URL or something. Please help.
    Thanks in Advance,
    Shree

    Please use pageContext.sendRedirect() to show the appropriate URLs. Please go through the servlet/JSP topic understand the difference between sendRedirect and forwardURL. But, I doubt if the above would resolve the issue as it seems to be some JS specific error. Please check with the JS code.
    Regards,
    Guru.

  • Customized OAF page -- Duplicates Issue

    Hi All,
    We have a customized OAF page which allows user to perform the below operations,
    1. Query for records
    2. Add a new row
    3. Save the changes
    Issue is 3 of the fields in the page are of unique combination. We perform the validation to ensure unique values only get stored, if user tries to enter an value combination which already exists then system throws an error. But when user enters valid records and save it, the previously entered wrong data also gets stored to database.
    I have explained the scenario below, Item id/global code/local code are the unique combination fields
    1. User enters below values
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 100 T1
    Saved successfully.
    2. User now enters below values
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 100 T2
    When tries to save, get error message as Combination already exist. If i search for item id IT123 and Global code 100 it shows only 1 row
    3. User now enters below values
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 101 T3
    Saves the data successfully. But if i search for item id IT123 and global code 100 i am getting 3 rows as below,
    ITEM ID GLOBALCode LocalCode Desc
    IT123 100 100 T1
    IT123 100 100 T2
    IT123 100 101 T3
    Errored out record in step 2 also got inserted. Please assist if any of you have faced similar issue else provide some pointers in resolving the issue.
    Thanks,
    Rajesh SM.

    Rajesh,
    Issue is 3 of the fields in the page are of unique combination. We perform the validation to ensure unique values only get stored,
    if user tries to enter an value combination which already exists then system throws an error. But when user enters valid records
    and save it, the previously entered wrong data also gets stored to database.what all the steps or code u wrote to check the combination already exists or not. Post the method u have written to check the same.
    Regards,
    Gyan

  • PopUp Issue?

    Hi All
                       I have a scenario where i am using one button and when i click on that button it wil populate one popup window ... and that popup window contains title window ...  when i click on the button the popup created second time and when i click on third time the popup created third time.. so presently i have three popup created in my application... i dont want this,,, type of creation... if  once pop up created it will not allow to create the second popup .... i want it to throw an error where already popup created u cannot create second pop up ..
                       how many time i am cliking  on button it must open only one popup ... i dont want multiple popups created when i click button multiple times ....   i think u got my question .. please give me suggestions and code to achieve this issue......

    @flex4,
    Try to remove the focus from your button whenever you click the button once and your popup gets opened and try to set the Focus now on the PopUp by removing the Focus on Button. So that it will not be possible for you again to click the button once when the PopUp is already opened.
    Thanks,
    Bhasker

  • Parameters synchronisation issue with Premiere Pro CC

    Hi,
    When I ask Premiere to synchronize my parameters, all begins well but at the end of the process I get an error message "error during synchronization".
    Synchronization seems to work fine with Ae and Ps...
    Does somebody know this issue?
    Thanks in advance

    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/premiere?view=discussions
    When you go to that forum, you need to provide a LOT more information
    -PPro Information FAQ http://forums.adobe.com/message/4200840

  • Popup Issue with TF as Dialog

    Hi All,
    JDEV Version - 11.1.1.6
    We have template with command link. which opens task flow as popup through adfc-config.
    Now Issue is with double click. when I double click on a link it tries to open popup twice which is unexpected behavior also on the server it opens as blank popup.
    and also on double click I am getting this warning : <RichDialogService> <_savePageFlowScopeParameters> overwriting preexisting page flow scope parameter .
    Regards,
    Nikhil Gokhale

    Hi Timo,
    Ya it opens fine with one click. but if I double click it's generating 2 popup's one at the top for some second and then page scroll downs and open second popup with data which is unexpected behavior.
    what I want is user may click once (single click) or double click popup should open only once which is not happening.
    I tried to call same popup by creating new page without template which works fine. but once  I add template it doesn't work as expected.
    do you think is there  anything to do with <RichDialogService> <_savePageFlowScopeParameters> overwriting preexisting page flow scope parameter . ?
    Regards,
    Nikhil Gokhale

Maybe you are looking for