How to integrate BeX Web Applications into Solution Manager

Dear All,
I am integrating the BeX Web Applications into Solution Manager. My Scenario is to add a button named 'Support' wherein when I click the button it should take me to the solman BSP Page. I have saved the two templates - oadhoc & 0adhoc_table by making it 'Z' and added a button in Zadhoc_table. but when I click the button it is not picking the values of an object from the first template.
Kindly help me to get the solution.
Best Regards,
Priya

Basis Team,
Please check this document link:
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ad0a4b07-0301-0010-5095-ef7615676fc0
Hope this document link helps you.
Thanks
Mona

Similar Messages

  • Question about how to integrate struts web application into Weblogic Portal

    hi, I'm using Weblogic8.1 Portal and workshop to integrate my existing struts web applications. I know that the struts web application can be imported and integrated as a portlet. But I'm not sure how to integrate the corresponding EJB module into portal?
    any help appreciated!!

    should be simple...
    copy all the jpfs and other classes appropriately into a new portal app.
    Create a new Java Page Flow portlet.
    That should be it.
    The major thing to watch for is how your navigation etc change.
    Kunal Mittal

  • How to integrate two Siebel Applications into single app UI

    Dear All,
    Currently we have a Siebel application which is running with various Siebel modules. Like for example in one single application object manager we are having various screens and views related to various modules like UCM, Loyalty, Marketing etc.
    But due to some operational reasons, we would like to deploy few modules as applications on different machines.For example we will install a separate Marketing application on a server and loyalty on a separate server.
    How can we integrate all these applications installed in different different machines in a single App Object Manager to provide a single UI interface for the user.
    So even after segregating into different applications, we would like to have single app UI for user.
    Please suggest if it already being implemented in such a way anywhere.
    Regards

    Hello...
    Siebel offers many great options to help you implement your business needs. siebel bookshelf is very well documented...we can also connect you with a few great system integrators that could help you architect your siebel implementation? best wishes for this holiday season...
    Regards,
    Sylvia Fong Ny- GERMAIN SOFTWARE - Performance Monitoring Software for Siebel CRM
    21 Columbus Avenue, Suite 221, San Francisco, CA 94111, USA
    [email protected], http://www.germainsoftware.com

  • How to integrate custom web application within Fusion Environment?

    Hi all,
    I have created a simple custom web application with JDeveloper (11.1.1.6.2).
    From JDeveloper this application is running successfully through the IntegratedWebLogicServer connected with our Fusion Database.
    Now I want to integrate this custom web application within our our Fusion Environment (11.1.4).
    The final goal is to make it available inside the navigator menu in Fusion Applications.
    I need some guidance how to get this done.
    For example I have created an EAR-file. Where should this file be deployed?
    How can I create an entry in the navigation menu pointing to this web application?
    The web application should be handled just like seeded pages. (no additional security, login, etc.) How do I manage that?
    I have checked several Oracle Guides and forums (also blogs.oracle.com/fadevrel), but still it is not clear to me.
    Maybe I am on the wrong track, I don't know.
    Kind regards,
    Cor van Dongen

    How you deploy your EAR depends on the type of environment you have. For "OnSite" deployment you would need to contact the production system administrator to have your application deployed on the production WLS. The administrator would decide where and how the application is deployed, the process would be specific to the site.
    The security behavior depends on the configuration, e.g. when you enable security on your application various [url http://docs.oracle.com/cd/E14571_01/web.1111/b31974/adding_security.htm#BGBDEHFH]files are created / updated. When deployed to production these configurations need to be changed to suite the production instance, i.e. in development environments authentication is enforced by security constraints while in production this is achieved e.g. using OAM policies. The specific details depend on the instance.
    For Cloud environments you would need to deploy the application e.g. on [url https://cloud.oracle.com/mycloud/f?p=service:home:0]Java Cloud Service instance as applications cannot be deployed on the Cloud production instance.
    To integrate with the navigator menu refer to the [url http://docs.oracle.com/cd/E15586_01/fusionapps.1111/e16691/ext_nm.htm]Customizing the Navigator Menu documentation.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • BEx Web Applications in BPS Web Interfaces

    Hi all,
    I need to make a BPS web interface which enables the business user to see data in the BW system while posting the budget items in BPS. This is to be done in the Web, and I have therefore tried to implement a solution for the customer following the instructions in the HowTo-paper: "How To.... Integrate BEx Web Applications into BPS Web Interfaces".
    The report is displayed when the interface is executed, but the variable which I have included in the code does NOT have any effect on the BW query (which is a surprise to me) but rather only on the BPS Web Interface (which is no surprise to me).
    The above results in two questions:
    - What part of this code needs to be changed for the variable to take effect on the BW query as well as the BPS Web Interface:
    <iframe
        id="BWReport01"
        name="BWQUERY"
        src="/sap/bw/BEx?
        cmd=ldoc&TEMPLATE_ID=ALLOK_CHECK2"
        width="1200"
        height="600">
        Frames are not supported
    </iframe>
    <script language="JavaScript" type="text/javascript">
        var frame  = document.getElementByld( 'BWReport03' );
        var url    = '/sap/bw/BEx?cmdldoc&TEMPLATEID=';
        var filter = '&FILTER_IOBJNM=0PROFIT_CTR&FILTER_COLLAPS=&FILTER_VALUE_EXT=';
        var '1000/'  = '';
        var appl   = 'ALLOK_CHECK2';
        var varvl  = '%=descr(VarvlSel1_pctr/value)%>';
        var convert = /\((.*)\)/;
        convert.exec(varvl);
        if ( RegExp.$1 != "") varvl = RegExp.$1;
        url = url + appl + filter + comp + varvl;
        url = url.replace(/ /,"");
        frame.src = url;
    </script>
    Particular areas where I am in doubt (in squared brackets):
    [  var '1000/'  = ''; ]
    [  var convert = /\((.*)\)/; ]
    - has anyone had any experience in using the Selector Package (SEL_PACKAGE) rather than the Selector Variable Value (SEL_VARVL)? In case you have, how is it implemented in the HTML-code?
    Looking forward to hearing from you guys soon.
    Best regards
    Rune Rygaard

    Hi Rune,
    Here's what I found - I'm not sure it will solve your problem, but maybe it can give you some hints:
    <b><iframe
    id="BWReport01"
    name="BWQUERY"
    src="/sap/bw/BEx?
    cmd=ldoc&TEMPLATE_ID=ALLOK_CHECK2"
    width="1200"
    height="600">
    Frames are not supported
    </iframe></b>
    I think the section above in bold has to be deleted and replaced by the one specified in section 3.3 of the how to paper: <iframe id=BWReport03" name="BWQUERY" src="/sap/bw/mime/....</iframe>. The reason is the your defintion will display the report, but will not take any variables into consideration.
    Furthermore you're missing a '=' in your code (cmd=ldoc) - I marked it in bold below. What you could also do was to add an alert to display the URL generated by the javascript. I added that in bold as well. That can give you an idea of whats missing.
    Hope this helps,
    Jacob Lund - DK :o)
    <script language="JavaScript" type="text/javascript">
    var frame = document.getElementByld( 'BWReport03' );
    var url = '/sap/bw/BEx?<b>cmd=ldoc</b>&TEMPLATEID=';
    var filter = '&FILTER_IOBJNM=0PROFIT_CTR&FILTER_COLLAPS=&FILTER_VALUE_EXT=';
    var '1000/' = '';
    var appl = 'ALLOK_CHECK2';
    var varvl = '%=descr(VarvlSel1_pctr/value)%>';
    var convert = /\((.*)\)/;
    convert.exec(varvl);
    if ( RegExp.$1 != "") varvl = RegExp.$1;
    url = url + appl + filter + comp + varvl;
    url = url.replace(/ /,"");
    <b>alert (url);</b>
    frame.src = url;
    </script>

  • How to deploy my web application .war file into SAP netweaver Engine

    Hi All,
    I want to deploy web application which is developped using JAVA web technology into SAP netweaver Engine.
    I tried to deploy .war file through SDM but it complained the following error
    "Error loading archive
    C;\Document and Settings\cr1adm\Desktop\MyProject.war
      (server side name is: F:\usr\sap\JR1\JC01\SDM\program\temp\MyProject.war)
    com.sap.sdm.util.sduread.IIIFormattedSduFileException: The information about development component found in the manifest is either missing or incomplete!
    Manifest attributes are missing or have badly formatted value:
    attribute keylocation missing
    attribute keyname is missing
    attribute keyvendor is missing
    attribute keycounter is missing
    (F:\usr\sap\JR1\JC01\SDM\program\temp\MyProject.war)"
    Can any one please suggest how to deploy external web application into SAP netweaver engine.
    Is there any procedure to follow to do this.
    your inputs will be highly appreciated...
    Thanks in advance
    JM

    You may need to convert the .war archive to SDA/SCA file  format before deploying it to SAP Netweaver Engine.
    Check out the below SAP NOTE if it is usefull.
    Note 1223957 - Usage of NetWeaver Packaging Tool.
    Apart from SDM you can also deploy the files through telnet...
    Note 859444 - How to deploy libraries on J2EE Engine 6.40
    1)Connect to telnet as below
    Start --> Run
    telnet hostname/ip address portno
    Ex: telnet xxx.xx.xx.x 5<Instance no>08
    2)Login with administrator id:
    Use the below command to deploy the files.
    deploy <directory path to the SDAs location> version_rule=all on_prerequisite_error=stop on_deploy_error=stop
    Example: deploy E:\usr\sap\trans\EPS\in\VCBASE03_0-10006939.SCA version_rule=all on_prerequisite_error=stop on_deploy_error=stop.
    Also have a look at this note which talks about the error you are getting.
    Note 1171457 - IllFormattedSduManifest/SduFileException during deployment
    Hope it helps.
    Edited by: Khaiser Khan Mohammed on Nov 7, 2010 12:17 PM

  • Web service in SOlution Manager

    Hi¡¡¡
    Someone knows how to configurate the web service in solution manager???
    thanks!!!

    Aris´ "administration_guide_aris_s.pdf"
    Chapter 7.1.2.1.3 How to Activate Web Services
    Markus

  • Inclusion of BEx Web Applications as Single iView into a federated NW2004s

    Hi,
    GA limitation says "Inclusion of BEx Web Applications as Single iView into a federated NW2004s Portal". but at the same time, note 853505 says
    NetWeaver 2004s  BEx Web Applications Java in a NetWeaver 2004s Federated Portal Scenario
    NetWeaver 2004s  Ex Web Applications Java in a NetWeaver 2004s Federated Portal Scenario is not supported.
    This restriction is no longer valid.
    fixed with SP07
    ( Changed at 06.04.2006 )
    what does the sentence of GA limitation mean?
    Kind regards,
    Masaaki

    Hi Prakash,
    I have to implement federated portal and have to share the BW reports with BEA portal. In this scenario SAP EP 7.0-sp9 is the producer and BEA portal is consumer. I have created SAP bw iview in EP and want to share these iview with BEA. Doing so I will use the "WSRP based content sharing" feature of federated portal.
    I found the link for this configuartion in help site. If you have already implemented this and if you have step by step  guide to implement this, please pass it to me. It will be helpful to me. I will award the points.
    I did not get any document on how a BEA portal can register with SAP EP.
    Also, what WSDL path should I provide to BEA portal?
    Thanks in advance,
    manish
    Message was edited by:
            jain manish

  • Calling a webservice from within Bex Web Application Designer

    Hi
    I have a web-template built with BEx web application designer which also contains textboxes. This text should be stored by calling a webservice (standard BI-documents are not an option).
    Can anyone tell me how I could call a webservice from within the BEx web template to store the text contained in the textbox? The webservice-call should include some of the filter-varialbes of the web application.
    Is this only possible by the use of a JavaScript WebItem? If so - does anyone have an example of such a JavaScript.
    Thanks a lot in advance.
    Kind regards.
    Christoph

    Thanks for your response. The BSP page would work out fine if I only needed to save the data.
    But the next time I call the webtemplate, the textarea should be filled by another webservice call with the stored text (so the text can be modified und saved again). This will not be possible by calling a BSP page.
    Do yoiu have any suggestions how to integrate the text (return value from the webservice call) into the textbox in the webtemplate?
    Kind regards.
    Christoph

  • 500 Internal Server Error   BEx Web Application

    Hello,
    can everybody help for the fault, or had the same error ?
    500 Internal Server Error
      BEx Web Application
    Failed to process request; contact your system administrator
    Error Summary
    Exception occured while processing the current request; this exception cannot be handled by the application or framework
    If the information on this page does not help you locate and correct the cause of the problem, contact your system administrator
    To facilitate analysis of the problem, keep a copy of this error page Hint: Most Web browsers allow you to select all content, and copy and paste it into an empty document (such as in an email or simple text file)
    Root Cause
    The initial exception that caused the request to fail was:
    Cannot get connection for 60 seconds. Possible reasons: 1) Connections are cached within SystemThread(can be any server service or any code invoked within SystemThread in the SAP J2EE Engine), 2) The pool size of adapter "SAPFactory" is not enough according to the current load of the system or 3) The specified time to wait for connection is not enough according to the pool size and current load of the system. In case 1) the solution is to check for cached connections using the Connector Service list-conns command, in case 2) to increase the size of the pool and in case 3) to increase the time to wait for connection property. In case of application thread, there is an automatic mechanism which detects unclosed connections and unfinished transactions.
    Log ID 0014C265209B005B000007300000610A000473C4612CBCB9
    thanks

    Hi,
    I am getting similar kind of error.Can you please tell me how you resolved the issue.
    Regards,
    Priyanka

  • Integrating a Java web application into the SAP NetWeaver Portal

    Hello experts,
    We have a requirement to integrate a Java based web application into the SAP NetWeaver Portal using iView/iFrame technology. The Java based web application is completely independent from the SAP environment but should be displayed as part of the SAP Portal environment. The other requirement is the main navigation menu for the Java based web application should be configured and provided in the SAP Portal.
    Any pointers on how exactly this can be done would be of great help.
    Also how can the SSO (Single-Sign-On) to the Java application be implemented so that the user can logon to the java application through the portal without providing the user credentials again.
    Thanks in advance.

    Hi,
    I think you can use URL iviews to integrate your java web application with EP. you have the option of doing SSO with the application as well.
    Have a look at the sap help material
    http://help.sap.com/saphelp_nw04/helpdata/en/f5/eb51730e6a11d7b84900047582c9f7/frameset.htm
    http://wiki.sdn.sap.com/wiki/display/BOBJ/CreateURLiviewintotheSAPEP+portal
    Regards,
    Ganesh N

  • System Error in publish to EP from BEx Web Application Desginer....??

    Hi,
    I am trying to Intergrate BW Reports into EP using BEx Web Application Designer. I have Configured everything fine. I have tested all the connections they are working fine. When i am trying to "Publish BW Report into EP <b>(Publish > In Enterprise Portal 6.0)"</b> using BEx Web Application Desginer i am getting <i><b>System Error</b></i> in Publish to Portal dialog Box.
    Please Help me How to resolve this problem
    Best Regards
    Ravi Shankar B

    Ravi,
    Did you resolve this issue?  We are seeing the same "System Error" in Publish to Enterprise Portal 6.0.
    Thank you,
    Michael

  • Bex Web application designer error

    Hi experts,
    I am getting an error when selecting F4 for FROM and TO in FIscalyear/period in WAD report
    FisaclYear/period->F4
    Then I go to Slect values for FiscalYear/period where I have
    FROM ->F4 and
    TO->F4
    On clicking F4 for FROM and TO value ranges I am getting this error.
    Please sugggest how to solve this error.
    500 Internal Server Error
    BEx Web Application
    Failed to process request; contact your system administrator
    Information for Administrator
    To avoid this exception see the steps below. To help SAP better investigate this issue, you will need to provide the diagnostic information from these steps.
    1. Most likely, the issue you are experiencing has already been corrected. Please make sure that the most recent patch level is deployed on your system according to notes 1033246 and 1011241. Starting with Support Package Stack 16 patch level 30, BI Java is delivered according to the synchronized delivery process described in the note 1033246.
    2. Please ensure that NetWeaver Business Intelligence Diagnostics & Support Desktop Tool does not report any issues on your server according to note 937697. You can start it by clicking here (administrator permissions are required).
    3. When opening any customer message on this issue, please attach:
    Support Desktop Tool support info ZIP file according to note 937697,
    Required information for reproduction according to note 948490.
    Error Summary
    Exception occured while processing the current request; this exception cannot be handled by the application or framework
    If the information on this page does not help you locate and correct the cause of the problem, contact your system administrator
    To facilitate analysis of the problem, keep a copy of this error page Hint: Most Web browsers allow you to select all content, and copy and paste it into an empty document (such as in an email or simple text file)
    Root Cause
    The initial exception that caused the request to fail was:
    Invalid program status: Duplicate member created: 0FISCPER3: 2009001, Sids: 182009001 & 92009001
    com.sap.ip.bi.bics.exceptions.BicsProgrammErrorException
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderInfoObject.addMember(ProviderInfoObject.java:308)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderAttribute.addMember(ProviderAttribute.java:120)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderInfoObject.retrievePresentations(ProviderInfoObject.java:804)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderInfoObjectMember.getValue(ProviderInfoObjectMember.java:64)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.InfoObjectMember.getBaseValue(InfoObjectMember.java:89)
    Edited by: hema.t on Nov 15, 2011 10:35 AM

    hello, i have similar problem.
    I've created simple Web template, which shows text "test template", but when i try to open it from the portal I get the error:
    ""500 Internal Server Error
      BEx Web Application
    Failed to process request; contact your system administrator
    Error Summary
    Exception occured while processing the current request; this exception cannot be handled by the application or framework
    If the information on this page does not help you locate and correct the cause of the problem, contact your system administrator
    To facilitate analysis of the problem, keep a copy of this error page Hint: Most Web browsers allow you to select all content, and copy and paste it into an empty document (such as in an email or simple text file)
    Root Cause
    The initial exception that caused the request to fail was:
    Error: Internal error. No esid found.
    Log ID 984BE15B700A006C0000029000000E880004BAA5DE640345
    Does someone know how to solve this problem?

  • Passing parameters from VC 7.0 to BEx Web Application Designer (WAD) 7.0

    Hi,
    I cannot find any information on how to pass VC parameters to WAD 7.0.
    I read the document "How To…Integrate Visual Composer Applications and BEx Web Templates" but the steps refer to WAD 3.x which is different from WAD 7.x. If I copy - paste the code and make the right changes (like dataprovider etc), I still get many errors since (I assume) the code is DHTML which is not accepted by the XHTML editor in WAD 7.0. In the end of the document they do refer to a more recent version of WAD in which I have to drag-drop a script object from the pane and insert the highlighted JavaScript code. Even after doing this, I'm still stuck with the other code which is not accepted by the XHMTL editor at all.
    Is there anybody who tried this already and is able to provide me a short guide? It's quite important that we can get this thing working.
    Many thanks in advance.
    Regards,
    Sven

    Hi Sven,
    the Web API 3.5 also works in 7.0, but is not official supported. The Web API is replaced with the BICS (BI Consumer Services). For Visual Composer you can use the web api I have done this several times. You can use dropdowns and so on in VC and pass the parameters to WAD for example for filling BI variables. For your requirements I can recommend to use the web api 3.5 reference guide for detailed description how to create the url commands.
    Best Regards,
    Marcel

  • How to integrate deployed Web Services and Portlets

    Hi All,
    I am able to deploy Web Services and Portlets in the Application Server, which is in the network system.Now, I want to know how to integrate the Web Services and Portlets.I dont have any idea about this and i didn't got any good material..
    Please, provide some useful links or material, if anybody has any idea about this.
    Thanks in advance.
    Praphul

    You can consume a Web service from a JSF page for example using the ADF Web service data control:
    http://www.oracle.com/technology/obe/obe11jdev/bulldog/webservices/ws.html
    http://www.oracle.com/technology/obe/obe11jdev/11/wsdc/wsdc.htm
    You can turn these JSF pages into portlets using WebCenter's JSF to Portlet bridge.
    http://www.oracle.com/technology/products/jdev/11/cuecards111/jps_set_62/ccset62_ALL.html

Maybe you are looking for

  • IF condition in Sapscript

    Hi all, Have created a new window in one of the scripts recently. I was asked to display this  window( with some data) only for company code NL01. So I kept the condition , IF reguh-zbukr = 'NL01'..and wrote the code.. Now Im asked to extend the func

  • HT1918 2 daugheters received an iPad. Both are on my iTunes account. How to differentiate the two devices in the Game Center?

    So my two daughters (aged 7 & 9) each received an iPad for Christmas.  They are interested in the same games and I installed them on their device.  Because I registered both of their iPads on my iTunes account, when play these games they are "me".  I

  • How to give client best quality of raw footage

    So normally I shoot, edit, and burn sporting events for a certain client. However, this thime the just want to pay for the raw footage. Since I've noveer done this before, I'm a little confused. Usually I would export using Quicktime and then drop th

  • What's with the Christian & Gospel Albums section?

    Today I noticed that iTunes is hawking cut price Christian & Gospel Albums in its own section on the main Apple Store page. As a person of no religion I find this offensive and don't see why it is placed in full view right there on the main page. It'

  • Trade show magic interactive help needed with adobe connect 8

    Please see my website http://www.magicduncan.co.uk - I am a trade show magician as per my website and was wondering if this can be incorporated into my site to create a webinar presentation? Can I do screen sharing using adobe connect 8 as this is on