Report Definition not found - calling a report from JDev.

Hello,
I have the following on my local machine:
BI Publisher
Jdeveloper
I created a report in BI publisher called Test1, and now I am creating a web service in jdeveloper to call it.
I am having issues with calling it from my jdeveloper.
here is the code I am using to call my report (below).
Since BI publisher is installed on my local machine I tried both paths but neither are working
1- final String reportAbsolutePath = "C:\\Test1.xdo";
2 - "http://aramamni-us.us.oracle.com:9704/xmlpserver/~administrator/Learn/Test1/Test1.xdo"
I am sure 2 will not work since System.out.println("calling " + myPort.getEndpoint()); returns
"calling http://localhost:9704/xmlpserver/services/PublicReportService"
I know the problem is with this line of code but I can't figure it out.
repResponse = myPort.runReport(repRequest,username,password);
    public static void main(String[] args) {
        try {
            bip_webservice.proxy.PublicReportServiceClient myPort = new bip_webservice.proxy.PublicReportServiceClient();
            System.out.println("calling " + myPort.getEndpoint());
            // Add your own code here
             final String username = "Administrator";
             final String password = "Oracle123";
             //final String reportAbsolutePath = "/Web Service Test/HR Manager/Employee Salary Report.xdo";
             final String reportAbsolutePath = "C:\\Test1.xdo";
            // Testing runReport
            System.out.println("Testing runReport Service");
            ReportRequest repRequest = new ReportRequest();
            repRequest.setReportAbsolutePath(reportAbsolutePath);
            repRequest.setAttributeTemplate("default");
            repRequest.setAttributeFormat("pdf");
            repRequest.setAttributeLocale("en-US");
            repRequest.setSizeOfDataChunkDownload(-1);
            System.out.println("1111111111111");
            ParamNameValue[] paramNameValue = new ParamNameValue[1];
            paramNameValue[0] = new ParamNameValue();
            paramNameValue[0].setName("EMP");
            System.out.println("2222222222");
            paramNameValue[0].setValues(new String[] {"20"});
            //paramNameValue[1] = new ParamNameValue();
            //paramNameValue[1].setName("p_job");
            //paramNameValue[1].setValues(new String[] {"CLERK"});
            repRequest.setParameterNameValues(paramNameValue);
            System.out.println("3333333333333");
            ReportResponse repResponse = new ReportResponse();
            System.out.println("4444444444");
            System.out.println(username);
            System.out.println(password);
            System.out.println(repRequest);
            repResponse = myPort.runReport(repRequest,username,password);
            System.out.println("55555555");
            String contentType = repResponse.getReportContentType();
            System.out.println(contentType);
            byte[] baReport = repResponse.getReportBytes();
            FileOutputStream fio = new FileOutputStream("C:\\temp\\test.pdf");
            fio.write(baReport);
            fio.close();
        } catch (Exception ex) {
            ex.printStackTrace();
    }Output -> Report Definition not found
calling http://localhost:9704/xmlpserver/services/PublicReportService
Testing runReport Service
1111111111111
2222222222
3333333333333
4444444444
Administrator
Oracle123
bip_webservice.proxy.ReportRequest@8238f4
WARNING: The received SOAP fault contains non standard fault element: "{http://xml.apache.org/axis/}hostname".  This element will be ignored.
javax.xml.rpc.soap.SOAPFaultException: oracle.apps.xdo.webservice.exception.OperationFailedException: PublicReportService::generateReport Failure: Due to oracle.apps.xdo.servlet.CreateException: Report definition not found:C:\Test1.xdo
     at oracle.j2ee.ws.client.StreamingSender._raiseFault(StreamingSender.java:565)
     at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:400)
     at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:113)
     at bip_webservice.proxy.runtime.PublicReportServiceSoapBinding_Stub.runReport(PublicReportServiceSoapBinding_Stub.java:3733)
     at bip_webservice.proxy.PublicReportServiceClient.runReport(PublicReportServiceClient.java:173)
     at bip_webservice.proxy.PublicReportServiceClient.main(PublicReportServiceClient.java:84)
Process exited with exit code 0.Thanks for the help - what can i do to solve this.
Edited by: Rooney on May 25, 2010 2:57 PM

I tried to follow the suggestions provided in the earlier post and called the BI report from SOAP UI
but i am getting an error
oracle.xdo.webservice.exception.OperationFailedException: PublicReportService::generateReport for reportAbsolutePath [/users/weblogic/Sample/Training.xdo] failed: due to oracle.xdo.servlet.CreateException: Report definition not found:/users/weblogic/Sample/Training.xdo [username=weblogic]
I am not sure what is the issue.
Can you please guide me on the same?
Regards
AR

Similar Messages

  • Oracle.apps.xdo.servlet.CreateException: Report definition not found

    We're running xml publisher under Oracle AS 10.1.3.4 on RHEL 5 against an Oracle 11.1.0.7 database. The problem we have is that scheduled reports fail intermittently with the following error "oracle.apps.xdo.servlet.CreateException: Report definition not found" even though the report does exist and there are no privilege issues. Oracle support suggested increasing the Java memory parameters in opmn.xml which we did and documnet # 333862.1 on MOS recommended increasing the Apache timeout. This also had no effect.
    Does anyone have any ideas what might cause this and how to fix it?
    This is the error stack
    Failed
    System Message oracle.apps.xdo.servlet.scheduler.ProcessingException: oracle.apps.xdo.servlet.CreateException: Report definition not found:/00. PRACTICE/AU/P42 - Internal/Drive usage report/Drive usage report.xdo
         at oracle.apps.xdo.servlet.scheduler.XDOJob.generateReport(XDOJob.java:983)
         at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:418)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    Caused by: oracle.apps.xdo.servlet.CreateException: Report definition not found:/00. PRACTICE/AU/P42 - Internal/Drive usage report/Drive usage report.xdo
         at oracle.apps.xdo.servlet.ReportException.fillInStackTrace(ReportException.java:124)
         at java.lang.Throwable.<init>(Throwable.java:196)
         at java.lang.Exception.<init>(Exception.java:41)
         at oracle.apps.xdo.servlet.ReportException.<init>(ReportException.java:36)
         at oracle.apps.xdo.servlet.CreateException.<init>(CreateException.java:18)
         at oracle.apps.xdo.servlet.ReportRepository.getReport(ReportRepository.java:74)
         at oracle.apps.xdo.servlet.scheduler.XDOJob.generateReport(XDOJob.java:972)
    Edited by: 889485 on 21/06/2012 18:07

    Hi Tim,
    Thanks a lot.......
    To find solution for this i tried this options all are failed:
    1) I created a user,this user can schedule and view but he cant edit report. I scheduled from this user, also it failed some day.
    2)I copied all the reports in to new folder from that i scheduled but no luck.
    one more point... i am having 9 reports to schedule run daily between 11AM to 11.45AM.Is this will b any problem for scheduling.
    In all the above cases i am getting same errors as posted above.
    here i am showing one pic the report failed when it is in that sequence of 9 reports but success when it is scheduled run immediate.
    !http://img263.imageshack.us/img263/6343/errorh.jpg!
    Its urgent for me......pls help me.
    Thanks,
    KSS

  • Report definition not found

    I install OBIEE 11g and login to BI publisher.
    However, I get errors as follows
    Report definition not found:/~administrator/Shared Folders/Sample Lite/Published Reporting/Reports/Product Listing/_report.xdo
    Where is the correct report definition?

    The report definition, if store on File System, are located under folder OracleBI_HOME\xmlp\XMLP\Reports for shared folders and OracleBI_HOME\xmlp\XMLP\Users for user reports.
    Hoep this helps.
    Matthieu

  • "Report definition not found" in IE 6.0

    My BI Publisher server 10.1.3.2 using oas 10.1.3 in HP-UX,when I view a report named with chinese using firefox,it's ok,but if I using IE 6.0,return a error:"Report definition not found:/Learning_Report/�û�/�û�.xdo",why?

    Hi,
    Which IDE are you using: NetBeans 6.0, or JSE 8.1?
    Regards,
    -Brad Mayer

  • Error in Dialog Module  - INCLUDE report "%_HR9066" not found

    Hi,
    After upgrade from 4.6B to ECC 6.0.When i display/create/change Custom Infotype 9072  in transaction PA30. i encounter a dump stating
    INCLUDE report "%_HR9066" not found. It occurs when the program goes for CALL DIALOG... in the SAP standard program.
    Do advice on how to resolve this issue

    Hi Chayan,
    9066 is the custom infotype .
    After upgrading check for the following things which are related to infotype :
    1) Go to se51 and check for Program MP906600 and screen 2000 exist .If not there is a problem in calling the screen
    2)Go to se11 and check whether the table PA9066 and structure P9066 exist
    3)Check whether the infotype is assigned to the Infotypes in spro .(Optional)
    If everthing is suceessful , the infotype exist in the system . If not one of the objects might miss from the above list .
    Regards,
    Gajalkshmi

  • Syntax Error - INCLUDE Report "%_HR9010" Not Found

    I have an HR ABAP program(Query Generated) that works in Enterprise and is now being testing in the ECC 6.0 test environment and is getting an syntax error. The syntax points the line in the code where a custom infotype is declared with the infotypes syntax. Example:
    Infotypes:
    9010
    syntax error reads:
    'include report"%_HR9010" not found.
    Why am I getting that syntax error? The syntax error does not occur on standard sap infotypes, 0000, 0001, 0002. It appears to be failing on custom infotypes.  The Structure definition is there, the table definition is there and there are thousands of records in the table and it can be read by other programs with no problem. What piece is missing, could it be something to do with Infosets, whatever they are?

    Hi Murali,
    Please excute the report RPUMS40CCI. This report is to generate infotype includes and additional structures required for not only custom but also standard infotypes.
    In the selection screen provide the infotype number and select checkboxes 'Generate infotype include'
    and 'Generate additional structure'.
    Note: "RPU40CCI" is only for infotypes which starts with number '9*'.
    Thanks & Regards
    Santhosh
    Edited by: SS on Feb 12, 2009 1:21 PM

  • INCLUDE report "%_HR9920" not found

    Hi.
    I'm having að problem with an old ABAP report which I wrote. After I and my company upgrated SAP from 4.6C to 4.7, I get the error "INCLUDE report "%_HR9920" not found". This infotype 9920 is some custom made infotype I think and it looks like I can not use it as before in my report.
    Here is my ABAP code:
    INFOTYPES:
      0000,
      0001,
      0002,
      0006,
      9920. "The error comes here
    TYPES: BEGIN OF tp_data,
      bukrs LIKE p0001-bukrs,
      perid LIKE ...
    Can any one give me a hint what the problem is?
    Regards,
    Stefán.

    Hi Umar.
    I tried to access the screen for infotype 9920 through pa20/pa30 and that is all right, no error and the screen appears normally.
    Then I tried to check the report again in case of the screen had regenerated, but I got the same error. It was not me who developed this infotype and the screens so I am not sure how to regenerate the IT9920 screen. Can I do that through PM01?
    P.S. I also tried to re-activate the structure p9920 but it did not change anything.

  • INCLUDE report "DBF1SF01" not found

    Hello
    I am newbie to SAP ABAP. I've installed Mini SAP in my system. It's working fine other than executing my own created ABAP report. The following error is flashing everytime I try to execute it.
    INCLUDE report "DBF1SF01" not found
    Can anybody solve this issue?
    Thx
    Regards
    Ramana

    Yes! you are right LDBF1S is not available in my system. I think this is not avaialbe becuase my R/3 System is SAP MBS 4.6D (Mini SAP). But as I told that I am new to ABAP programming and just started "Hello World" report. Not including / using any database. Please find my report program below.
    REPORT Z_RAM .
    *Hello world in ABAP/4 *
    WRITE 'HELLO WORLD'.
    Tht's it.
    Please let me know wht did I miss?
    Thx
    Ramana

  • INCLUDE report "%_HR9008" not found'.

    Hi All
    I also got the same problem. I already executed RPUMS40CCI. But i still got error message ' INCLUDE report "%_HR9008" not found'.
    any one tellme how to run the standard program RPUMS40CCI?

    Hi Jagan,
    You will have to run program RPUMS40CCI for this custom infotype and the error will be resolved.
    Reward points if useful...
    Thanks,
    Falguni

  • INCLUDE report '%_HR9070' not found.

    When run HR related programs in upgradation project iam getting error as "INCLUDE report '%_HR9070' not found.".
    To remove this error i need to run one standard program, any body knows that program please let me know

    Hi Jagan,
    You will have to run program RPUMS40CCI for this custom infotype and the error will be resolved.
    Reward points if useful...
    Thanks,
    Falguni

  • XML report is not giving heading while running from application.

    Hi Everybody,
    We are facing one issue in xml.
    XML report is not giving heading while running from application.
    Pls suggest.
    Regards
    Sreehari.
    Edited by: user1762471 on Sep 27, 2010 10:48 PM

    What application you mean?

  • Oracle.xdo.servlet.CreateException: Data Model definition not found

    Hie,
    I have installed 11.1.1.6 version BI and put patch on that.Copied the files from OIM and located them into specified location.
    Now Iam going to User Summary report and clicking on Open and Iam getting error as "oracle.xdo.servlet.CreateException: Data Model definition not found:/Oracle Identity Manager/User Reports/User Summary.xdm" .
    I was able to create sql query and a report.BUt unable to generate report for this predefined reports.
    Please give me the reason

    Has anyone faced this issue before? Is there a kix page for Drop 7 related issues?

  • Bc4j view definition not found

    Within the doDML method in my PatientImpl class, I have implemented this snippet of code to insert a record into the TransactionLog entity after an insert into the Patient entity.
    DBTransaction trans = getDBTransaction();
    TransactionLogViewImpl txnLogView =
    (TransactionLogViewImpl)trans.createViewObject(
    " hmdclinical.customactiondemo.model.bc4j.TransactionLogView ");
    TransactionLogViewRowImpl row =
    (TransactionLogViewRowImpl) txnLogView.createRow();
    row.setAction('TEST');
    txnLogView.insertRow(row);
    txnLogView.remove();However, the error returned is "JBO-25002: Definition hmdclinical.customactiondemo.model.bc4j.TransactionLogView of type View Definition not found".
    What am I doing wrong ? My View object is called TransactionLogView and my business components package is hmdclinical.customactiondemo.model.bc4j ??
    Help ?
    Also - is it possible to perform the insert and then requery the same row to check for data in other columns on the table had that been populated by a trigger as the result on the insert performed by my business rule code ?? If i make the attribute refresh after update can I do a
    row.setAttribute
    view.insertRow(row)
    row.getAttribute ??
    How else would I get the values back from the row just inserted ??
    Thanks,
    Brent

    Please ignore the first part of my question - stupid typo that i always make !
    But the second part....
    Also - is it possible to perform the insert and then requery the same row to check for data in other columns on the table had that been populated by a trigger as the result on the insert performed by my business rule code ?? If i make the attribute refresh after update can I do a
    row.setAttribute
    view.insertRow(row)
    row.getAttribute ??
    How else would I get the values back from the row just inserted ??
    Can someone help me with this ?
    Thanks,
    Brent

  • Binary class definition not found: Hello  --- When access the sample

    Hi,
    I followed the the document of
    Oracle9iAS Release 2 Containers for J2ee
    dated 12/01/01
    to deploy the stateless pure java web service, Hello.
    When I hit
    http://server:port/hellows/helloService?wsdl
    I got the generated WSDL
    Also, I can get the proxy class source and jar from
    http://server:port/hellows/helloService?proxy_jar
    http://server:port/hellows/helloService?proxy_source
    However, after I compiled HelloClient and HelloProxy, I got the following error when I tried to access the web service, Hello
    Any advice is appreciated.
    Qiming
    [SOAPException: faultCode=SOAP-ENV:Protocol; msg=Unsupported response content type "text/html", must be: "text/xml". Response was:
    <HTML><HEAD><TITLE>500 Internal Server Error</TITLE></HEAD><BODY><H1>500 Internal Server Error</H1><PRE>oracle.j2ee.xanadu.JasperGenerationError: no source generated during code generation!: 1 in getFile name: \Hello.class
    <br>1 in getFile name: \Hello.java
    <br>error: error message &apos;class.format&apos; not found<br>binary class definition not found: Hello
    <br>
    <br>     at oracle.j2ee.ws.JavaWrapperGenerator.generate(JavaWrapperGenerator.java:267)
    <br>     at oracle.j2ee.ws.RpcWebService.generateWrapperClass(RpcWebService.java:668)
    <br>     a[i]Long postings are being truncated to ~1 kB at this time.

    You may want to try the latest and greatest OC4J 9.0.3 which is on OTN at:
    OC4J 9.0.3: http://otn.oracle.com/software/htdocs/devlic.html?/software/products/ias/htdocs/utilsoft.html
    The updated Web service writeups are in:
    <oc4j_home>\webservices\demo\demo.zip (unzip and look in the <demo_unzip>\basic\java_services\README.txt)
    One thing that might cause your problem is making sure your class path is updated to point to all the right class files as described in the writeup, including the jar file containing the downloaded class files.
    Mike.

  • Class definition not found

    Hi
    I am getting an error with the message ' xml token writer ' class definition not found.May you please provide the API that I should use to make this class available..
    Thanks in advance,
    Sudeep.

    Hi ,
      I have created an application which accepts a user request for data transfer  from a source system to target system viz. Primavera project planner and SAP project system.
    The application verifies the data on the source and target system before actually transferring data.The info is displayed to the user and only when the user clicks transfer button is the data transferred.
    When the data size is small,the transferred successfully.
    However , when data size is large, the application gives XML Token Writer Class not found exception.
    Thanks in advance.

Maybe you are looking for

  • IPod mini battery life

    I bought my iPod mini about 2 years ago and im starting to get worried about how much longer the battery is going to last. What is the average life of the battery and do most batteries slowly stop retaining their charge or do they just die one day?

  • EDI Partner Profile WE20

    Hi all, I wanted to Know about the use of creating partner profile in WE20 and how it is linked to EDI ? and also we have message types in WE20 for both Inbound and outbound Parameters ? what are these message types actually used for and its uses  ?

  • Cannot load required classes for service SLD Data supplier

    Hello Experts,          I am trying to use the SLD Data supplier service from visual administartor for registering my DEV EP 7.0 engine in central SLD.When am trying to access that particular service from visual admin,it is throwing an error saying t

  • Ctrl-Alt-CapsLock key remapping not honored

    I have the Ctrl-Alt-CapsLock keys remapped on my Win XP system (using  MS PowerToys), but Illustrator (14.0) insists on using the original positions of these keys.  Anybody know how can I make Illustrator use the remapped positions with the built-in

  • SMB Drag and Drop in Win 98

    We are setting up iFS to enable SMB drag-and-drop to upload multiple files in Windows 98 environment. Windows 98 does not take IP address when mapping the network drive, it takes computer name only. How do you resolve this issue?