How to open iview in new Window

Hi frnds,
Can u help me plz, am trying to open iview in new window.
i'v try to changed ivew property @ Launch in New Window = Display in Saparate Window but still @ my portal iview is displaying in Content Area only i want display in new window.
And i tryed @ Sys.admin -
> Sys.Config-->ServiceConfig-->Applicaitons ->com.sap.portal.epcf.loader
Change workprotect.mode.default to 2
still its getting in sam content are plz can u help out ASAP..
ThanQ Vita

Hi Richard,
The property Launch in New Window = Display in Saparate Window should work. Try to assign the iView directly to the role and check. It might also be some cache problem. Try to navigate to System Administration>System Configuration>Navigation Cache.
Clear them and check once again. Hope it might solve your problem.
Regards
Basha

Similar Messages

  • Open iView in new window in fullscreen

    Hi,
    I would like to open an (URL) iView in new window and maximize it size to expand on all the screen. Something like: width=100% height=100%.
    Unfortunatly, the window feature properties does not allow this, it only allows passing width and height in pixels.
    Does anyone has a solution for this issue? How to open iView in a new window in full-screen.
    Thanks in advance,
    Aviad

    Hi Aviad,
    You could set "fullscreen=yes" (without quotes) for the property called "Window Features" (technical name: "com.sapportals.portal.navigation.WinFeatures") on the navigation element in question (iView or, if existent, surrounding page). Take care, this opens the window without frame and toolbar (closable by ALT-F4).
    To get a 100% screen (with toolbar, frame etc), you have to calculate the clients resolution before, using JS for example. So you would need to build a workaround, for example an iView with no output but opening a new window with a certain NavURL as target.
    Hope it helps
    Detlev

  • How to open page in new window while handling event on link.

    Hi all
    I have a requirement where page should be opened in new window when I click on link.My item style is 'link'.Despite of mentioning target frame _blank, I m not able to open it in new window.I m handling event by setting Action Type as fireAction.I hope this might be the reason because of that this happened. Can somebody suggest some solution so that I can open it in new window.
    Thanks,
    Bhupendra

    Hi ,
    though i am not able to answer, i can get some answer for my question.
    How the link item is handled thru the ActionType and event in the Client Action..?
    The reason for this question is that we are trying to extend the customer search page in AR - EBSR12. there the search result page has the Account Name as a link and the Action event says viewAccountName and the action type says firePartialAction. I am trying to understand this so that i can add more parameters to the link so that i can use them in the target page of the link..
    Any help is appreciated..
    Thanks
    Chidam

  • Open iView in New Window via Link

    Hi,
    I have created a link that opens an iView within a role:
    <b>http://server:port/irj/portal?NavigationTarget=....</b>
    Although, I have set the the iView parameter to <b>Open in Separate Window</b>, it is displayed within the portal content area. How can I achieve that the iView is opened in a separate window?
    Thanks.
    /Elvez

    Hi Elvez,
    So you want the user pressing the link, a new browser window opens with the portal, and from that, an additional window opens with the iView?! Hm, if it makes sense for you...
    No, EPCM calls of course don't work within an eMail. And the solution you have implemented is the one to go, whether implemented as KM doc or as an iView rendering the JS.
    Hope it helps
    Detlev

  • Open iView in new window with no IE nav

    Using EP6 SP2:
    From the third level navigation, I need to open an iView in a new window.  The trick is that I need the new window to not have the standard IE navigation buttons.  Basically, window.open("http://my.url.com","toolbar=no").
    I cannot figure out how to do this within the standard navigational structure.  The url that I am linking to is outside of the portal, but it is using an SSO logon ticket to authenticate.

    Write a html page that opens the url like you want it.
    Put this html on a km folder and make a km-document iview to it.
    Message was edited by: Rob Hiddinga
    I just thought of a better way:
    just make an iview to the website and put your options ( fullscreen=yes) in the propertie Window Features
    Let us if this solved your problem

  • Open iView in new WINDOW for CATW

    HI All,
    We are on Netweaver2004s and the browser used is either Internet Explorer 7 (Microsoft Vista) or Mozilla Firefox.
    Now what I need help on is that I have a link on my page that says "Report Your Time", this link calls the Internet Service CATW via the  ITS from my R/3 and opens the TIMESHEET (which is an iView) to be filled in by the user <b>in a new window</b>.
    On this TIMESHEET I have a link called as "EXIT" , now after the timesheet is filled and saved, the user should use this "EXIT" link to leave the window. The code behind "EXIT" is so written by SAP that it kills the user's session. But not always and all user's use this "EXIT" link, they generally close the window by browser's (X) close button. This causes the user to get locked in the backend.
    So far I have been able to trap the browser's (X) close button and kill the session by using "setOKCode('/nex')". This works fine in I.E 6 (which has no tabs) and if the user <b>closes</b> Mozilla Firefox from the top (X) close button of the browser.
    BUT, in I.E 7 and mozilla firefox, when the user clicks on "<u>Report Your Time</u>" link on my page, a new tab opens and the TIMESHEET is displayed on this tab within the same browser window, so after filling and saving the timesheet when the user closes the (TIMESHEET) <b>tab</b>, the session does not get killed and the user gets locked in the backend. Here, <b>if</b> the user had closed the entire browser window by using the  the top (X) close button of the browser, instead of just closing the <b>tab</b> containing the TIMESHEET, then his session would have been killed by my code.
    This is the code that identifies if the user has clicked on  top (X) close button of the browser. <b>But this code does not identify if a browser's tab is closed.</b>
    <BODY onbeforeunload="HandleOnClose()">
    <script language="javascript">
    <!--
    function HandleOnClose() {
       if (event.clientY < 0) {
          event.returnValue = 'Are you sure you want to leave the page?';
    In the above I check clientY property of the event object, which is used to set or retrieve the y-coordinate of the mouse pointer's position relative to the client area of the window, excluding window decorations and scroll bars.
    Is there a way to capture the closing of a browser's tab. A way by which I can trap the event raised when the browser window's tab is closed.
    This has to be done via "Java Script" since the code will be placed in the HTML template in SE80.
    Kindly help with your expert suggestions
    Regards
    Saurabh

    Hi Aviad,
    You could set "fullscreen=yes" (without quotes) for the property called "Window Features" (technical name: "com.sapportals.portal.navigation.WinFeatures") on the navigation element in question (iView or, if existent, surrounding page). Take care, this opens the window without frame and toolbar (closable by ALT-F4).
    To get a 100% screen (with toolbar, frame etc), you have to calculate the clients resolution before, using JS for example. So you would need to build a workaround, for example an iView with no output but opening a new window with a certain NavURL as target.
    Hope it helps
    Detlev

  • Open iviews in new window from detailed navigation context menu function

    hello,
    when we click in the detail navigation menu and in the context menu (because many of ours users are used to right click to open a link in a new window on the internet) on the functionnality "open in new window", the start page is always display instead of the corresponding iview ...
    could you tell me if there is a configuration into the portal to :
    1- suppress the function "open in new window" from the context menu in the detailed navigation !
    2- make the iview displayed into the new window really the iview desired !
    best regards,
    Olivier.

    Hi Olivier,
    The frist part is very precise. Not possible. Period. The reason is that the links are calling JS and not directly calling a http target.
    About the second part: Within the Light Framework, you create a Light Detailed Navigation. And in this case, the links are direct http links. So with that, you have what you want.
    For the Light Framework see http://help.sap.com/saphelp_nwce10/helpdata/en/43/0174a642406db7e10000000a422035/frameset.htm and around.
    Hope it helps
    Detlev

  • For a SharePoint list LVWP - how to open links in new window? (Without SPD - Without access to server)

    Hi there,
    I canNOT use SharePoint Designer nor do I have access to server to change any 14 hive files.
    I have a SharePoint 2010 List with a field of type Hyperlink. I need these links to open in New Window. Only links with-in this LVWP should open in new window (and not links on Quicklaunch or top nav).
    Any clues how to achieve this please? JS is okay.
    Thanks.

    Hello,
    The good news is that you're not the first to have those requirements!
    Here's the JavaScript:
    <script>
    var allLinks = document.querySelectorAll("table.ms-listviewtable tr td a");
    for(var i=0; i<allLinks.length; i++){
    if(allLinks[i].onclick == null){
    var targetUrl = allLinks[i].href;
    targetUrl = targetUrl.indexOf("?") > -1 ? targetUrl + "&isDlg=1" : targetUrl + "?isDlg=1";
    allLinks[i].href= "javascript:var options = {width:500, height:300, url:'"+targetUrl+"'}; SP.UI.ModalDialog.commonModalDialogOpen('"+targetUrl+"', options);";
    </script>
    This script can be saved to a text file and uploaded to a document library. You can then add a content editor web part below your list view web part (so that it doesn't execute until after the list view has loaded) and set the "content link"
    property of the web part to be the path to the uploaded text file.
    The solution was originally posted here:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8ca275df-1d9c-4d0f-a624-c0531fda069a/how-to-open-model-dialog-onclick-of-list-item-hyperlink-column?forum=sharepointdevelopmentprevious

  • Preview iView / Open iView in new window not properly working

    Hello,
    I've got a question regarding previewing an iView (by pressing the "Preview" button in its properties) or opening an iView in a new Window by clicking on a button for instance. The problem is that when the window is opened, the iView cannot be displayed and a Portal Runtime exception is thrown, with the message "Cannot find iView" iView: N\A. This is very strange, since sometimes it works, when i test it on a different browser, but even on the same browser on which it works , sometimes it still fails, and displays "Cannot find iView". Does anybody have any clue what this problem can be? Basically it happens most of the time, but sometimes (randomly?) it works. I guess it may be a problem with caching, but i haven't resolved the reason yet. Thanks very much.

    Try playing around with the load settings. Specifically, try turning off client-side caching, your browser might be getting confused depending on the kind of iview you are previewing.
    A couple of questions:
    1. What kind of iview is it?
    2. Does it work if you stick it on a page and preview the page?

  • Open iView in new Window

    Hi
    I have added a new link in the xRPM screen from 'SPRO'. I want an iview to be opened in a new portal window on clicking this link. I have tried changing the property of view to ' Launch in a Separate Window' but it didnt work.
    Page ID in SPRO : pcd:portal_content/View/view1.
    Is there any way that i can open a new portal window on clicking this link.
    Regards
    Puneet

    look at this link
    iviews and pop up window

  • List - Navigation Outline - how to open link in new window/tab?

    I have created Navigation Outline but would like to open links in the new window or tab.
    We are using single sign-on within our intranet therefore the links looks like that: f?p=105:1:&SESSION..
    Does anybody have any ideas how to open new window, I have tried this: target="_blank" but it doesn't work.
    Thanks in advance.
    Robert

    Where exactly are you building this link to open a new window? Are you builidng it inside the query? a column link? I'm just curious; as it would make a slight difference in syntax, or where to escape, or whether or not you need to escape or not. But anyways, you could look into the javascript:popupURL syntax.
    So if you were building a link inside a query, the syntax would look similar to:
    '<a href = "javascript:popupURL(''f?p=&flow_id.:101:&session.::&debug.::&P101_ITEM:&P99_MATCH_ITEM.'')">Link</a>'
    Those are two single quotes that start and end the ....f?p-url-part....I.e., escaped.
    But thats just an example. Hope that helps.

  • Opening IView in new Window

    Hello SDNers,
    I hv a Par IView which on click will navigate to specific internet site.
    The IView takes me tht internet site.
    However, I want to open the target content in a new window rather opening in a content area or the desktop inner page.
    My code goes here like this :
    <p> <a href="http://www.abcd.com"><img src="<%= componentRequest.getWebResourcePath() + "/images/Sampleimage.gif" %>" border="0"></a>
    Anybody has an idea on the same ? Please, help me where I went wrong ?
    Thanks for your time. Looking forward to your repsonses.
    Kind Regards,
    RK.

    Hi Ravindra,
    The portal gives you the opportunity to open an iView in any size window you want (just like window.open, as Preveen mentioned).
    First, if you are navigating to the iView from another iView, simply use the EPCM.doNavigate() method with the proper windows features parameter -- see http://help.sap.com/saphelp_nw04/helpdata/en/26/71c74030308431e10000000a1550b0/frameset.htm.
    Second, even better, these window features can be supplied in the iView properties, so you can easily set up a DTN where you get your iView in a new window, and the window can be 100 x 200 pixels without and minimize button, or whatever. The properties are under the Navigation category.
    Daniel

  • How to open link in new window using Mountain Lion

    When I upgraded to Mountain Lion, opening a link closes the window I'm in when it opens the new one.  Example, I'm in email, click on a link, and then have to reopen email.  The back button doesn't work.  Where is the setting to change this so my current window remains open?  I use Safari.

    The option to open in a new tab or new window is in Safari > Preferences > Tabs > Open pages in tabs instead of windows: Never, Automatically, or always.

  • Force iView to open in a new window when using NavigationTarget

    Scenario - Portal Version 6.0 - NW2004  SP16 - WAS 6.40
    A Custom iView is used to gain access to an application running outside of the portal.  The user's credentails to the target application are recorded in the portal's UME via user mapping.  
    I want a user to be able to click a hyperlink to this iView that has been embedded in an email, and have the user gain access to the target application by 'going via the portal'.  The url that I use is of the form:
    http //<my_portal_server>/irj/portal?NavigationTarget=navurl://49a8add355f836061e6279f389cdc72e&open=/page&id=100&proc=10067&flag=1
    This is working, the user is first taken to the portal's login page, and upon successful login to the SAP portal, user is then directed to the target iView, and is logged in automatically to the target application, and able to use the target application.
    >BUT EVEN though the iveiw is configured to open in a new window it does not. It always opens in the main content area, and it always opens in this area in a height of about 40 pixels.  The iView properties are set to FULLPAGE.
    >If I invoke this iView using the portal's standard built in navigation, it does open in a new window
    >It just won't open in a new window when using direct URL to the iView WHY?
    How can I get the target iView to open in a new window under all circumstances?
    Do I need to pass more information in the URL?
    Are there a standard list of URL parameters somewhere that influence the behaviour of the NavigationTarget?  I have seen reference to 'context', 'mode' etc but can't find a list of valid parameters?

    Hello justaquestion1112,
    Thank you for your post.
    You should know that these forums are specific to the
    Acrobat.com website and its set of hosted services, and do
    not cover the Acrobat family of desktop products.
    Please visit the following Acrobat forums for any questions
    related to the Acrobat family of desktop products:
    http://www.adobeforums.com/cgi-bin/webx/.3bbeda8b/
    Cheers,
    Pete

  • When I click on a web link and hold down ctrl the page will not open into a new tab, it is just opening in a new window. How do I correct this?

    When I use to hold down the ctrl key and left click on a web link, the page use to open into a new tab. For some reason this is not working anymore. Instead when I hold down the ctrl key and left click on a web link, the link will open into a new window. How do I fix this?

    I figured out how to correct it. Not sure what exactly was happening. But I started into private browsing and then turned it off. It's been working correctly ever since I did private browsing.

Maybe you are looking for

  • ITunes had detected an iPod that appears to be corrupted

    My brand new 80GB iPod just arrived, I plugged it in with USBbut when iTunes opens, I get the following error: "iTunes had detected an iPod that appears to be corrupted. You may need to restore this iPod before it can be used with iTunes. You may als

  • Problem with international chararcters in senders email

    Hello, We have a customers who sends batches of email to internation people with CFMAIL. So there are international characters involved in the emailadresses, like: willem.solbö[email protected] frédé[email protected] jean-franç[email protected] These

  • Pictures are 90 degrees out of wack

    I've posted some pics to our woodturners site and some of the pics are rotated 90 degrees. I've turned them in iPhoto to compensate and reposted them. No help. Any ideas on what the fix might be? Thanks. Peppers

  • Abuse

    I have registered my email address at the website that sends out email for 5 users after submitting a form on our website. Since the form is based on joomla website it's required that it's high security. Unfortunately after changing website to a new

  • New Mac botnet malware uses Reddit to find out what servers to connect to?

    Hi all, I have come across these warnings over the last few days regarding a Mac botnet malware? The Independent published it 17,000 Macs recruited into malware botnet, with a little help from Reddit Researchers at Russian anti-virus company Dr Web b