Create Popup Window to 3rd Party Website

Hello,
I've added a custom button to the Opporunity, and I've also added an Event Handler for the button.  Inside the event handler, I'd like to costruct a dynamic URL, and finally call the URL in a separate pop-up window.  Does anyone know how to create the pop-up window?
I looked at the Window Manager Interface Create Popup method off the Component Controller, however, it appears that I need to specify an Inteface View Name, Usage Name, etc., however, I'm trying to create a pop-up to something completely outside of CRM.
Thanks,
Matt

Hi,
The method described above is fine in most cases, but somtimes you need to construct the URL on base of user input.
To cope with this issue and to be free of client side javascripting you could make use of component GSURLPOPUP.
Just add a component usage and supply the needed values to the PARAMS interface node in WD_USAGE_INITIALIZE.
Opening the popup should be trvial. For an example look here: CL_BT131QI__DETAILS_IMPL->OP_SEARCHPRODUCT().
PS: I am still wondering how it is possible for Ismail to write from the future As I am just before ten and he is well after midday?!
cheers Carsten
Edited by: Carsten Kasper on Sep 2, 2009 9:35 AM

Similar Messages

  • Communication between SAP e-recruitment and 3rd party website

    Hi,
    We are implementing e-recruitment module and would like to know how to transport a recruitment advertisement created in SAP e-Recruitment to a job website. Should we use IDOC and XI? Or is there some other way of doing it? How does SAP e-Recruitment communicate with the 3rd party website? The advertisement should be transported in a way that it can be directly displayed on the job website, with all the formatting intact.
    Please let me know in detail how the functionality can be achieved.
    Regards,
    DK

    Hi,
    Did you have any reply on this?
    regards
    Justin

  • I need the code for creating popup windows and code for open and close

    I can write the code for creating popup window , i am getting problem while trying to open and closing that popup windows.
    Can anybody help me in that pls ?
    Regards
    Sreeni.

    Hi
    For pop up window
    IWDWindowInfo windowInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("PopWin");
    IWDWindow window = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);
    window.setWindowPosition (300, 150);
    window.show();
    wdContext.currentYourNodeElement().setPopupAttribute(window);
    For closing window code
    IWDWindow window = wdContext.currentYourNodeElement().getPopupAttribute();
    window.hide();
    window.destroyInstance();
    For more infornation refer this link
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20d2def3-f0ec-2a10-6b80-877a71eccb68&overridelayout=true
    This link is very useful for you.
    Regards
    Ruturaj
    Edited by: Ruturaj Inamdar on Aug 13, 2009 9:10 AM

  • How do you transfer songs from my iPod Classic to my new computer? The only songs that transfer are those that I purchased on iTunes. Is there a 3rd party website or something?

    I am trying to transfer 3000 songs from my iPod Classic to my new computer. The only songs that transfer are those that I have purchased on iTunes (242 songs). All of the music from my CD collection that I have on my iPod Classic will not transfer. What (if any) is the best 3rd party website that will assist?

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • Help Needed. Creating popup windows when creating an app. And a text search button

    Hi, I'm new to indesign and am having trouble creating popup windows when creating an app. Also i would like to create a text search button so that people can search text within my app. Can these things be done?? im using cs6 at the moment.

    Questions on creating apps with the Adobe Digital Publishing Suite need to be asked in the DPS Forum, where I've moved your question.

  • How to create popup window with radio buttons and a input field

    Hi Guys,
    Can somebody give some directions to create a stand alone program to create a window popup with 2 radio button and an input field for getting text value. I need to update the text value in a custom table.
    I will call this stand alone program from an user exit. 
    Please give me the guidance how go about it or please give any tutorial you have.
    Thanks,
    Mini

    Hi,
    There are multiple aspects of your requirements. So let's take them one at a time.
    You can achieve it in the report program or you can use a combination of the both along.
    You can create a standalone report program using the ABAP Editor (SE38). In the report program you can call the SAP Module pool program by CALL Screen <screen number>. And then in the module pool program you an create a subscreen and can handle the window popup with 2 radio button and an input field for getting the text.
    For help - Module Pool programs you can search in ABAP Editor with DEMODYNPRO* and you will ge the entire demo code for all dialog related code.
    For Report and other Module pool help you can have a look at the following:
    http://help.sap.com/saphelp_nw70/helpdata/en/47/a1ff9b8d0c0986e10000000a42189c/frameset.htm
    Hope this helps. Let me know if you need any more details.
    Thanks,
    Samantak.

  • How to create popup Windows in WebDynpro

    I am learning WebDynpro and have developed a sample application where i ask the user to login. In case of incorrect login I want to display a popup window which shows an error message and has an ok button on it. On click of the OK button i want to close the Window.
    I have created a view for this popup... called errorView
    On click of login button i perform validations n incase the validatins fail i have put in the following code
    IWDWindowInfo myWinInfo = wdComponentAPI.getComponentInfo().findInWindows("Ra_ErrorView");
    myPopupWindow = wdComponentAPI.getWindowManager().createWindow(myWinInfo,true);
    myPopupWindow.setWindowPosition(300,150);
    myPopupWindow.open();     
    How should i proceed?
    Where should i write the myPopupWindow.close()
    Kindly give a step-by-step solution.

    Hi Reema,
    You want to close a window say window1 which you opened from a view.
    create an attribute. select its type from java native settings to IWDWindow
    wdContext.currentcontextElement().setWindowInstance(window);
    1.create an event in component controller say event1
    2.In order to trigger the event in component controller create a method in it
    write this code in implementation of controller to trigger the event
    wdThis.wdFireEventAddressSelectedEvent();
    3.For catching whatever event that is responsible for closing the window create an event handler in view1 say eventhandler1.Choose the subscibed event to be event1
    4.In that eventhandler1 write the code in implementation
    IWDWindow window =
    wdContext.currentcontextElement().getWindowInstance();
    window.close();
    Hope this helps you.Do revert back if you have more doubts
    Regards
    Rohit
    Message was edited by: Rohit Radhakrishnan

  • Creating safe sandbox for 3rd party jars

    I'm creating a tool which lets 3rd parties distribute and run their code within my framework. Because I cannot gurauntee the source of various libraries the user decides to run, I cannot prevent malicious code from hacking their systems.
    Is there a way for me to limit the capability of the 3rd party classes? I'd like to create a safe sandbox for the classes to play in, but not allow them to read the client's system files, write data outside the sandbox, or otherwise damage the client system.
    Can I turn off parts of the VM? If I were to force 3rd parties to inherit from Applet would that limit their use of the client system?

    You can extend java.lang.SecurityManager -- the only method you need to override is checkPermission, since all the others thunk to it -- set the SecurityManager using System.setSecurityManager, and run untrusted code in a separate thread only. The Security Manager can check to see if the calling thread is the trusted one; if so, it can grant all permissions, otherwise it can grant only those you want to give.

  • Unable to open files from 3rd party websites/applications

    Hi all,
    My new macbook arrived with QT 7.0.4, I used it perfectly for a week with no problem, but now after carrying out a 'software upgrade' via system preferences to QT 7.1.1 I now find that Quicktime will not open hardly anything!!!! Not bad considering Apples information at the download window states that 7.1.1 was implemented to fix bugs that prevented QT from opening files in 3rd party applications. Whats going on?.......
    In the mean time I've had to carry out a system reboot to go back to QT 7.0.4 and now its back to how it should be. What version of Quicktime 7 am I going to have to wait for before this issue if rectified?
    Cheers
    Smarteee

    Thanks all

  • Asha 501 - Suggest 3rd party website for asha 501 ...

    suggest any 3rd party well known trustworthy site to download apps/games for asha 501.
    Thanks for your help in advance...

    Sadly not here stick with official.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Uploading an Edited iPhoto to 3rd Party Website

    I am unable to find a way to upload an edited iPhoto to a third party website.  This is important to me as a marketing opportunity.  How do I do this?

    From iPhoto, do File > Export from iPhoto's menu.  Send it to, for example, your desktop.  Choose the options you would like for exporting.  Then upload from your desktop, or wherever you exported the photo to.

  • How to create POPUP windows (from ALV report)

    Hi there,
    I have a ALV report which has a field where the user can click and view more details of the selected data. I would like to have a popup and then display the selected data...is that possible? Any function module which I can use to pop up a window and display selected data?
    Thanks in advance!
    Cheers,
    MC

    Hi MC,
    Please follow the steps below for getting the result you desired.
    1. In your field catalogue, move 'X' to the slis_fieldcat_alv-hotspot field. This will enable the user to select it.
    2. Set slis_t_event_exit-ucomm = '&IC1' and slis_t_event_exit-before = 'X' and pass this internal table to the ALV function call. This will enable to code your own logic for that standard user command.
    3. Pass your 'User command' routine name to the appropriate paramter of the function module.
    4. Your 'User command' routine should have the following format.
    *       FORM USER_COMMAND                                             *
    *  -->  UCOMM                                                         *
    *  -->  SELFIELD                                                      *
    FORM user_command USING ucomm    LIKE sy-ucomm
                            selfield TYPE slis_selfield.
      CASE ucomm.
        WHEN '&IC1'.
          PERFORM display_pop_up USING selfield.
        WHEN OTHERS.
      ENDCASE.
      MOVE '&REFRESH' TO ucomm.
    ENDFORM.                                    " USER_COMMAND
    5. Write your code for the pop-up in the routine 'DISPLAY_POP_UP'. Look at 'POPUP*' function modules to pick up the best suitable one for you.
    Hope this helps,
    Srinivas

  • SCCM 2012 Software Updates not installing (bothh Windows patches & 3rd party updates)

    Using SCCM 2012 R2, I am having a problem getting Windows updates to install.  Applications published to people work, and basic software installations published to machines for a straight install work.  However, both Windows patches and Adobe patches
    fail to install on clients. I have imported the Adobe catalog into SCUP, and publish through WSUS. I can see the Adobe patches and Windows patches in SCCM, and can publish them. However, in deployment status out of 4 machines in my test group the Windows patches
    installed on 1 and the other 3 are still in Unknown status with category of "Client check passed/Active". However, none of them are installing the patch - they don't even seem to try.  All of those are Windows 7 PCs, incidentally. On Adobe patches,
    one PC fails and the other 3 machines still sit in Unknown status.  Certificates are distributed,
    Any ideas what might cause the deployment to not push some targets, even when it's past the deadline?
    Thanks,
    Andy Maslin

    An unknown status means that the clients are not reporting back to ConfigMgr correctly. This is often due to the WUA not pointing at the correct WSUS instance. You can verify this by examining the WUAHandler.log on one of those clients and it will clearly
    indicate an issue with this which in turn is often due to a group policy overriding the ConfigMgr behavior.
    Jason | http://blog.configmgrftw.com

  • Single Sign-On intergration with 3rd party website portal

    A client of ours for whom we have developed a Business Catalyst (BC) website wants their website's users simultaneously authenticated on their own site and also on a MemberSuite member management website portal, which essentially amounts to a Single Sign-On (SSO) solution. Is there any capability within BC to allow a process like this? Any examples of others who have accomplished similar SSO integrations?

    There is no out of the box solution but it could be done via in a few ways, it would all depend on what the "membersuite member management website portal" could do. The BC database would have to be the master database in terms of username and password as there is no way to log someone in via an API, depending on how the other software is setup and what sort of output it could give and how it's authentication system worked, can you provide more info?

  • How to access 3rd party website into MS CRM online 2011/2013

    Hi,
    I want to access a form which is in my .net application/website  into the ms crm 2011/2013 on-line versions using web-services.
    Actually from .net form using web-service I have added contacts into CRM but now I want to do it in reverse way, like if I have stocks in my website I want to access them in my CRM 2011/2013.
    jo

    Hello,
    Recheck following articles:
    https://msdn.microsoft.com/en-us/library/gg509030.aspx
    https://mscrmmindfire.wordpress.com/2013/06/14/calling-external-web-service-from-a-crm-2011-plug-in/
    Dynamics CRM MVP/ Technical Evangelist at
    SlickData LLC
    My blog

Maybe you are looking for