Navigation within a pop-up window.

Hi,
I have a question regarding navigation within a pop-up window.
The pop-up window is generated as below, the component usage is defined in the runtime repository for the main window.
lo_contracts_popup     = comp_controller->window_manager->create_popup(
    iv_interface_view_name = 'TEST_REPS/MainWindow'
    iv_usage_name          = 'RepsList'
    iv_title               = lv_reps_otr ).
  lo_contracts_popup->set_window_width( '800' ).
  lo_contracts_popup->set_window_height( '500' ).
  lo_contracts_popup->open( ).
Within the component, there are two views defined and assigned to that window.  If the component is tested by itself navigation is possible in the usual manner using a navigational link,  clicking the button calls the outbound plug, then the inbound plug then the bsp page and then the screen changes to show the new view, this uses the following code
CALL METHOD op_toamendrep( ).
Then in the outbound plug:-
  me->view_manager->navigate( source_rep_view = me->rep_view
                              outbound_plug   = 'ToAmendRepresentative' ).
However when the same chain of events is actioned in the pop-up, the navigational link is called the plugs are called and the associated BSP code is run through in the debugger, but the actual screen in the pop-up window is still shows the first view, not the second as we would expect.
Can you please help me to resolve this issue?
Thanks in advance,
Gareth Smith

I had the same issue and I found turning off safai extensions fixed the issue.  Must be an extension that's causing this problem.

Similar Messages

  • I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content)

    I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content) is there a fix to this problem? using 8.1, Monitor is a high res.2560x1440.

    Another View.
    the GUI is so hard to read (so small) I enlarge my Ps UI by the instructions below...which helped a lot.

  • Auto resize a pop up window

    Hi,
    I have a pop up window that appears when you click on a link. The problem that i am having is that when the user does not select anything from a drop down list or inserts any comments within the pop up window, the pop window displays error messages(validation checks) which hides most of the buttons and information within the pop up.
    Is there any way where the pop up can resize itself to a postion when those error messages appear so that all the information is visible without the user having to re size it themselves.
    any help will be appreciated
    Monica

    If you are not passing any values through the URL you could implenet Popup2() like this...
    1. Make a display as text item and remove the label.
    2. In the pre element text put
    <a .href="javascript:popUp2('f?p=&APP_ID.:38:&SESSION.::NO:::', 600, 800);">Click Here</a>remove the . infront of href (the forums will filter out the link if i don't put it there)
    This is a link to page 38 in your current app using your current session.
    When you run your app you should see a link that says Click Here and it should create a popup window to page 38 of your application.

  • How can I open the WD iView within the same pop-up window?

    I have created a Web Dynpro(for ABAP) iView direct link that a hyperlink action.
    (From different Web page)
    And I used window.open(appointment to target) of javascript for opening only one window.
    However When I click the link it opens in a new window every time.
    (Also iview of different type is same)
    How can I open the WD iView within the same pop-up window?
    Could anybody help me by giving suggestion and codding?
    Regards
    Jin

    Hi JinKyu,
    Have you tried <b>window.location()</b> in place of window.open() something like
    <b>window.location = 'URL'</b>
    Rgds,
    Vivek

  • Possible to display the POP-UP WINDOW???

    Hi,
    I need to copy or some times need to paste or some task which is very easily displayed in Microsoft products which is called POP-UP WINDOW.
    Can I Use that in my form? I am working in Developer 6i.
    Farhad

    Hi farhad,
    I told u the way u can create the popup for the any item through object navigator. Please refer online help for details. There is clearcut picture in online help about the topic u asked. I think u are a developer, instead of asking sample, please refer Formbuilder reference guide which available in otn.documentation, which help u a lot and u can solve the problem on your own
    regards
    prasanth a.s.

  • How the Pop UP window got closed on line select

    Hi All,
    at BP_ADDR component we are calling component BP_SEARCH_HELPS by cross component usage on F4,
    then we are doing bank details search, then on single line select at View BP_SEARCH_HELPS/BankKeySearchHelpResult
    then it goes to event handler method EH_ONSELECT then.
    inside this method we have code for to call window outbound plug RETURNRESULT'
    METHOD eh_onselect.
    via viewmanager:
      DATA: lr_window          TYPE REF TO cl_bsp_wd_window.
      lr_window ?= me->view_manager->get_window_controller( ).
      lr_window->call_outbound_plug( iv_outbound_plug   = 'RETURNRESULT' ).
    endmethod.
    but at Window out bound plug there is no code for cross comp Window navigation (like Fire_outbound_plug with navigation link)
    then also popup is closing and it gets navigating to BP_ADDR component, how it happenning...?
    code at window BP_SEARCH_HELPS/BankKeySearchHelpW outbound plug is
    method OP_RETURNRESULT.
    endmethod.
    there is no navigation link also defined for window BP_SEARCH_HELPS/BankKeySearchHelpW at Runtime repository.
    one more question is how the event handler method EH_ONSELECT is executed for line select (we r not define any server event for any field of table's context node), is it property of Table context node?
    Thanks,
    VjMhyd

    Hi VJ,
    I hope you are able to find the answer to your question that "how pop up is closing and navigation is done to BP_ADDR component" if not here is the answer.
    Go to your window class and search for method call_outbound_plug ( remove the filter check box ). inside that method firstly your outbound plug method RETURNRESULT will be called and then you will find another method fire_outbound_plug. inside this method there is code to navigate back and close the pop up. this code is only triggered for pop up cases and that's how navigations takes places.
      check if this is a popup rep. view
        if ME->IS_TOPLEVEL_WINDOW = ABAP_TRUE.
        We ignore the navigation for popups but save the outbound plug if given
        and tell the current popup to get closed
          data: LV_VIEW_MANAGER    type ref to LCL_VIEW_MANAGER,
                LV_APPL_CONTROLLER type ref to CL_BSP_WD_APPL_CONTROLLER.
          try.
              LV_VIEW_MANAGER ?= ME->VIEW_MANAGER.
              LV_APPL_CONTROLLER ?= LV_VIEW_MANAGER->GET_APPLICATION_CONTROLLER( ).
              LV_APPL_CONTROLLER->POPUP_MANAGER->CLOSE_POPUP( IV_OUTBOUND_PLUG ).
            catch CX_SY_MOVE_CAST_ERROR.                    "#EC NO_HANDLER
          endtry.
    I hope this clarifies your issue.
    Thanks
    Sudhir Grover

  • How To: create legaleze pop up window in pdf form?

    Hello all. I would like to incorporate a pop up window with my company's legaleze for authorization to use our images in our customers marketing materials. The purpose of the legaleze is to inform the customers our policy on using our images in their marketing materials. The pop up would obviously contain two radio buttons (1. I Agree AND 2. I Disagree) Where if they agree they can continue to fill out the form and request images. But if they disagree they will not be allowed to fill out the form and submit it.
    The form will be distributed via email, and be downloaded from our website.
    The most important aspect of this is that the pop up window with the legaleze function properly. The secondary aspect of the form not being able to be filled out if they disagree is not as  important. Obviously if I see that they disagree, I will not release the images.
    Thanks for your help!

    Adding layers to a PDF is a new feature in version 9 (you can work with layers in version 8, but have to add them in InDesign).
    In 9, add the layers Navigation Panel (View>Navigation Panels>...), then click the gear symbol and choose Import as Layer, and select your PDF with the legal agreement.
    You can control the layer visibility with a button action (one action is "set layer visibility"), and JavaScript can be used to show or hide buttons. So your accept button would have two actions, one layer visibility action and one execute JavaScript action that controls field visibility. A field called Name is controlled by changing that button's display property (hidden/visible):
    var a = this.getField("Name");
    a.display = a.hidden;
    etc.
    For more JavaScript info, check here.

  • Small pop up window inside a portal page

    My portal page has one html portlet. I need to have a small pop-up window on this page which contains periodically changing messages(message is retrieved from a table in the database). The popup window should appear if the message inside the popup message has changed, otherwise it should not appear.
    this is my code below:
    declare
    cursor cur_popup is
    SELECT POPUP_MSG_READ_FLG
    FROM app_users
    WHERE PORTAL_USER_ID = portal30.wwctx_api.get_user();
    BEGIN
    open cur_popup;
    fetch cur_popup into msg_read;
    close cur_popup;
    IF msg_read = 'N' THEN
    url := PORTAL30.wwv_user_utilities.get_url('CAPS.LINK_POPUP');-- links to a portal page with popup
    portal30.wwv_redirect.url(p_url => url);
    ELSE
    url := PORTAL30.wwv_user_utilities.get_url('CAPS.LINK_without_popup');--links to a duplicate portal page without popup
    portal30.wwv_redirect.url(p_url => url);
    END IF;
    END;
    I don't want to maintain duplicate portal pages -one with onLoad=window.open('popup') and the other page without the pop up.
    Pls. suggest an alternate method. How can I pass parameters to the portal page and retrieve it in my portlet's javascript? Please let me know as I need it urgently.

    Hi Lavanya. I have implemented the same.
    Within my oracle tags, I'm using htp.print to produce the javascript for opening the window if it has not yet been viewed. It gets a bit confusing to produce one language syntax with another, but seems to work fine - you're kind of saved by pl/sql's single quote syntax vs. javascript double quotes!
    Some improvements I'd like to make are for cases where the browser has cached the content (which tells the browser to open a popup window) and to produce a receipt when the user clicks "OK" in the popup, rather than when the page is delivered.
    Let me know how it goes. Sounds like a common need - maybe we should get together and publish a new portal component! :^) Thanks, Luke.
    My portal page is not generated from within my pl/sql. My code just calls the link which,in turn calls the portal page. The portal page contains a html portlet, and the popup window is opened from <body onLoad = window.open(.....)>
    so, i cannot use htp.p here.
    Pls. help!!

  • How do I stop the pop-up window in Facebook that asks "Are you sure you want to navigate away from this page"

    It recently started to ask this every time I do anything on Facebook.

    Yes, this pop-up window in facebook is getting extremely annoying and most times after clicking on Ok, it will take me to a page totally opposite to where I wanted to go.
    When I chat on the Scrabble Discussion Board I have to click Ok constantly with each post even though I am not navigating away from that page but merely replying to a post on the same original page.
    It is not present on Chrome or IE 8, just on firefox, why?
    Please remove, fix, or tell me how to disable this totally useless pop-up.

  • I need an AS2 button that closes out a pop-up window...

    So, I’ve constructed a portfolio site with ActionScript 2.0, but I would like the pop-up window that displays the portfolio image to have its own ‘X’ button that closes the swf movie from the browser.  I’m assuming that the code begins something like this:
    on(release){
    //actionscript 2.0 code that closes the browser window.
    Any suggestions on how this will work across platforms and browsers?
    Best,
    R.

    Hi kglad,
    My main flash as2 file has a stage size of 1200 width x720 height.  I’ve looked online through various methods on creating pop-up browsers that will display a portfolio image when a button on the main.swf is clicked.  Having no luck in finding what I needed (most tutorials just give getURL examples where the image is displayed in a separate tab), it finally dawned on me to create an overlaying movie, of the same size as the document size, on the top layer of the primary flash stage.  Setting the movie symbol as ‘invisible’ keeps the movie symbol inactive and invisible until called by an action.  The button on the main.swf that calls the movie has the following as2 script attached to it:
    on(release){
                   loadMovie("images/aauComp.swf", _root.movie2);
    However, the aauComp.swf file is where the exit button is located.  I need to implement an on(release){} method onto the exit button in aauComp.swf  that will close the movie out in the main.swf file.  Here’s the double wammy, though: the exit button on the called movie file, aauComp.swf, does not recognize any gotoAndStop(); or on(release){} functions relating to itself when it is loaded. For instance, since I could not find any functions that would close the movie out and return me to the main.swf interface, I wrote the following command on the ‘exit’ button in aauComp.swf:
    on(release){
                   _root.gotoAndStop("blank_frame");
    Where “blank_frame” is within a scene of aauComp.swf that is completely empty – which should, in theory, allow for interaction with the main.swf below the loaded movie since there is nothing on that layer of the loaded aauComp.swf movie.  Make sense?  The ‘exit’ button works fine when aauComp.swf is tested and published by itself, but when it is called into the main.swf with the loadMovie(); function, the 'exit' button will not work and, so, it will not forward to the “blank_frame”.
    Any suggestions?  Let me know if you need anything clarified.
    Thanks.

  • Customizing time of DSM.Terminator pop-up window

    Hello,
    when doing a "log out" from the portal the pop-up window of the DSM Terminator Component appears.
    On help.sap.com I found the following under the topic "Session Release Agent":
    ...To close the sessions, a small additional window is generated in the browser outside the visible screen area. This window is automatically closed after two seconds if the Transmission command has been processed...
    BUT I did not find any parameters to change this beaviour.
    My question is now where can I customize this period of two seconds? Or is it hard coded?
    Or is it possible to place the pop-up window in the background, lets say "behind" the portal browser window?
    Any other possibilities or ideas?
    Thanks and best regards
    Steffen

    Hi Steffen,
    first, welcome (back) on SDN
    About your question: That was more or less a tough one But here comes the solution:
    The value is set through the following code:
    myForm.Autoclose.value = (this.Debug) ? "" : "1000";
    It's hardcoded within JS-Files, but this way you can edit it easily: To be found under \usr\sap\<ID>\j2ee\j2ee_00\cluster\server\services\servlet_jsp\work\jspTemp\irj\root\portalapps\com.sap.portal.epcf.loader\script\[optimize|standard]\js1[?]_epcf.js
    Hope it helps
    Detlev
    PS: And you already know the thank-you-point-system on SDN, don't you?!

  • Pop-up windows in webmin filemanager are behind the firefox app

    When i use the java filemanager application within webmin to administer my websites all the java app windows are poping up behind the firefox screen. The only way to edit information in the "pop under" java windows is to move the firefox window to the side, it is impossible to get these in focus on top of firefox.

    I have several pop-up windows being called from my Java applet.
    In chrome anf Firefox 4 they all end up behind the browser window.
    It seems the "z-index" is somehow wrong after these new browser updates.
    The same browsers are the once that no longer support drag-n-drop into applets (Chrome and Firefox 4). This bug occured at the same time (caused by the same browser update)
    Maybe they are related bugs somehow???
    Anyway I would love both bugs to be fixed. :=)

  • Pop Up windows in Reader XI

    I am running Reader XI and there is a problem with pop-up windows within the programme. The printer pop-up window comes up with all the buttons but no text and any other pop-ups are at such a large resolution that they are impossible to manage and read.

    That's in your DPI/PPI settings
    Edit>Preferences

  • Problem in creatign pop up window

    hai gurus i am using the following code for creating a pop up window wehn i press button but when press a button it is giving exception  can any one help me out if anything missing
    i am calling this method on button action
    the exception
    Das Window TESTWINDOW existiert nicht innerhalb der Komponente ZPOPUP
    data :  l_window_manager type ref to if_wd_window_manager,
            l_cmp_api type ref to if_wd_component,
            l_window type ref to if_wd_window   .
            l_cmp_api  =  wd_comp_controller->wd_get_api( ).
            l_window_manager  = l_cmp_api->get_window_manager( ).
            append 'it is pop up window' to lt_text.
            CALL METHOD l_window_manager->create_window
              EXPORTING
               MODAL             = ABAP_TRUE
                window_name       = 'TESTWINDOW'
                 TITLE            =  'my window'
                 CLOSE_BUTTON      = ''
               BUTTON_KIND       =
               MESSAGE_TYPE      = IF_WD_WINDOW=>CO_MSG_TYPE_NONE
               CLOSE_IN_ANY_CASE = ABAP_TRUE
              receiving
                window            = l_window
       regards
    afzal

    Hi Mohammad,
    The error says that the window TESTWINDOW that you are passing to the window_name attribute of create_window does not exist. I guess that you would have created a view to be displayed as the popup. So now right click on the WINDOWS node on your left hand side & select "Create". Create a new window TESTWINDOW. Then double click on this newly created window & go to the "Window" tab & embed the view within this window. It should be working fine.
    Regards,
    Uday

  • Passing parameters in a pop up window

    i just wanna know how to pass parameters in a pop up window.. thanks

    Hi baby,
    document.getElementById(page).onclick = popUp;The above line appears strange to me ..
    I have a simpler version for you based on ur code ...
    function NewWindow (jsppage)
    var mnth = document.forms[0].cmbmonth.value;
    var yr = document.forms[0].cmbyear.value;
    page = jsppage+'?cmbmonth='+mnth + '&cmbyear=' +yr
    window.open(jsppage,"","height=250,width=400,status=no,location=no,toolbar=no,directories=no,menubar=no");
    <input type ="button" onclick="NewWindow ('SP_2.jsp')" >
    So youe need not pass the cmbmonth , cmbyear value in every function call since u can access the value within javascript itself.
    By the way I hope cmbmonth & cmbyear are not drop downs otherwise you might need to do like this ..
    var ind = document.forms[0].cmbmonth.selectedIndex;
    var mnth = document.forms[0].cmbmonth[ind].value;

Maybe you are looking for

  • Method not found: viewAttribute

    I am using Lightroom 1.3 at the moment. The library has been originally created in a beta version and subsequently updated by the newer version. It is located on a removable USB disk drive, and is shared between two computers. The images are are loca

  • Can't remember email for Apple ID

    So i recently broke my iPhone and had to get it replaced but thankfully it was backed up. Unfortunatelly I now can't remember the email that I used for my Apple ID and so I can't get the backup to restore my new phone. Does anyone know how to find ou

  • IWeb 08 - poor color management

    Since updating from iWeb 06 to iWeb 08, iWeb changed all my pictures on my webpages making them darker. Nobody asked for that...... Seems iWeb cannot handle untagged RGB. Anybody had the same problem or a solution? Cheers, Nikolaus

  • Why does "Find Next" in AW 6.2.9 stop working?

    Hi, I've been using ClarisWorks 4.0v6 database for many years (OS 7.6.1). I migrated them to AppleWorks 6.2.9 (OS 10.4.11, G4). They're ordinary postal mailing lists. However, *within 5 minutes to 2 hours, the "Find Next" function stops responding.*

  • HT4009 iTunes is not letting me make in app purchases,saying that I need to contact apple for support

    Every time I go to purchase something from the app, a pop up keeps saying I need to contact iTunes for assistance, I don't know why it's doing this and it cannot be that I have low fund and its a new iTunes account also..