POP-UP Windows in Web Interfaces

Hello!,
I´m working with BW 7.0, BPS 3.5, and everything must be in WEB Interfaces.
I need to show certain messages, like "no data is saved" in a pop up screen. I have already seen the Javascript code where you can select some messages (class, nomber), so the message tray only shows the message you want.
I need to do exactly this, but show these error messages in a Pop up window...
Any help will be rewarded,
Thanks a lot Fernando.

We have it, and it´s working fine . . .
BW 7.0, and we do not use integrated planning, we are using BPS 3.5
If you can fly to Argentine I´ll show how it works...
Thanks a lot for your answer,
Fernando Angueira
Ingeniero Ambiental

Similar Messages

  • Query in BPS Web Interfaces - Open in New Window

    Hello,
    I am trying to insert a BW Query into a web interface but have it launch in a new window.  I know how to have it open in the web interface by using a text box.  In July of 05 I found an answer from Marc Bernard on a similar topic, but with a query returning variables.  When I tried to use the code, I got an error.  I know that I can create a URL with Target="_Blank" but I don't want to hard code the full URL of the web report because the default host and port will change with the systems.  I tried the following URL in hopes that would inherit the system but it doesn't work.
    http://<default_host>:<default_port>/sap/bw/BEx?cmd=ldoc&infocube=EPABUDGET&query=EPA322BR
    Here is the code I have for the report.   Can someone tell me how to open in a new window or how to get the URL to work?
    <iframe
        id="BWReport01"
        name="BWQUERY"
        src="/sap/bw/BEx?cmd=ldoc&infocube=EPABUDGET&query=EPA322BR"
        width="900"
        height="800">
    Frames are not supported.
    </iframe>
    Thanks,
    Cherie

    Hi Cherie,
    you are on the right track. Just use a href="/sap/bw/bex..." target="_blank". If you need the URL to be more dynamic, use javascript with window.open.
    Regards,
    Marc
    SAP NetWeaver RIG

  • Just recently I am getting the following error message when trying to access web sites. I get a pop up window stating "Exc in ev handl: TypeError: c.location is null" then I have to click ok. It is an issue with some plug-in?

    Just recently I am getting the following error message when trying to access web sites. I am using Firefox browser version 10.0.2. I get a pop up window stating "Exc in ev handl: TypeError: c.location is null" as the web site page is being displayed in browser winder. Then I have to click ok. It doesn't matter what web link/site I go to it happens. It is an issue with some plug-in?

    I have advised McAfee's product team of the problem and this thread, and they're looking into it now.

  • How to show details from web part as pop up window

    Hello
    I designed few web pages in SharePoint Designer 2010 and trying to customize it. I have a XSLTListView web part that is displaying filtered data from the external SQL database. When user choses the item from this list, I need it to show in the new pop
    up window. I can't seem to find the way to do it. Saw multiple references to use SP.UI.ModalDialog.ShowPopupDialog(url), but I don't know how and where to incorporate it, since there is no place in the page where it actually specifies that url
    of the page that I need to show as pop up.
    Below there is a code for the XsltListWebPart, where I'm hoping I could make changes to make it pop up (it seems that this is the part that is calling the display details form). The form that I'd like to pop up is DispForm.aspx
    <script>
    function showpreview<xsl:value-of select="$ViewCounter" />(o) {
    count = 1;
    for(i = 0; i &lt; o.childNodes.length; i++)
    var child = o.childNodes[i];
    if (child.style.display == &quot;none&quot; &amp;&amp; child.tagName == &quot;DIV&quot;)
    f = document.getElementById(&quot;n&quot; + count + &quot;<xsl:value-of select="$WPQ" />&quot;);
    f.innerHTML = unescape(child.innerHTML) + &apos;&#160;&apos;;
    count ++;
    </script>
    <div id="previewpaneerror{$ViewCounter}" style="width: 801px"></div>
    <table cellspacing="0" cellpadding="0" border="0" id="previewpanetable{$ViewCounter}" dir="{List/@Direction}">
    <xsl:choose>
    <xsl:when test="not($dvt_RowCount=0)">
    <tr>
    <td valign="top" style="width: 186px">
    <div class="ms-ppleft" style="width: 100px">
    <table cellspacing="0" cellpadding="0" border="0" style="width: 122%">
    <xsl:apply-templates select="." mode="RenderView"/>
    </table>
    </div>
    </td>
    <td valign="top">
    <div id="preview1{generate-id()}" class="style2" style="width: 690px; margin-left: 30px;">
    <table border="0" cellpadding="0" cellspacing="0">
    <xsl:for-each select="ViewFields/FieldRef[not(@Explicit='TRUE')]">
    <tr>
    <td nowrap="nowrap" valign="top" class="ms-formlabel" style="width: 143px">
    <nobr>
    <xsl:value-of select="@DisplayName"/>
    </nobr>
    </td>
    <td valign="top" class="ms-formbody" id="n{position()}{$WPQ}" style="width: 370px">
    </td>
    </tr>
    </xsl:for-each>
    </table>
    </div>
    </td>
    </tr>
    </xsl:when>
    <xsl:otherwise>
    <tr>
    <td class="ms-vb">
    <table class="ms-summarycustombody" cellpadding="0" cellspacing="0" border="0">
    <xsl:call-template name="EmptyTemplate" />
    </table>
    </td>
    </tr>
    <tr>
    <td height="5">
    <img src="/_layouts/images/blank.gif" width="1" height="5" alt="" />
    </td>
    </tr>
    </xsl:otherwise>
    </xsl:choose>
    </table>
    </xsl:template>
    Alla Sanders

    Hi Alla,
    You can show details from web part as pop up window using JavaScript with SP.UI.ModalDialog.ShowPopupDialog(url). Here is a demo you can refer to:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function(){
    var obj1=$("a[id='forum0-NewPostLink']");
    url="http://sp13"+obj1.attr("href");
    //alert(url);
    obj1.removeAttr("href");
    obj1.click(function(){
    openDialogBox(url);
    function openDialogBox(url) {
    var pageUrl=url;
    var title="New Discussion";
    SP.UI.ModalDialog.showModalDialog(
    url: pageUrl,
    autoSize: true,
    title: title,
    dialogReturnValueCallback: function (result){
    if(result== SP.UI.DialogResult.OK){
    //refresh parent window
    window.location.href=window.location.href;
    </script>
    Reference:
    https://social.technet.microsoft.com/Forums/en-US/f18062ed-2e17-440e-8e00-2904f5316802/discussion-board-forum-opens-in-other-page?forum=sharepointdevel
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • WEB.Show_Document(POP Up Window In 11g forms)

    Is it possible to open a Http inside the POP Up Window In 11g forms.
    This is what i tried to use:
    Created a Dummy Window,dummy Canvas and by clicking the push button i gave this message:
    web.show_document('http://www.google.com','Html_Window');
    WEB.Show_Document will open only in seperated window but i need to open in the Pop Window is it possible please help on this.

    As Denis mentioned, you cannot show html content natively in a form. You would need a bean to do that. However, if you are just trying to create something that looks like a standard browser pop-up window, there are several ways to do it. Be aware however, that in some cases, the following example will not work if you are using an older JRE. The latest JRE is 1.6.0_29 and runs the following code correctly assume the browser is not set to block pop-ups.
    EXAMPLE 1:
    web.show_document('javascript:window.open ("http://www.oracle.com","myPop","location=no,toolbar=no,menubar=no,status=no,resizable=yes,height=600,width=600");self.close();');
    EXAMPLE 2:
    Declare
         inJS      varchar2(32767);
    Begin
         -- More info about window.open here:
         -- http://www.w3schools.com/jsref/met_win_open.asp
         inJS := 'new_win=window.open("http://www.oracle.com","new_win1","menubar=0,location=0,toolbar=0,status=0,scrollbars=1,resizable=1,width=500,height=600");';
         web.javascript_eval_expr (inJS);
    End;

  • POP UP window resize in web dynpro ABAP

    Hi All,
    I have created a pop up window by using method create_window of interface  if_wd_window . The pop up window is Resizable by default . If user Resizes the pop up window , Screen is uncooperative . As a solution we decided not to allow Resizable option for pop up window but by default the pop up window is resizable . Please let me know how to disable this default  Resizable option .
    Our SAP system is of version 700 ( SAP_BASIS 700 ) . I checked other system where SAP_BASIS version is 701 , here the pop up window is not resizable by default . Is there any way ( OSS note ) to disable the default Resize option in SAP_BASIS 700 ?
    I tried to adjust the pop up window size by using SET_WINDOW_SIZE but it is not  working in SAP_BASIS 700 .
    Please let me know if there is any solution for this .
    Thanks in advance ,
    Kiran.

    Hi,
    I am not sure if you would be able to solve this with some note (i doubt if it exists of 7.00 ). Try to see once again if_wd_window has any method or attribute which would help you otherwise (I think you have done that already ).
    Why not upgrade to 7.01 ?

  • I would like to create a pop-up window appear from Labview Interface. In this window, I will have a slide control and an image taken from a camera. The main VI have to run while pop-up window is open. How can I do ?

    When I pushed a button, this pop-up window has to appear. There will be a slide control and a picture from a camera in this window. Is it possible to make appear this windows while main VI Interface continue to run ? How can I do this ? Thank you for your answers.
    Cyril.

    Here you go. This is simple example. Maybe not the best way, I am just
    beginner in LV and still not comfortable with data flow that much. I prefer
    events, so I would change this to use Event Structures.
    When you click on OK button on SliderMain, it opens Slider.vi. Now both
    windows are open and you can interact with both. Now if you click on OK
    again with Slider.vi open, you run into problems. Only thing I did was
    change VI properties of slider.vi, mainly window appearance.
    vishi
    "Cy" wrote in message
    news:[email protected]..
    > I would like to create a pop-up window appear from Labview Interface.
    > In this window, I will have a slide control and an image taken from a
    > camera. The main VI hav
    e to run while pop-up window is open. How can I
    > do ?
    >
    > When I pushed a button, this pop-up window has to appear. There will
    > be a slide control and a picture from a camera in this window. Is it
    > possible to make appear this windows while main VI Interface continue
    > to run ? How can I do this ? Thank you for your answers.
    > Cyril.
    [Attachment SliderMain.vi, see below]
    [Attachment Slider.vi, see below]
    Attachments:
    SliderMain.vi ‏16 KB
    Slider.vi ‏11 KB

  • Windows 8.1 EPM 10 NW Web interface BPF and Excel Launch error

    Hi all
    We have a issue with Windows 8.1.
    When we try to launch excel from the web interface (Admin) or through a BPF, we get TYPE_E_LIBNOTREGISTERED error.
    This is only on the Windows 8.1 machine.
    We tested on few machines.
    All have the following:
    Office 2010 32bit,
    Internet Explorer 11 32 bit (even tried with 64bit)
    Chrome (on chrome we get com_sap_tc_ui_ria_fcp plugin error)
    Mozilla - can't get Mozilla to work at all...doesn't even show the activities or the Launch options.  Only Admin launch.
    On the Windows 7 machines it works.  But not on Windows 8.1.
    Already tried to search in the RegEdt the 5.6, 6.6, 7.6 etc but that isn't the issue.
    Has anyone ever found this issue?
    All other EPM functions work 100% with Windows 8.1.
    Also installed SP17 for the EPM office add-in as well as the patch.
    Thanks
    Johan Fourie

    Hi Peri,
    You can see this.
    Posted by Ashok Babu Kumili.
    http://scn.sap.com/community/epm/blog/2014/05/07/configure-epm-add-in-ms-office-excel-and-troubleshooting-configuration-issues
    Regards.

  • Is there a way to disable the pop-up window when a web address is entered?

    I want to disable the pop-up window that shows all the web addresses that have previously been entered or at least edit thsites for ones I don't want to use

    Set the Location Bar to "Nothing":
    * Tools > Options > Privacy > Location Bar: When using the location bar, suggest: Nothing
    * [[Smart Location Bar]]

  • Tough Decision: Gmail Web Interface or Gmail Via Pop Using Mac Mail

    Thought I would open a discussion about this since I have been having a tough time making a decision. I love using Gmail's web interface but hate losing the integration with Mac OS. I forward all my email from different providers to my Gmail so I can access all my email from any computer. This is very handy for me.
    I have tried using the mail app to access gmail via pop, but one thing I hate is when I reply to an email from a different provider than gmail it will use the gmail reply address. Gmail's web interface will use the account that the email was sent to as the reply address automatically.
    I am almost certain that others are in the same quandry as I am. If so, what is your solution?
    20" iMac   Mac OS X (10.4.7)  

    You can enter the email addresses for your other providers in Mail and have them show up in a pop-up menu when you compose new mail; then you can select which address to use as the outgoing mail address.
    Go to Mail->Preferences->Accounts, and undeer the Account Information, look for the Email Address field (below the Description filed). Enter your other email addresses in there, separated by commas, then close the Preferences and Save the changes.
    Now create a new email and the pop-up menu should let you choose which email address will show up on the email.
    Mulder
    If my answer helped solve your problem, please consider awarding some points. Why Reward Points?
    iMac G4 700Mhz   Mac OS X (10.3.9)  

  • Why does the pop up window for a printable coupon only appears briefly (in the upper left corner) and then disappear, even after putting the web site into the Tools,Options,Content,Pop-Up Exceptions?

    I am at http://www.closys.com/samples_&_coupons/get_a_coupon.html and the pop up window for a printable coupon only appears briefly (in the upper left corner) and then disappears, even after putting the web site into the Tools,Options,Content,Pop-Up Exceptions. What gives and how can it be fixed. I have a time limit.
    Thanks for your solution.
    Dan

    Mha007:
    Sorry, but I have already tried this too and verified that the web addresses are listed as Allow, rather than Block. After restart there was no difference, I still get the disappearing pop-up windows.
    Thanks for offering suggestions though.
    Have you heard of any issues like this occurring based on the number of tabs that are open in Firefox?
    Just a thought, even though I have not heard of this as an issue before. I keep about 80 tabs open regularly, because of research that I am always conducting (I am a blogger, a writer/author, a technophile-especially Green Tech.,), email, work, etc.?
    I do have a check in the box for Firefox to let me know if the number of open tabs is causing slow down or other issues.
    Thanks for any help.

  • "Firefox prevented this site from opening a pop-up window" - Interface with Kerio Connect 7.0.0 -

    I'm in a regional office. Corporate uses Kerio Connect 7.0.0 for email. Today 5/7/10 I started having problems whenever I open an email of ANY type, I can view it in viewing pane, but double clicking it gives me the message "Firefox prevented this site from opening a pop-up window." NOBODY ELSE in my company has had this problem (I have had it happen a few times in the past, but not ALL emails like today!). I am on my own in a regional office, so guidance would be greatly appreciated.

    I have tried this and it is not working. The only thing I can think of is that Firefox automatically upgraded to the 3.5 version I believe sometime last week, which is when I truly began to see the problem.
    No wonder I have avoided upgrading! It seems to me that Firefox STILL has not corrected this problem.
    I have seen multiple people as late as last week complaining @ same issue and they are reverting back to FF 3.0.
    Sound like this is my only solution.
    If anyone has any other ideas, please let me know.

  • Error while creating Pop-up window in SAP NetWeaver 7.1 CE  SP10 PAT0001

    Hi  All,
       I am trying to create a pop-up in the SAP NetWeaver 7.1 CE  SP10 PAT0001 and jdk1.6.0_21. I am trying to create a pop-up window using the "New Features of Web Dynpro Popup Window - SAP NetWeaver CE 7.11" Link:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/a04870c5-749b-2b10-06ba-d25515ef39e3&overridelayout=true
    public void wdDoModifyView(com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
       if (firstTime)
            IWDWindowViewElement window = (IWDWindowViewElement) view.getRootElement();
    It shows the collowing error " IWDWindowViewElement cannot be resolved as type". I am using the latest version of NW CE and jdk but still i am unable to find the "IWDWindowViewElement".
    I have gone through a similar thread talking abt the same problem but it did not help. (Web Dynpro Popup Window Error in SAP Netweaver CE 7.11)
    Can anybody help me with this?

    Hi,
    I think the problem is rather the following:
    The guide says:
    "How to create a popup with the new feature mentioned above?
    Before starting you should check the version of your NWDS. This can be done in NWDS: u201CHelpu201D -> u201CAbout SAP NetWeaver Developer Studiou201D. The version information should look similar to the text below:
    SAP NetWeaver Developer Studio
    SAP NetWeaver 7.1 EhP 1 SP00 PAT0000"
    I tried the same guide on 720 and there the interface IWDWindowViewElement is available.
    So again, the problem is this:
      have the SAP NetWeaver 7.1 Composition Environment SP10 PAT0001 
    This means you have 710 (SP10 PAT1)
    The guide says you need EHP1 at least
    SAP NetWeaver 7.1 EhP 1 SP00 PAT0000
    This means 711 (SP00 PAT0)
    Best Regards,
    Ervin

  • Can't login to router web interface anymore (Authentication Required fails)

    After upgrading to Firefox 9.0.1 (or another recent version), I can't login to the web interface of my router anymore, even though I can login with other browsers.
    I've tried to login to 192.168.1.1 using Firefox 9.0.1 and my saved credentials (admin/********), but the authentication pop-up just showed up again. The same thing happened when I manually entered the same information. Using safe mode and/or private browsing didn't help either.
    To be sure that is was a problem with the Firefox browser, I wrote the address, login and password in a text file, then copied-&-pasted the information into both Firefox and Google Chrome. The result: after repeating this a couple of times, it always worked on Chrome and never on Firefox.
    The login process used to work flawlessly with previous versions of the browser, but I'm not sure if the problem appeared on 9.0.1 or the version before.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Since installing 3.6.9 my Joomla content editor pop-up windows no longer return the URLs selected

    I recently upgraded to Firefox 3.6.9 and found that when using the editor in a Joomla 1.0.15 website , the content editor pop-up windows no longer return URLs selected (eg: image or file URL to be used in a link). I have been using the site with no problems for many years, and the problem was cured when I reinstalled 3.6.8

    Thanks cor-el but the problem is not in my web development but is a new issue/problem in FireFox which was not present in all versions up to and including version 3.6.8 and was only introduced in version 3.6.9. I have also established that the same problem also exists in FireFox version 4 beta 6 and have therefore also raised a second question today.
    My understanding was that I should raise these issues in this forum, but I will also check out the other forum.

Maybe you are looking for