Portal eventing between bsp and VC

Hi everybody
I need to use portal eventing to have a bsp and a VC iview communicate.
The bsp iview should be displayed within the VC iview as html view, raise a portal event with some sort of parameters inside, and then be dynamically hidden by the main iview.
I have often read about VC and bsp exchanging signals when belonging to the same page, but will this work even with bsp iview within VC iview? Has anyone ever achieved this?
thanks
Vincenzo

Hello Vincenzo,
It won't work, since the html view is implemented as an iframe on top of the model. If you want to use portal eventing, you should have the iViews inside a portal page which acts as a container and you also have the entire portal framework working for you.
Regards,
Natty

Similar Messages

  • Interaction between BSP and SAP GUI

    Hello all,
    I am having trouble with interaction between BSP and dynpros:
    I have a dynpro with a container where a BSP is shown.
    I would like to be able to return a value from the BSP to the control program of the dynpro.
    Any ideas of how to do it?
    Thanks a lot!
    Helpful answers will be regarded.

    Hello both,
    thank you for your replies, but I am still not able of performing this.
    I have tried using GET/SET parameters but it is not working, I get no parameter (perhaps I am not using the sentences correctly or in the correct place).
    I have also tried the code of demo program SAPHTML_EVENTS_DEMO and I think I cannot do it, I explain it a bit more:
    I have a button on my  BSP with some code programmed on event OnInputProcessing to be executed, and at the end I would like to return one value to the control program of the dynpro.
    But if I set the html form of the BSP as action:SAPEVENT, the bsp code is not executed...
    Am I doing something wrong?
    Thanks!!

  • Diff between BSP and WEBDYNPRO FOR ABAP?

    Hi All,
    can anyone let me know the Difference between BSP's and WEBDYNPRO FOR ABAP.
    Regards,
    Ravi

    Hi Ravi,
    In truth, Web Dynpro contains many of the enhancements than BSPs....like built-in value-help and select options...... they
    will become standard in Web Dynpro. But these can also be added to BSPs also.
    There are several architectural differences between BSP and WDA. WDA has some advanced features but more restrictive framework compared to BSP.
    WDA is stateful only. While BSP supports both stateful and stateless programming models.
    WDA doesn't aloow us to use our own custom HTML, JavaScript or other controls. To provide compatibility the rendering logic is completely hidden from the developer.
    On the other hand, BSP has no such restrictions and allows an extreme level of custom rendering. This makes BSP a perfect platform for applications that require pixel-perfect layout or specialized UI elements.

  • Difference between BSP and webdynpro

    can any one explain the difference between bsp and webdynpro and also the advatages over each other?

    Hi,
    The main diffrence between this 2 keeping client requirement in mind if LOOK & FEEL.
    In webdynpro we have very less scope for geeting the look and feel but in BSP we have more scope for Customization.
    In webdynpro we have some predefined methods  known as Hook Methods which will handle the flow .
    I mean to say some code which we write commonly will be reduced in webdynpro.
    So that the time for building the application will be very less compared to BSP.
    For example if you take MVC architecture implementation BSP and webdynpro
    webdynpro provide built in MVC functionality where as in BSP we have to implement it using controllers,views,etc...
    Finally Developing application in web dynpro takes less time then in BSPs
    Thanks & Regards,
    Lokesh.
    Please reward vpoints if helpfull

  • Portal eventing between WD java and BSP popup

    Hi guys,
    I have a WebDynpro application that opens a BSP popup like that :
    WDPortalNavigation.navigateAbsolute(
              wdContext.currentURLElement().getEvaluationURL(),
              WDPortalNavigationMode.SHOW_EXTERNAL,
              "directories=no location=no menubar=no resizable=yes status=no toolbar=no",
              "evaluationdeformation",
              WDPortalNavigationHistoryMode.NO_DUPLICATIONS,
              urlParam.toString()
    When the popup is closed, I want to update the content of my webdynrpo application. I tried using portal eventing but it didn''t worked because the popup doesn't seem to know its opener....
    Is anybody have an idea ?
    Thanks in advance.
    Julien.

    Hi Julien,
    have you made sure that your BSP application is using EPCF? There is a flag you need to set to X in your BSP app for this to take effect. Also, you can not add javascript to a WD app, so calling the window.opener will not make any difference. However, you can subscribe to an event raised by another application in your WD app. It is possible to raise events between windows, one being a bsp and the other a WD or portal application. Check the following threads.
    [Portal Eventing: EPCMPROXY calls between two browser windows;
    [Client side eventing between MSS teamviewer and BSP application;
    Cheers,
    Dion

  • Portal Eventing between Web DynPro Java iView and non-Web DynPro iView

    Dear Experts,
    I have 1 Web DynPro Java iView and 1 non-Web DynPro (using JSPDynPage and JSP) iView, both attached to a page. When Web DynPro Java iView fire a portal raise event, the portal iView did not execute the javascript function tied to the event subscribed.
    Here is the code snippet which reside in the Web DynPro Java iView that is used to fire the event
    String param = "test";
    WPortalEventing.fire("urn:com.company.Test1", "TestEvent", param);
    This the code snippet that is in the jsp page
    function notifyTest(param)
         // Code to print param value here
    EPCM.subscribeEvent("urn:com.company.Test1", "TestEvent", notifyTest);
    Note:
    1. When Web DynPro Java iView fire the portal event the entire page is refreshed, including the non-WDP iView.
    2. When EPCM is replaced with window.top.EPCM, the page is refreshed, it is totally hanged with progress bar.
    Can anyone help to solve this problem?

    hi
    Please write the below code snippet in ur jsp for notifyTestjavascriptfunction
    function notifyTest( eventObj ) {
         eventParameter=eventObj.dataObject;
         // code to print the parameter "eventParameter"
    Thanks
    Harsimran

  • Portal eventing between Java WD iview to ABAP WD iview?

    HI Experts ,
    I have requirement on which,
    The manager can select an employee from the EE Search iView (Object and Data Provider). All other iViews react on the selection and display data of the selected employee. Technically the personnel number is transferred from the search iView to the other iViews on the portal page, also to the related activity iView. This mechanism is called Eventing. The applications, started via the related activity iView, are launched with the personnel number as parameter. With other words the application, e.g. Manage Objects on Loan, can be directly started for the employee selected from the EE Search iView.
    The Employee Information page is based on WD Java whereas the Objects on Loan application described in this specification is based on WD ABAP...........Due to different technologies used how to do the Pernr number transfer between these iviews?
    If anybody have done this let me know the steps
    Thanks in Advance,
    Dharani

    Hi Dharani,
    You can use portal events to enable iViews running on the same page to communicate with each other. You just have to find out which event is fired by the WD Java iView and then you will have to register and handle the event in your WD ABAP application : http://help.sap.com/saphelp_nw70ehp1/helpdata/en/f6/7d6f4151dc5758e10000000a1550b0/frameset.htm
    You can use HttpFox (firefox plug-in) to find the details of the fired event (name, namespace...) by looking at the eventQueue parameter in the HTTP POST request.
    Regards,
    Pierre
    Edited by: Pierre DOMINIQUE on Jul 9, 2009 11:16 AM

  • Portal eventing between pages

    Hi,
    I read around that portal eventing can be done only on the same page and not between pages, is this correct? if so, how do we make events between pages after all?
    Thanks in advance,
    Aviad

    Hi Aviad,
    Portal eventing takes place between different iviews of the same page only.
    To pass between values between different pages, you can store the required value in a Portal Request object or Session object.
    Also you can refer to this link,
    iView to iView communication with EPCF
    This link  contains the code to establish connection between pages .Finally obtaining paramaters through request.getParamater().
    Hope this helps,
    Regards
    Uma.
    Note: It will be better from next time if you could post portal related queries in the EP forum to get quicker responses and ep related guidances.

  • Eventing between iView and nested iView

    I try to make an Event between an iView and an nested iView. I followed the instruction on page 164 in the reference guide and tried some other things, but it doesn´t work. I make an output Port on the one side, there i could select the fields to be displayed. But when I compose the Input Port , there are no field to see.
    So what make I wrong?

    Hello Marcus,
    the main thing about the desired eventing seems to be that when you have placed your data service in the nested iview you have to create a signal-in port<b> by pulling a data connection out of the input port of the data service</b> to create the input-port of your nested iView. Only this way, the port is filled with the input data of the data service.
    Back in your main iView you can connect the data flow to the newly created port of your nested iView the same way as you connect to a data service. You then should see the input fields of the data service that you placed in the nested iView and be able to assign values to the input fields.
    Hope that helps
    cheers
    Gerhard

  • Portal Eventing between WDP Java iView & non-WDP iView

    Dear Experts,
    I have 1 Web DynPro Java iView and 1 non-Web DynPro (using JSPDynPage and JSP) iView, both attached to a page. When Web DynPro Java iView fire a portal raise event, the portal iView did not execute the javascript function tied to the event subscribed.
    Here is the code snippet which reside in the Web DynPro Java iView that is used to fire the event
    String param = "test";
    WPortalEventing.fire("urn:com.company.Test1", "TestEvent", param);
    This the code snippet that is in the jsp page
    function notifyTest(param){ 
          // code to print param value is here
    EPCM.subscribeEvent("urn:com.company.Test1", "TestEvent", notifyTest);
    Note:
    1. When Web DynPro Java iView fire the portal event the entire page is refreshed, including the non-WDP iView.
    2. When EPCM is replaced with window.top.EPCM, the page is refreshed, it is totally hanged with progress bar.
    Can anyone help to solve this problem?
    Edited by: CloudSOmnislash on Apr 8, 2009 6:06 PM

    Kumar, Rui,
    I have all my code inside a web dynpro component. All that I have in dynpro to work with (or that's what I know so far) is a WDPortalEventing object that I can use to access the fire, subscribeEvent and unsubscribeEvent methods. I still haven't found a way to get to the actual EPCM object that the Portal runtime gives you through javascript. And even if I get there, how am I supposed to write javascript in my dynpro code and later pass the value stored in the client data bag to the web dynpro context ?
    Simon,
    I had tried a small app yesterday and it didn't work when the iViews were not assigned to the same page. I will see if I can change my code anymore and get it working. I will make fresh posts to this thread as and when I find anything that works. In the mean time, if you have webdynpro iViews that talk to each other across pages, do let me know how you are doing it!
    Thanks for your replies...
    - Navneet.

  • Difference between BSP and PCUI

    Hi Guys,
    Can someone explain me the difference between PCUI and BSP. Also which one is used when?
    What is the best way to get started on PCUI.(I am currently working as a functional consultant in GUI)
    Ani

    Hi guys
    I am looking for PCUI cookbook. Can you please send me the cook book to:
    [email protected]
    Thanks in Advance
    sudeep vd...

  • Contextual Events between templates and fragments

    Hi there,
    I'm having some issues to use contextual events in the following scenario:
    I have an inputText and a button on a jsf template. The input text is associated with an attribute on a managed bean and the button triggers and action that returns the value of this property on the managed bean. Besides, it triggers a contextual event.
    I also have a fragment that should consume that event, and this fragment is placed on a jsf that inherits the template that triggers the event.
    Unfortunately, when I try to consume the event on my fragment I cannot see the producer on the event map window, and event if I create my event map manually, it doesn't work anyway.
    Does anybody have an example of it?
    Am I doing smth wrong here?
    Cheers,
    George

    Hi,
    does the template ave a pagedef file that exposes the binding that triggers the communication ?
    Frank

  • Communication between BSP and Web Dynpro JAVA

    Hello All!
    I'm wondering whether the communication between a web dynpro application and a BSP application is possible.
    To ellaborate more, we have developped a web dynpro application acting as sender and we would like to develop a bsp application that displays a smart forms and which needs to listen to the web dynpro. We don't know exactly how to do that.
    Your help is really appreciated!
    Yours,
    Hajar

    HI
    GOOD
    I NEVER FACED SUCH ISSUES, HEREWITH I AM GIVING SOME LINKS, I HOPE THESE WILL HELP YOU TO SOLVE YOUR PROBLEM.
    http://sapfans.com/forums/viewtopic.php?t=168023&sid=1ed91bc0423642f19dc32b70ef3d37e3
    http://www.sap-press.com/downloads/sap_press_catalog_2006_summer.pdf
    http://help.sap.com/saphelp_nw04s/helpdata/en/a6/10b98ae47ef14799a918db66ee9477/content.htm
    THANKS
    MRUTYUN

  • Communication between BSP and Web Dynpro

    Hello All!
    I'm wondering whether the communication between a web dynpro application and a BSP application is possible.
    To ellaborate more, we have developped a web dynpro application acting as sender and we would like to develop a bsp application that displays a smart forms and which needs to listen to the web dynpro. We don't know exactly how to do that.
    Your help is really appreciated!
    Yours,
    Hajar

    i guess it should be possible. (is it ABAP webdynpro or java webdynpro?)
    post it in WEBDYNPRO forum for quicker resposne.
    Web Dynpro Java
    Regards
    Raja

  • HT4969 Can I sync events between reminders and calendar?

    I have evens on both Reminders and on my Calendar. Can I have them automatically pushed between the two apps? Both have time-specific events.

    You could also take a look at Windows Live Mesh:
    http://explore.live.com/windows-live-mesh-devices-sync-upgrade-ui
    You need a Windows Live ID but it's free.
    A lot of people also use Dropbox if you don't need more that 2 GB (you have to pay for >2GB)
    http://www.dropbox.com/features

Maybe you are looking for

  • Can't print--programs crash before print dialogue window

    Hello there, Here's hoping someone can help me; I can't seem to print anymore on my computer, no matter what program I'm using. This problem has only appeared in the last day or so; I've been printing from the same HP printer for the last 3 years. Wh

  • Variable entry screen for query doesnt show selection values.

    Hi, I've created a query with date varibale Quarter From-To. When i execute this query, the variable entry screen pops up but when i try to select values just shows ??? and not the text. if i run the same query in RSRT the variable entry screen pops

  • Sound problem with c-media 9739A/kt6 fisr

    Hey guys, I haven't figured out this one, my sound is weird meaning it seems like its missing buffering (its like cutoff a millisecond or two by second when i play games) and its really annoying.  It did it first a lot when ive overclocked it it star

  • Video Editing: Speed up selection of a video, how?

    Hello All,So I need to take a long video file, speed up the boring bits in the middle and slow it back down when the interesting bit happens, I know that sounded dodgy. So how do I do this? I have never done anything like this before so software reco

  • Implementing port security

    i have about a dozen2960 that i wish to implement port security. Some users tend to bring their own router and cause mayhem to the network. I've tried DHCP snooping, dont seem to work and port security testing on a few ports work well. What are the r