How to open URL iView in new window

HI,
We are not able to open the URL iView, which is assigned to page, in new window.
We set the property "Launch in New Window" to Launch in Separate Window but no use.
Please let us know the solution
Thanks

Hi Tatayya,
Remove the delta-link that you have done for that iview to the page. Change the necessary settings on the iview level (skip this part if you have already done). Then re-"delta-link"the iview to the page and test if it open in a different window.
Could also be your cache, so go ..navigate via Sys adm--> Navigation -> clear cache.
Hope that helps.
Ray

Similar Messages

  • Open URL in a new window by closing the parent window

    Hi Friends,
    Is there any option to open URL in a new window by closing the parent window on a button click?
    Already implemented the logics suggested in /people/mohammed.anzys/blog/2007/06/05/how-to-close-parent-window-in-webdynpro-applications , the thread ' URL in same window '  and the standard component WDR_TEST_EXIT_PLUG .But button is not triggerring any actions .plz help me  ..............
    Regards,
    Radhika

    hi,
    Do the following steps :
    -> Make an Outbound Plug to the Window.
    ->Make the type of Outbound plug to Exit Type.
    ->Add URL of type String as a parameter to the outbound plug of Window.
    ->Do remember to add Component Name in the Properties Tab of View ( othervs Calling Outbound plug of window from view wont b possible ).
    To open a new URL with closing the previous one write this Code in OnAction of Button : ( this Code can be get from Code Wizard too ).
    DATA lo_zexit TYPE REF TO ig_zexit .   <zexit is name of my Component>
    lo_zexit =   wd_this->get_zexit_ctr( ).
      lo_zexit->fire_out_window_plg(
        url =   'http://www.google.com'                            " string
    I hope it helps.
    Thanx.

  • Open URL in a new window

    I have a project slide with buttons that open a URL that points to the .htm project file for another project in a new window with the current project to stay running.  This causes the course to close completely in the LMS?

    Hi,
    try setting the button to open the url in a new window, that way the students will not have to "start over" when they need to go back to the module.
    Just go into your button properties and next to your url, click the down arrow and select new.  This will open the url in a new window.  You can uncheck the continue playing move choice also to stop the movie so it doesnt continue to play when the user is visiting the webpage.

  • Button is not opening URL in a new window

    I have set the action and the URL and the NEW window ...but nothing opens in Preview or once published...can you help me?

    See if the link below helps with that.
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • How to open URL in a new tab? NOT in new window!

    Dear All,
    I am a newbie to Flex and this is my first application here. Kindly forgive me for the ignorance.
    I have a tabbed pane created using ViewStack. When the user click a button on the first tab, an external URL has to be invoked in a new tab. I have written this function which successfully creates the new tab but when I try to open the URL using navigateToURL it opens in a new window:( What I need is to open the URL in the newly created tab. I have tried out navigateToURL parameters such as _self, _blank, top etc but none seems to work out. Could anyone kindly let me know the standard way to do this? is it ExternalInterface or ModuleLoader or something else? Please give me some references that would help me do it. I am trying this for quite some time now but no luck . Thanks a million in advance.
    protected function button2_clickHandler(event:MouseEvent):void
        var newVBox:VBox = new VBox();
        var newLabel:Label = new Label();
        newLabel.text = "Hotspot Mngmt panel";
        newVBox.label = "Hotspot Mngmt";
        /* navigateToURL( new URLRequest( "http://ipmsit.tsmc.com.tw/Hotspot/Hotspot/index.html" ), "_self" );*/ --opens in same window, not new tab.
        var my_loader:Loader = new Loader();
        my_loader.load(new URLRequest("http://ipmsit.tsmc.com.tw/Hotspot/Hotspot/index.html"));
        newVBox.addChild(my_loader.content as DisplayObject); - throws exception
         vs.addChild(newVBox); -- "vs" is the id of the ViewStack
    Warm Regards
    Anand Uthaman

    Anand,
    use iFrame in HTML Wrapper
    https://github.com/flex-users/flex-iframe
    Thanks
    Pradeep

  • Opening of IView in New Window

    Hi All,
    I have iView which is common to two different roles. In both roles I have to open in the same window but since a link cannot be provided with two different PCD locations. I want that iView to be displayed in a new window.
    So on click of link how we can open an iView new window?
    My other question is how do we workaround the problem i'm facing as i want that open the same link for two different roles. if i assign the iView to different role and call it then I'm affecting my Detailed navigation view. which i don't want to get effected.
    Please consider it urgent
    Regards
    Srikant

    Hi Srikant,
    In one of the iview property u can specify that open in new window.
    What i would suggest for ur porblem is that use EPCM.doNavigate as the href when u click on the link...
    Syntax
    <A HREF="myLink" onclick="return EPCM.doNavigate('target')">
    This is HTML Link</A>
    The navigation target specifies the location of an iView or a page in the current user role. The target can be obtained from the portal catalog as a value that is concatenated by folder id s, roles or other objects.
    The navigation target has to be prefixed with the corresponding navigation connector name that is used for retrieving the navigation structure. When accessing iViews and pages in the role from the Portal Content Directory (PCD), you have to add the prefix ROLES:// to the URL.
    Example:
    We have created a custom role (MyRole) and assigned an iView (MyIView) to it:
    portal_content (root folder)>>MyRole (folder)>>MyRole (role)>>MyTest (folder)>> MyIView (iView)
    The corresponding navigation target is:
    ROLES://portal_content/MyRole/MyRole/MyTest/MyIView
    Also u can try this link for more details
    http://help.sap.com/saphelp_nw04/helpdata/en/18/3fb84033a8b533e10000000a155106/frameset.htm
    Regards
    gEorgE

  • APEX... Link to open URL in a new window

    I have one of my interactive reports' column linked to a URL... so when my user click on the link it opens an associated webpage...
    How can I make it to open in a new window...
    Thanks

    Hi,
    I am trying to open my page as a popup without refreshing the parent window.
    Here is what i have done
    1. created a navigation bar entry for help
    2. pointed the entry to a page in the application
    3. opening the page as a popup with the following code in it.
    javascript:window.open('&WORKSPACE_IMAGES.APEX_Reporting_User_Guide.pdf#&P0_PAGE_NAME.','popup1');
    my help page opens as a popup, but also refreshes the parent window with a blank screen.
    i also tried a few other options
    javascript:window.open('&WORKSPACE_IMAGES.APEX_Reporting_User_Guide.pdf#&P0_PAGE_NAME.','popup1');void(0);
    javascript:window.open('&WORKSPACE_IMAGES.APEX_Reporting_User_Guide.pdf#&P0_PAGE_NAME.','popup1');return false;
    but none of these are helpful
    Am I going wrong somewhere?
    Thanks
    MM

  • How to open URL IView with dynamic url parameter (navigate_absolute)

    Hi Experts,
    i would like to open an URL-IView from the WebDynpro ABAP Application in the Enterprise Portal 7.0
    and i want to set the URL parameter dynamically. Is this possible and how can i achieve this!!
    Thx Markus

    Hi Markus,
    You can take help of the following code snippet.
    Here we are calling an Iview using absolute navigation and passing URL parameters as well
    * Select the input value entered and then pass it to REM INQ application---------
      DATA lv_inputbusobjid   TYPE          wd_this->Element_context-inputbusobjid.
      DATA lv_path            TYPE          string.
      DATA lv_tab_wd_param     TYPE          wdy_key_value_list.
      DATA lv_str_wd_param     TYPE          wdy_key_value.
      DATA lo_el_context      TYPE REF TO   if_wd_context_element.
      DATA api_component      TYPE REF TO   if_wd_component.
      DATA window_manager     TYPE REF TO   if_wd_window_manager.
      DATA window             TYPE REF TO   if_wd_window.
      DATA lo_api_component   TYPE REF TO   if_wd_component.
      DATA lo_portal_manager  TYPE REF TO   if_wd_portal_integration.
    * read the imput data first-------------
    * get element via lead selection
      lo_el_context = wd_context->get_element( ).
    * get single attribute
      lo_el_context->get_attribute(
        EXPORTING
          name =  `INPUTBUSOBJID`
        IMPORTING
          value = lv_inputbusobjid ).
    ** call remuneration inquiry window using absolute navigation
      CLEAR lv_tab_wd_param.
    * Adding parameters
      lv_str_wd_param-key = 'sap-wd-configId'.
      lv_str_wd_param-value = 'CACS_REMINQ_CONF'.
      APPEND lv_str_wd_param TO lv_tab_wd_param.
      lv_str_wd_param-key = 'BUSOBJ_ID'.
      lv_str_wd_param-value = lv_inputbusobjid.
      APPEND lv_str_wd_param TO lv_tab_wd_param.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_portal_manager = lo_api_component->get_portal_manager( ).
      if lo_portal_manager is BOUND.
    * PCD
      lv_path = 'ROLES://portal_content/com.sap.pct/specialist/com.sap.pct.erp.common.workset_reuse/com.sap.pct.erp.icmparticip.bp_folder/com.sap.pct.erp.icmparticip.15.bp_folder/com.sap.pct.erp.icmparticip.15.pages/com.sap.pct.erp.icmparticip.RemInquiry'.
      lo_portal_manager->navigate_absolute(
        navigation_target   = lv_path
        navigation_mode     = if_wd_portal_integration=>co_show_external
        window_features     = 'toolbar=no,resizable=yes,scrollbars=yes'
        business_parameters = lv_tab_wd_param
      endif.
    Hope this helps
    Regards
    Manas Dua

  • How to open Jasper report in New window (new Browser,new Tab)

    Hi,
    I'm Using oracle jdeveloper 11.1.1.4.0 fusion middleware for Jasper report. i want to open the Jasper report in new window
    In Application On click of CommandMenuItem(ExportToHTML)it opens the New Window,.While opnening this window i want to call a method (This method opens the jasper report in current browser)
    I Tried the afterPhase and beforePhase for this but doesnt work for me.while executing this using beforePhase I'm getting following Exception :
    Pls Help on this.Thanks in Advance......!!
    Java.lang.IllegalStateException: strict servlet API: cannot call getOutputStream() after getWriter()
    at weblogic.servlet.internal.ServletResponseImpl.getOutputStream(ServletResponseImpl.java:280)
    at javax.servlet.ServletResponseWrapper.getOutputStream(ServletResponseWrapper.java:112)
    at ReportsDisplayBean.exportHtmlReport(ReportsDisplayBean.java:272)Is any other way to do this ? :(
    Thanks.

    Hi,
    The view itself is a Web Part called an XSLT List View Web Part (XLV for short). This Web Part is stored on an ASPX page that is by default associated with a list or library on your site.
    I suggest you can check if the view page is valid, also, you can try to create another view, then redirect to the view page to see if there is xslt in the page.
    Here are some detailed articels for your reference:
    Create a custom list view using SharePoint Designer
    Using SharePoint Designer 2010 to Work with Web Parts
    How to: Customize the Rendering of a Field on a List View
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • Strange behavior when opening ESS iview in new window

    Hi all,
    I have a problem that i find very strange. In ESS, when opening a iView in a new window, for some users the link to the ITS service gets corrupt..
    An example:
    http://XXXXXX:54500/irj/servlet/prt/portal/prtroot/com.sap.portal.pagebuilder.IviewModeProxy?iview_id=pcd%3Aportal_content/com.ericsson.Ericsson/com.ericsson.ESS/com.ericsson.roles/com.ericsson.EP_ESS_HRMS/com.ericsson.personal_information/com.ericsson.previous_employers/com.sap.pct.ess.persinfo.pz28&iview_mode=defaultNavPathUpdate=false&buildTree=false
    If you look at this link you can see that the & sign between iview_mode and NavPathUpdate is missing and makes the launch of the iview will fail.
    If I use the same link for opening the page in a new window this error does not appear.
    I have tried to change the parameters that are passed on but this does not help..
    Any ideas?
    Cheers,
    Max

    Has anybody found a solution to this?
    We have the same problem when calling BW Reports.
    Best regards,
    Manuel Schaffner

  • Open Url iView in same window but full screen

    Hi ,
    I have a requirement where i need to open the url iview in the same window but in fullscreen mode.
    Also for eg if the url is www.google.com ,then the iview should look similar in terms of size as opened in the normal IE browser.Also the url on the portal should change to www.google.com and not http://servername:portnumber/...
    Can you please help me in doing so.
    Regards,
    Preeti

    hi,
    maybe some text as url [ggpage|http://www.google.com] is what u need, not  url view
    A URL iView is a collection of meta attributes, one of which is the URL to the information source (see )Selecting the Source URL). A built-in browser available in the URL iView Wizard and Editor enables you to navigate easily within a Web site in order to retrieve the URL of the source Web page to display in the iView.
    last word: " in the iView"

  • How to open "Dispform.aspx" in new window or tab in SharePoint List item click.

    Hi,
    I have a SharePoint list.It has column name "Description" which is "Multiple lines of Text" and "<label for="onetidAppendOnly">Append Changes to Existing Text" is Yes.</label>
    Now the view showing the Description <label for="onetidAppendOnly"></label>column value as a "View Entries...". while click the view entries. It showing the records in same window. But
    instead of that i want to open the record in New tab / New window as Popup.
    Is it possible?
    Thanks & Regards
    Poomani Sankaran

    Hi,
    The view itself is a Web Part called an XSLT List View Web Part (XLV for short). This Web Part is stored on an ASPX page that is by default associated with a list or library on your site.
    I suggest you can check if the view page is valid, also, you can try to create another view, then redirect to the view page to see if there is xslt in the page.
    Here are some detailed articels for your reference:
    Create a custom list view using SharePoint Designer
    Using SharePoint Designer 2010 to Work with Web Parts
    How to: Customize the Rendering of a Field on a List View
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • How to open PDF file in new window as default

    I have .pdf documents into which I have inserted links to other .pdf documents using pdfEdit995
    (I am a 77-year-old pensioner recording monumental inscriptions, not very computer literate and not able to afford expensive applications !) 
    The links in the temp.ps file (which pdf995 creates first) look like :-
    [ /Rect [85 225 107 228]
    /Border [ 0 0 0 ]
    /Action /Launch /File (.\\Another Folder\\TARGET FILE.PDF)
    /Subtype /Link
    /ANN pdfmark
    The links work fine, but open in the same window, which is annoying as it is then neccessry to re-open the original document, scroll down to the required page and find the next link.
    pdf995 support say that perhaps Adobe reader can be set to open in a new window, but I want this to be the default when I circulate my file to interested people, so would prefer to modify the links.
    Can anyone help with a smple solution ? (I also believe in Santa Claus !)
    System: Vista; Reader X 10.1.0

    I don't know if you can change this in the PS file, but if you had Acrobat you could embed the following code into your file, that will make sure the links open in a new window. However, you should be aware that this code will change the preferences at the application level, which some people might not appreciate.
    The code is:
    app.openInPlace = false;

  • How to open html attachment in new window?

    My application has a feature to download different types of files(pdf, xls, html)
    When user clicks on the respective links, a popup with Open, Save and Cancel option will come up.
    Now the problem is when the attachment is html and user clicks Open, it opens in the main window.
    I want it to be opened in a new window. It works fine for all other types of attachments.
    Find below by code:
    os = response.getOutputStream();
    response.setHeader("Content-Disposition", "attachment;filename=document"+strDocExtn);
    response.setContentType(strContentType);
    response.setBufferSize(4096);
    response.setContentLength(bByteArray.length);
    os.write(bByteArray, 0, bByteArray.length);
    os.flush();
    os.close();strContentType and strDocExtn is dynamic
    1. For html files it will come as text/html and .htm
    2. For pdf files it will come as application/pdf and .pdf
    similarly for other types..
    Only html is giving me headache :(

    target="_blank" did not work.
    The attachment does not open directly. In other words, i do not use href.
    The link is having an onclick event, which in turns calls the struts Action class and the response is returned as an attachment.
    <a href="#" onclick="javascript:openAttachment(this.value)" value="123">And the value is unique id with which I can find to file to be downloaded.
    Again the file I cannot access directly. I get it as byte array, which I put it in to my response.

  • How to open URL as a popup window through BRANCH in APEX reports

    Hi
    I am using APEX 4.0
    I have a branch with a target type of URL. The branch is triggered by pressing a button. There is also a plsql process on the same button which fires at the process point of "On Submit-After Computations and Validations". I want to open the branch URL as the popup Window. I tried doing it with javascript, but then the plsql process doesn't execute. Any pointers will be helpful.
    Thanks
    Hina

    You can use the apex.submit javascript function. This function allows to store some item value from session scope to database scope. So that a page process picks the correct item value. Not sure if it works with computations thou.
    See the docs: JavaScript APIs
    Example
    Submits the current page with a REQUEST value of 'DELETE'.
    apex.submit({ request:"DELETE", set:{"P1_DEPTNO":10, "P1_EMPNO":5433});
    Then add a branch with type "branch to function returning URL" This page branch can be made conditional on the same request as the page process.
    The returned url would be either include the javascript popup or window.open function or simply be the url. Important thing here would be to use a function that reads the url item  from database state, since at that moment the computation or page process will have set the item on database level, but it is not directly available on page level.
    meaning ":p2_item" or v('P2_ITEM') should work. &P2_ITEM. in the url will probably not work.

Maybe you are looking for

  • Script needed to generate a list of paragraph and character styles from the Book Level

    Hello, I am using FrameMaker 11 in the Adobe Technical Communication Suite 4 and I need to find a script that will generate a list of paragraph and character styles from the book level. I am working with unstructured FrameMaker books, but will soon b

  • Win 7 or 8 with a new W530?

    Hidy ho. I realize that no one can make this decision for me, but I'd greatly appreciate input from users savvier than I. I've been running Win XP on an old Dell these last seven years, and it's time for a new laptop. Am on the Lenovo site now, custo

  • Fatal NI connect error 12170

    Hi Everyone, Recently my users have been complaining about lots of TNS-12535: TNS:operation timed out or TNS-00505: Operation timed out. In checking the alert log, there are tons of timeouts occuring per day. We have an application that is written us

  • Powershell Active Directory Account Expiration Script

    I am putting together a script that creates a user account in AD, sets the password, adds groups, etc.  The part I am having problems with is when the user selects the Contractor employee option and is prompted for the expiration date of the AD accou

  • Logic remote wlan problems

    Hey, guys, I'm experiencing connectivity problems when trying to connect Logic Remote with an iMac running Logic Pro X. Both in the same network of course, all other apps requiring to connect the iPad with any Mac in the network work very well, inter