Can a SAP Gui iView raise a portal event?

Hi Folks,
Can anyone tell me if a SAP Gui iView can raise a Portal Event via the EPCF (or equivalent)? I seem to remember reading a blog on this way back but my sleep deprived mind could be deceiving me?
Thanks a lot,
Dan

I don't think so. I think there was a hack a while ago about making it a target by wrapping webgui inside another frame, but not as an event raiser.

Similar Messages

  • Raising a Portal Event

    I am trying to raise a portal event via the signal out. It seems when raising an event, the Flash runtime actually puts all the parameters in an XML-like string and then passes them on to EPCM.  The EPCM, however, is expecting this data as an object, not as a string. Has anyone been able to actually raise an event (specifically the navigate event) that can be handled by the standard portal framework?
    What I am really trying to do is navigate from one iView to another within the same browser window. Has anyone done this?  I know that there is HTML view but I don't want to use this because of I want the user to navigate away from the current application.
    Thanks for your help

    HI,
        U can EPCM inside script tags and raise or subscribe the events.
    In one of the JSP (inside portal project), u can write
    <SCRIPT language ="JavaScript">
    EPCM.raiseEvent( "urn:com.sap:MyEvent", "EventName", "Hello" );
    <SCRIPT>
    In the iView to be subscribed, u can write
    <script language ="JavaScript">
    function onMyEvent ( eventObj ) {
    alert( "Got message:" + eventObj.dataObject );
    EPCM.subscribeEvent( "urn:com.sap:MyEvent", "MyEvent", onMyEvent );
    <script>
    This will raise event from first iView and the data will be available in the second iView.
    Regards,
    Vijai

  • SAP GUI for HTML on Portal

    Hello All,
    I have transaction iViews on the portal and I am using SAP GUI for HTML. Upon launching this iView, i get the logon page, even though I have SSO set up and working fine.
    Now, the problem is, even after logging on with qualified credentials, the logon page disappears, 'Logon is starting' appears then the logon page reappears, as if nothing happened.
    Any ideas as to why this is happening and how I can fix it?
    Regards,
    Motaz

    Edgar: The ITS is working and the service launches successfully through the GUI.
    I overcame the issue by using SAP GUI for Windows instead. I guess there is a problem when using the HTML GUI from a public IP. Something to do with security or a conflict in the 'hosts' file.
    Regards,
    Motaz

  • Using the HTML SAP GUI inside the Enterprise Portal?

    Hello everyone
    In our company we plan to set up the SAP Enterprise Portal (NetWeaver 7.0). The first application we want to provide inside the portal is the SAP GUI that connects to our SAP ERP 2005 system via single sign on. Therefor two different approaches exist:
    1: Using the standard SAP GUI inside a portal iView. In this case every client pc needs the SAP GUI installed.
    2: Using the HTML SAP GUI. In this case we have to set up the integrated ITS in our SAP ERP system.
    Now I have some questions about the second approach. Is the functionality of the HTML GUI equal to the functionality of the standard GUI? If not, what are the restrictions? How high is the additional load on the network and SAP ERP system caused by the HTML GUI? Would you recommend this approach for a system with more than thousand SAP users?

    Hi Marc,
    At least if you consider using webgui, you should test the transactions properly as there are some issues for example with scandinavian characters and lines visible in lists of search helps.
    Also you might want to consider the limitations of the screen resolutions and space which the portal framwork already takes from the gui. This of course is a topic for both HTML/SAP GUI's.
    Kind regards,
    Ville

  • SAP GUI for Java in portal

    Hi,
    I have installed SAP GUI for Java as written here: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bc_fes/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d31303334393332%7d
    I got a message that the instalation was succesfull. But after clicking the iview with the transaction the iview freezes and the transaction is not displyed. Any ideas where could be the problem?
    Thanks and regards
    Ivo

    hi Ivo Kostelecky,
    for SAP GUI
    you fill the properties ...
    Description  -
    Aplication Server -
       here u give the url
    SYSID -
    here u give the system id
    System Number -
    00 System Number
    SAPsystem----- here u fill the System

  • Transaction Iview - SAP GUI for HTML

    Hi,
    In SAP transaction iviews - SAP GUI for HTML in portal there is a possibility to go to menu,other transactions from the transaction field.Is there any way to remove the Menu button and hide the transaction field from transaction iview.
    Please suggest.
    Thanks,
    Rajani

    Hi Rajani,
    Transaction iview which will control the menu,cancel buttons in SAP GUI for HTML
    the url provided by Damian contain the solution for your requirement.
    If you are looking somthing different then pls explain the requirement
    Just let us know which specifiy buttons you want to show in transcation IVEW.
    Thanks,
    Anil

  • Menu option not available in SAP GUI transaction in Portal

    Hi all,
    When accessing SAP Transaction iview via the portal 7.31 the drop down menu option is not available in the first session.
    It is available in the second session and when accessing SAP Traansaction directly from the SAPLOGON pad, the option allows users to open other sessions and stop transactions.
    How can we enable the menu option in Transaction iview in Portal? 
    Plz find the attaches screen shot of error.

    Hi Chandra,
    Can you try the same senario with broswer compatible mode?
    Because these function will be over ride the style sheet.
    Thanks
    Patrick

  • The page cannot be displayed: ITS error: SAP GUI for HTML

    Hello,
    I have created an iView that connects with a ECC system. When I clic on System Administration --> Support --> SAP Application --> SAP Transaction :
    System: ECC
    Transaction: su01
    SAP GUI Type: SAP GUI for HTML
    It shows: The page cannot be displayed.
    It's manadory to use SAP GUI for HTML. Please, Do you have any idea??
    Thank you
    Best,

    Hello Virginia Rodríguez,
    1)Kindly check that System ECC in Portal is Up and Running under System Administration.
    2) if u r done with first step then can try SAP GUI for Window in creation of Iview
    it will Work.
    Regards.
    Soni Vinit

  • 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.

  • 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

  • BW 3.5 frontend with SAP GUI 6.20 and 6.40 on BI 7.0

    Hi,
    My question was raised after I read the BIFAQ, where it is stated:
    <i><b>Which BW 3.5 front-end versions can I use on top of NetWeaver BI 2004s?</b>
    You can use SAP GUI 6.20 with the latest BW 3.5 front-end patch to work with an SAP NetWeaver 2004s System (only BW 3.5 front-end functionality).
    You can also use SAP GUI 6.40 Comp 4 or higher and BW 3.5 front-end ('BW Add-in') (only BW 3.5 front-end functionality).
    SAP NetWeaver 2004s BI front-end is installed separately ('BI Add-in' on the installation CD).
    </i>
    Question:
    <b><u>Is the BW 3.5 frontend (with GUI 6.20) identical to the BW 3.5 frontend add-on (with GUI 6.40)?</u></b>
    Thxs.
    LauQ

    Hi,
    I think they are identical, the very difference is between 3.5 tools and NW2004s tools.
    regards
    Michele

  • Does SAP GUI 7.10 include Web Dynpro client?

    Hi all,
        I want to try out Web Dynpro client, My SAP GUI version is 7.10, I can't see the web dynpro client component when install SAP GUI,  and can't see the web dynpro application in logon ui too. Seem to Gui7.10 does not include web dynpro client. I search forum can see SAP GUI 6.40 include a beta version of web dynpro client, but the download of Web Dynpro Client was not work.
        Does anyone kown if the Web Dynpro Client can be integrated in Sap Gui 7.10 ? Or it was still in beta version not be released official.
    best regard
    reefish
    Edited by: Ree Fish on Nov 18, 2008 5:33 PM
    Edited by: Ree Fish on Nov 18, 2008 5:34 PM

    Hi Martin ,
    I think your answer resolve our problem. But i can not get get installation document after login MarketPlace account. The page show blank.
    [SAP NetWeaver Business Client (with PCD Connection) |http://help.sap.com/saphelp_nw70/helpdata/en/46/4185faf54e2f90e10000000a1553f6/frameset.htm]  (Service Market Place Login Required)
    Documentation on installation, configuration and use of the SAP NetWeaver Business Client.
    I Search the download service and can't find NWBC installation file, is it a independent client?
    best regard
    reefish

  • Sap gui for mac

    Hi everyone,
    I have been using sap gui on windows before and now I wanted to shift to mac. can anyone please let me know how I can use Sap gui on mac os. I have installed the gui for java on my mac os but I am unable to configure it. i would greatly appreciate if anyone could help me in this issue. thank you
    regards
    rahul

    Hi
    As you have alreay installed the SAPGui for Java on MAC OS
    Please do this, to do the connection with SAP:
    Click on New System to add. Go to tab "Advanced"
    Enter the following String:
    conn=/H/<<Router String detail>>/H/<<System IP to which to connect>>/S/32<<SYstem Number>>
    Else you can create the file to connect also.
    Please check this
    SAPGUI Java Configuration

  • Field's content is not fully  visible in  Sap Transaction iview

    Hello Friends,
                    I have deployed a Sap Transaction iview on my portal. I am facing a issue.  When i do F4 help on a field, the content of columns is not fully visible in the opened up popup window.
        Is there any way to adjust the colum width, so that it accomodates the whole content and doesn't truncate it ?
        please help !
    Regards,
    Vidit

    Hi Vidit,
    Try to check your Transaction iview directly from the browser / through services not through the EP. If the iview is not working fine then thre is a problem in the code otherwise it has to work
    Check your code and try to redeploy
    Regards,
    sreedhar G

  • Sap query iview error

    Hi there!
    I have a sap query iview in the portal that should display a query in CRM (build with SQ01). The query in the backend is fine, but I get this error message in the portal.
    "Error in Source. Message not available"
    I have double-checked that the connection parameters of the sap query iview are OK, also I have run a DQE connection test on the system that was(see below) also OK.
    Any thoughts on this?
    Thanks in advance
    -fab
    p.s. I reward points generously
    Test Connection through the DQE
      Test Details:
    The test consists of the following steps:
    1. Checks the existence of a backend admin user ID/password in the system properties.
    2. Checks the existence of a default alias for the system.
    3. Checks the DQE connection.
      Results
    1. Backend admin user ID and password exist in the system properties.
    2. Default alias of the system exists.
    3. DQE connection successful. If you continue to experience problems, verify the DQE admin user ID and password properties for this system object.

    Thanks for the help Michael. Here is the xml file, I have also sent it to your email address.
    Cheers,
    faB
    - <GenericCreator author="XML Creator" version="XML Automatic Creation" mode="clean,execute" report.level="success" createMode="1" default.locale="en" ignore="false">
      <Property name="parent1" value="pcd:portal_content/XXX/XXXXXX/IVIEWS" />
    - <Context name="qtf" objectClass="com.sapportals.portal.iview" create_as="0" template="par:/applications/com.sap.pct.srv.portaldataviewer/components/SAPQueryTemplate" parent="$">
    - <Attributes>
    - <Attribute name="com.sap.portal.private.iview.PropertiesUrl" type="string">
      <AttributeValue value="pcd:com.sap.portal.system/applications/com.sap.pct.srv.portaldataviewer/components/SAPQueryTemplate" />
      </Attribute>
    - <Attribute name="PDVParameterQUERY_WORKSPACE" type="string">
      <AttributeValue value="G" />
      </Attribute>
    - <Attribute name="PDVParameterQUERY_VARIANT" type="string">
      <AttributeValue value="TEST" />
    - <Attribute name="personalization" type="string">
      <AttributeValue value="NO_DIALOG" />
      </Attribute>
      </Attribute>
    - <Attribute name="PDVParameterQUERY_NAME" type="string">
      <AttributeValue value="ZQ_ECCSPO_01" />
      </Attribute>
    - <Attribute name="PDVParameterQUERY_USERGROUP" type="string">
      <AttributeValue value="ECCSPO" />
      </Attribute>
    - <Attribute name="PDVParameterQUERY_CREATE_SELTAB_FM" type="string">
      <AttributeValue value="" />
    - <Attribute name="personalization" type="string">
      <AttributeValue value="NO_DIALOG" />
      </Attribute>
      </Attribute>
    - <Attribute name="com.sap.portal.iview.MainObject" type="string">
      <AttributeValue value="" />
      </Attribute>
    - <Attribute name="SystemIdentifier" type="string">
      <AttributeValue value="SAP_CRM" />
      </Attribute>
      </Attributes>
      </Context>
      </GenericCreator>

Maybe you are looking for