Getting an error when calling Java System Report from Moniroring in NWA

Here is the deatils error message. Not quite sure what is referring to .
The initial exception that caused the request to fail, was:
   java.lang.NullPointerException
    at com.sap.engine.admin.model.performance._gen.HistoryData$Impl.getHistoryGranularities(HistoryData.java:103)
    at com.sap.webadmin.performance.viewer.comp.wdp.IPublicDataController$IHistoryGranularitiesTNode.doSupplyElements(IPublicDataController.java:1488)
    at com.sap.tc.webdynpro.progmodel.context.Node.supplyElements(Node.java:406)
    at com.sap.tc.webdynpro.progmodel.context.Node.getElementList(Node.java:345)
    at com.sap.tc.webdynpro.progmodel.context.Node.createMappedElementList(Node.java:498)
Thanks
Bani

Hi - Were you able to resolve the above error. I am also having a similar problem and I would like to know your resolution on this.
Thanks in advance.

Similar Messages

  • Error when calling Java Web Services from ABAP.

    Hello experts:
        In my project, I will call Java Web Services with ABAP coding. With WSDL, I generated a proxy class and created a HTTP connection (t-code: SM59) and a logical port (t-code:lpconfig) for this proxy class. But when running, I would receive the folllowing errors:
       SOAP:1.023 SRT: Processing error in Internet Communication Framework: ("ICF Error when receiving the response: HTTP COMMUNICATION FAILURE")
       If I used HTTPS, there is no problem.
    Regards
    Bob

    Hi Bob,
    It might be the possibility that your java web server is configured to listen only on HTTPS.
    If your HTTPS is working fine, then first check with your JAVA server for HTTP connectivity, then try it calling through ABAP.
    Regards,
    Piyush

  • Getting Msg: Error when calling Credit Management: Technical Error

    Hi All,
    While creation of sales order in ECC, i am getting a message "Error when calling Credit Management: Technical Error"
    Can you help me in this case
    Regards,
    Satish

    Satish,
    Just so you know, this BADI "links" SD module to FSCM credit management. If you use the right code in this BADI, it copies over credit information on to the sales order such as Credit Account, Risk Class and Credit representative code.  (Later this risk class, order's credit control area and credit group is used to look up the appropriate line in OVA8 settings)
    Now you could be getting this error for any of the issues:
    1. If the business partner is not created for the customer for which you're trying create a sales order (The credit account (sales order header) should have a relevant BP already) Check if the BP is correctly created.
    2. Next if the credit data has been maintained for the BP in credit management.
    3. XI/PI connectivity issues etc
    Check if all this is maintained and you should be good. Cheers

  • Getting an error when calling oaf page via notifications

    I am getting the below error when calling an OAF page(workflow) via notifications .
    It's working fine when i am not calling through notifications.
    Error:-
    You are trying to access a page is no longer active.
    -You may attempted to access to this page directly by bookmarkking the page or
    copying URL.This page doesn'y support bookmarking.
    -The referring page may have come from a previous session.Please select home to proceed.

    Hi,
    Refer below threads:
    You are trying to access a page that is no longer active
    You are trying to access a page that is no longer active.
    You are trying to access a page that is no longer active.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Getting error when calling Java program from JSP page.

    Hi All,
    I'm getting below error msg, previously the page use to display and also java program use to run properly, but suddenly today i came across this error. May be some settings have been changed on my server, since number of developers uses this common webserver here.
    Any help would be much appreciated. Pls let me know if if anyone requires much info regarding this one.
    javax.servlet.ServletException: sun/tools/javac/Main
         at java.lang.Throwable.fillInStackTrace(Native Method)
         at java.lang.Throwable.fillInStackTrace(Compiled Code)
         at java.lang.Throwable.(Compiled Code)
         at java.lang.Exception.(Compiled Code)
         at javax.servlet.ServletException.(Compiled Code)
         at org.apache.jasper.servlet.JspServlet.service(Compiled Code)
         at javax.servlet.http.HttpServlet.service(Compiled Code)
         at org.apache.tomcat.core.ServletWrapper.doService(Compiled Code)
         at org.apache.tomcat.core.Handler.service(Compiled Code)
         at org.apache.tomcat.core.ServletWrapper.service(Compiled Code)
         at org.apache.tomcat.facade.RequestDispatcherImpl.doForward
    Root cause:
    java.lang.NoClassDefFoundError: sun/tools/javac/Main
         at org.apache.jasper.compiler.SunJavaCompiler.compile(Compiled Code)
         at org.apache.jasper.compiler.Compiler.compile(Compiled Code)
         at org.apache.jasper.servlet.JspServlet.doLoadJSP(Compiled Code)
         at org.apache.jasper.servlet.JasperLoader12.loadJSP(Compiled Code)
         at org.apache.jasper.servlet.JspServlet.loadJSP(Compiled Code)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(Compiled Code)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(Compiled Code)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(Compiled Code)
         at org.apache.jasper.servlet.JspServlet.service(Compiled Code)
    Message was edited by:
    shukla_arvind

    did u happen to upgrade ur jdk?????

  • Getting deserialization error when calling a secured webservice

    Hi All,
    I am getting deserialization error: java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement when I am calling my secured web service through a proxy client.
    I have secured my webservice using a keystore, I had created using keytool . In key store I have created keys using RSA algorithm.
    when I am doing all this for a webservice in which input is a string variable, then it is working.
    But if I am passing a document then it is giving me ERROR OWS-04045 Malformed Request Message: deserialization error: java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement .
    Below is the code of java class, I have exposed as webservice :
    import java.io.StringWriter;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerConfigurationException;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    import org.w3c.dom.Document;
    public class READXML {
    public String getXML(Document xmlDocument) {
    TransformerFactory tFactory = TransformerFactory.newInstance();
    Transformer transformer = null;
    try {
    transformer = tFactory.newTransformer();
    } catch (TransformerConfigurationException e) {
    e.printStackTrace();
    StringWriter writer = new StringWriter();
    try {
    transformer.transform(new DOMSource(xmlDocument),
    new StreamResult(writer));
    } catch (TransformerException e) {
    e.printStackTrace();
    return writer.toString();
    Appreciate if any body can help me to resolve the issue.
    thanks in advance

    Mike,
    I have tried by validating xml, again it is giving same error.
    when I am not securing my webservice then it is working fine.
    The problem is coming only when i am securing my webservice.

  • Getting ie error when calling event from code.

    Hi all!
    I've got an application (running on 6.40 sp8, ep6 sp2) that is pretty basic by all means. Since I want to implement some way to tell the user when he/she has made an error or just to inform him/her about something, I decided to use the ConfirmationDialog.
    I've created an action called onActionShowErrorMessage in my view. This action is tied to my controller and an event defined in the controller.
    Hence, when I want to show the ConfirmationDialog to show the user an error message, I call the controller method and in the method I fire the event that my view method is looking for.
    So far so good..
    When I call my controller method from a button action in the view everything works nicely, but when I try to call it from the wdInit method it fails?! I do get the ConfirmationDialog up but I also get an IE error window telling me that IE is trying to open a page it cannot find. I have no idea why it tries to open any page at all, since there is no navigation defined for this action.
    Anyone got an idea? I couldn't find any good stuff in the system logs either
    Best regards,
    Andreas

    Hello Sam!
    Thanks for your answer! I would like to use something more of a pop thing, since i want to make sure the user sees it. The MessageManager does not work as good as it used to anymore, since it puts all messages in the bottom of the page. This page needs to be scrolled in order to see the error message..
    Anyone got an idea of a workaround? I'm reading a propsfile, and in case I'm not able to read it I want to display this to the user.
    B.R
    Andreas

  • Getting 500 Error when calling XI from Siebel

    Hi,
      We have generated a WSDL file from XI and gave it to Siebel team. They are getting a 500 Error when they try to call us using that WSDL file. Below is the error message they are getting.
    "[1] Error Invoking service 'MI_SIEBEL_WS_ORDER_TOXI_OUT', method 'MI_SIEBEL_WS_ORDER_TOXI_OUT' at step 'Call Web Service'. (SBL-BPR-00162).
    [2] HTTP Request error during 'Submitting Data Send HTTP request': 'Status code -500'(SBL-EAI-04117)"
    Thanks in advance for the help.
    Thanks
    Kumar

    Hi,
    Are you sure your Sender SOAP adapter is configured properly. Also ensure that the SIEBEL team is using the right URL to communicate to the SOAP adapter.
    First try using SOAP Client and see if the scenario is working fine. If so then the problem lies in SIEBEL.
    Check this link for confiuring SOAP sender
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/5ad93f130f9215e10000000a155106/content.htm
    Thanks,
    Pakash

  • Error when opening an existing report from BW system

    Hi All,
    I have Crystal Reports 2008.
    Service Pack 2.
    Fix Pack 2.2 (I also tried with fix pack 2.7)
    When I try to open a crystal report from a bw system it gives me error message : " An error occured while updating the report's parameter pick list.  " ..
    Do you have any idea how can I fix this ?
    Regards
    Ozan

    Post your question BEX and B1 and classic SAP data source issues to the Integration Kit forum

  • Browser performance issue when Calling BI Publisher report from OBIEE dashb

    Hi Techies,
    We installed OBIEE 10.1.3.3 on SunOS 5.9 unix box.This is PROD env.We are calling BIPublisher report from OBIEE dashboard by clicking the BIP reports link on OBIEE dashboard.After clikcing the link BIPublisher report is opening in another browser window.But is it taking time.
    Plz tell me how can we reduce the time taken to open BIPublisher report window when we cilck on the report name in OBIEE dashboard
    Thanks,

    Suresh
    There is no out of the box method to get the EBS report to OBIEE. You could look into moving the EBS report to a mountable web server directory after it completes and then show it in OBIEE via a link or html object. You will need to rename the report of course, every time you run it its going to change names.
    In an after report trigger you could call a small java class to move and rename the file for you.
    Alternatively, recreate the report in the standalone version. Be aware that you are going to have to set orgs yourself, BIP is not aware of orgs outside of EBS
    Tim

  • Error when calling a javascript fonction from asp c# code

    Hi,
    I have an error when I excute my code below and I do not understand where it is coming from.
    page ASPX:
    <asp:Button ID="Bt_refresh" OnClick="Bt_refresh_Click" runat="server" Text="Resfresh" />
    page ASP:
    protected void Bt_refresh_Click(object sender, EventArgs e){            System.Web.UI.ScriptManager.RegisterStartupScript(this, this.GetType(), "Test", "<script type='text/javascript'>switchTo(event,'mapserv.xml');</script>", false);           }
    page JavaScript:
    function switchTo(event, dzi) {    console.log("Debut switchTo");    if (dzi) {        console.log(dzi);        viewer.openDzi(dzi);        console.log("open dzi");    } else {        viewer.close();        console.log("viewer closed");    }}
    and I get that error:
    Uncaught TypeError: Cannot read property 'openDzi' of nullLoad_image.js:14
    switchToLoad_image.js:14
    (anonymous function)
    However my link is working when I use this method in my ASPX page:
    <a href="#" onclick="switchTo(event,'map.xml');">map</a>

    Hi mi jo,
    ASP.NET forum is the right forum for your question, you can get more helpful ansers if you post a new thread there.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error when calling simple restful service from SOA 11G

    Hi'
    I have a URL for simple restful service
    http://xxxxx:857/swift/v2/EMPIDChanges/{bookmarkDate}
    GET method
    I am able to invoke this from IE and This URL is also accessible in UNIX server where SOA server is deployed.
    http://xxxxx:857/swift/v2/EMPIDChanges/2012-11-28%2005:57:49
    I am using HTTP Binding adapter,
    This is what goes in the composite.xml
    <reference name="ff" ui:wsdlLocation="ff.wsdl">
    <interface.wsdl interface="http://xmlns.oracle.com/pcbpel/adapter/http/AssetID/Test_AssetID_VL/ff#wsdl.interface(Request_Response_ptt)"/>
    <binding.ws port="http://xmlns.oracle.com/pcbpel/adapter/http/AssetID/Test_AssetID_VL/ff#wsdl.endpoint(ff/Request_Response_pt)"
    location="ff.wsdl" supports="http">
    <property name="http.verb" type="xs:string" many="false">GET</property>
    <property name="endpointURI" type="xs:string" many="false">http://xxxxx:857/swift/v2/EMPIDChanges/{bookmarkDate}</property>
    <property name="http.payload" type="xs:string" many="false">url-encoded</property>
    <property name="oracle.webservices.auth.username" type="xs:string" many="false" override="may">Test1</property>
    <property name="oracle.webservices.auth.password" type="xs:string" many="false" override="may">Test1</property>
    </binding.ws>
    however I am getting error
    <remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>oracle.fabric.common.FabricInvocationException: Unable to access the following endpoint(s): REPLACE_WITH_ACTUAL_URL</summary>
    </part>
    -<part name="detail">
    <detail>Unable to access the following endpoint(s): REPLACE_WITH_ACTUAL_URL</detail>
    </part>
    -<part name="code">
    <code>null</code>
    </reference>
    Please advice,
    Thanks,
    Yatan

    WS Binding: exception durign SOAP invocation: java.util.NoSuchElementException
    Looks like the error is in the data sent to or expected from the service in your composite. Check that audit logs and composite flow to make sure your soap message when using soapui matches what you are working with in soa suite.

  • Error when Call DS Smoke Test from Siebel.

    Hi ,
    I am trying to test the DS Smoke test from Siebel. I have configured as per the document. but when I click the Button "DS Smoke Test" button I am getting below error
    Error invoking service 'Policy Automation Determination Server', method 'Assess' at step 'Call Determination Server'.(SBL-BPR-00162)
    Operation 'Assess' of Web Service 'http://oracle.com/determinations/server/10.0/server/types.DeterminationServer' at port 'AdminSmokeTest' failed with the following explanation: "Can not parse request. Reason: request does not contain expected root element: assess-request".(SBL-EAI-04308)
    I have Verifiyed the Message that send by Siebel,the root element is assess-request. I have copied the Message below.
    can anyone help me to reslove this issue?
    <?xml version="1.0" encoding="UTF-8" ?>
    <?Siebel-Property-Set EscapeNames="true"?>
    - <PropertySet>
    - <Message MessageId="" IntObjectName="Policy Automation Assess Request" MessageType="Integration Object" IntObjectFormat="Siebel Hierarchical">
    - <ListOfPolicy_spcAutomation_spcAssess_spcRequest>
    - <assess-request>
    - <ListOfsession-data>
    - <session-data>
    - <ListOflist-entity>
    - <list-entity entity-type="global">
    - <ListOfentity>
    - <entity id="global">
    - <ListOfrelationships>
    <relationships />
    </ListOfrelationships>
    - <ListOfattribute>
    <attribute datetime-val="2010-10-05T23:36:21" id="created" />
    <attribute text-val="X" id="firstname" />
    <attribute text-val="6734VN8" id="lastname" />
    <attribute text-val="P002704" id="userid" />
    </ListOfattribute>
    - <ListOfattribute-outcome>
    <attribute-outcome outcome-style="value-only" id="validity_text" />
    </ListOfattribute-outcome>
    </entity>
    </ListOfentity>
    </list-entity>
    </ListOflist-entity>
    </session-data>
    </ListOfsession-data>
    </assess-request>
    </ListOfPolicy_spcAutomation_spcAssess_spcRequest>
    </Message>
    </PropertySet>

    Hi there,
    Can you put in your response what version of the following components you are using:
    - OPA Connector for Siebel
    - Siebel
    From first glance, I suspect that you are not sending the request to the correct Determinations Server URL/end point. The Determinations Server generally starts several End points for each rulebase that it deploys.
    Check the Outbound Web Service by going to; Administration - Web Services --> Outbound Web Services
    - Search for the web service with name space "http://oracle.com/determinations/server/10.0/server/types"
    - Select the Service port "AdminSmokeTest"
    - Check the address, it should be something like: "http://localhost:8888/siebel-determinations-server/assess/soap/generic/10.0/AdminSmokeTest"
    It might help if you posted the address in your configuration here.
    Cheers
    Frank

  • Error when calling a stored procedure from a SQL Script

    Apologies if this is a really dumb question but I can't seem to call a procedure in package from a SQL script. I have a simple package.procedure containing a loop to populate a table. I would like to include a call to this procedure from my database install script, that also includes my CREATE and INSERT statements. I run the script using "@install_databae" and the CREATE and INSERT statements run fine. The script gives an error when it reaches the line below:
    exec lazarus.PopulateGridPositions;
    and gives the error.....
    BEGIN lazarus.PopulateGridPositions; END;
    ERROR at line 1:
    ORA-04063: package body "LAZARUS.LAZARUS" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "LAZARUS.LAZARUS"
    ORA-06512: at line 1
    The procedure and package have both compiled without errors and the statement on its own works fine in SQL*Plus.
    I've obviously missed some fundamental concept with scripts and SQL. Please can anybody help me?

    Histon FTM wrote:
    ORA-04063: package body "LAZARUS.LAZARUS" has errors Above, obviously conflicts with the statement that follows:
    >
    The procedure and package have both compiled without errors and the statement on its own works fine in SQL*Plus.I suggest you take a look in the USER_ERRORS view to see, what the errors are.
    And just checking:
    You have schema called LAZARUS, which holds a package named LAZARUS, which holds a procedure called POPULATEGRIDPOSITIONS?
    Edited by: Toon Koppelaars on Oct 1, 2009 5:55 PM

  • Keep getting import error when trying to import photos from my camera. "iphoto cannot import your photos because there was a problem downloading an image".  Can anybody help?

    Have a problem importing my photos to iphoto '11.  Keep getting an error message.  Tried deleting some photos from iphoto as well as my camera, but it didn't help.  Can anybody tell me why this is happening?

    what happens when you use Image Capture (in your applications folder) and see what happens
    LN

Maybe you are looking for

  • Acrobat 9 implementation of PDF Spec

    Hello, Acrobat and Reader 9 have been available for a while now, but the documentation of their implementation of the PDF specification is not. At least I cannot find it on http://www.adobe.com/devnet/pdf/pdf_reference.html It is still the old 8.1 do

  • ATI Catalyst 5.5 Motherboard/IGP Drivers Released

    https://support.ati.com/ics/support/default.asp?deptID=894&task=knowledge&folderID=27 See Release Notes for list of Resolved and remaining Known Issues for this release. I've installed and tested the XP set with no apparent problems. Danno

  • How do I remove the WiseConvert B Community toolbar from Firefox?

    How do I remove the WiseConvert B Community toolbar from Firefox? It has suddenly appeared and even though I open FireFox > View>Toolbars> deselect Wise Convert etc. it reappears when I reopen FireFox. Can't find anything in any of my files about it.

  • App World error id 40850, bb 9860

    Hello There I've recently upgraded my device to bb 9860 monza and i keep getting me an error id 40850 when i try to use the app world, "Blackberry app world is having trouble connecting to the blackberry app world server.verify your network connectio

  • Can I upgrade memory on Macbook Pro 13" 2.5GHz 4GB RAM, Model Z0MT7B/A

    I have ordered a Macbook Pro from a retailer here in the UK. It ships with 4GB RAM but I know I will 8gb or possibly 16GB. Does anyone know whether the memory is removable and changeable in this model, as it used to be in earlier Macbook Pro 13" mode