Crystal Reports version 10  error when displaying report

Hello: New member here, been lurking around for a while. A lot of good information here.
I do hope this is the right place to ask this first question.  I have a customer that has a Crystal Reports 10 installation and cannot display reports since he upgraded from Crystal report 8 to Crystal reports 10
The error he gets is pop message:
CRAXDT error Occurred on Server Error Number: -2147221005 Error description: 006ASP 0177Server
CreateObject Failed~800401f3
Connection to the database is good we checked with query using SQL.
Let me know what you think I should check next.
I appreciate it.
Thanks
Damon

1212487 - Error: "CRAXDRT Error Occured on Server. Error Number:-2147221005"
Symptom
A report is called through the Active Server Pages (ASP) Report Server to be displayed in the Report Viewer for ActiveX. However, the report is displayed with blank pages and when the viewer is switched to the Report Viewer for HTML the following error is displayed:
"CRAXDRT Error Occurred on Server. Error Number:-2147221005 Error Description: 006ASP 0177 Server.CreateObject Failed~Invalid Class String"
The same ASP application returns the report correctly when it is called from a client computer with the full version of Crystal Report 8 Developer Edition installed.
Resolution
It was found that the file, Emfgen.dll, was not installed and registered on the web server computer during the installation of the Crystal Reports ASP Reports Server. The report could be displayed correctly on the client computer, without Crystal Reports Developer Edition installed, after this file had been installed on the web server computer.
For more information on installing the Crystal Reports web components please search for and download Scr8_WebManualInstall.zip from our website at:

Similar Messages

  • Crystal Reports 10 - Java. Error when displaying report

    <p>HI....</p><p>When attemping to display a report, i&#39;m getting the following error:</p><p><strong> java.lang.ExceptionInInitializerError<br /> com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory.createReportSource(Unknown Source)<br /> org.apache.jsp.jsp.ras_jsp._jspService(ras_jsp.java:62)<br /> org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)<br /> javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br /> org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)<br /> org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)<br /> org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)<br /> javax.servlet.http.HttpServlet.service(HttpServlet.java:802) </strong></p><p> </p><p>This is my jsp code:</p><p><strong><%@ page language="java"<br />contentType="text/html;charset=UTF-8"%><br /><%@ page import="com.crystaldecisions.report.web.viewer.CrystalReportViewer"%><br /><%@ page import="com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory,<br />com.crystaldecisions.sdk.occa.report.reportsource.IReportSourceFactory2,<br />com.crystaldecisions.sdk.occa.report.reportsource.IReportSource"%><br /><html><br /><head><br /><title><br />WithoutTag<br /></title> </head><br /><body bgcolor="#ffffff"><br /><%<br />/create a path to the report and create a report source off of it. The path must be a relative URL to the report; it will not work to use the fully qualified URL or pathname. Therefore the report must be in the same directory as the web application or below./<br />String path = "em_k_rpt_written_premium_web.rpt";<br />IReportSourceFactory2 rsf = new<br />JPEReportSourceFactory();<br />IReportSource rptSource =<br />(IReportSource)rsf.createReportSource(path,request.getLocale());<br />CrystalReportViewer viewer = new CrystalReportViewer();<br />viewer.setReportSource(rptSource);<br />viewer.processHttpRequest(request,<br />response,getServletConfig().getServletContext(), out);<br />%><br /></body><br /></html></strong> </p><p> </p><p>Im using Crystal reports 10, What I want to do is to pass a report some parameters and then display it onto a jsp.</p><p><br />Please, please help me out withthis issue, I&#39;ve been struggling for over 3 weeks trying to do this.</p><p> </p>

    <p>This kind of thing can be tuff to solve on a forum.  I&#39;ll give you my best guess advice.</p><p>1. Call Support - You may not want to do this if you don&#39;t already have a support contract.</p><p>2. You mentioned that there isn&#39;t alot of documentation on this.  I would have to agree, to a point.  </p><p>A little history - Crytal Reports 10 is the first version of the JRC.  In that version you use the JPE Report Source object model.  This object model was very basic.  In version 11 we also made the RAS object model available.  This is where you will find most of the documentation.</p><p>If you move to Crystal Reports for Eclipse for Free this is the object model that you will see in the documentation.</p><p>I would almost suggest that you download Crystal Reports for Eclipse and see if it works out for you.</p><p>3. Try Tomcat 4.x I don&#39;t believe that JRC 10 was tested on Tomcat 5.  We have seen XML serialation JAR issues in the past with different versions of Tomcat.</p><p>4. Try this kbase: <a href="http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=c2014756&sliceId=&dialogID=11500056&stateId=1%200%2011498785">JRC WAR file ver 10</a></p><p>Good luck I hope you get this one solved </p><p>Rob Horne</p><p><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Error When Displaying report Crystal Reports 10

    <p>Hi There.</p><p>When trying to display a report onto a jsp, Im getting the error shown below:</p><p><strong>java.lang.NoClassDefFoundError<br />    com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory.createReportSource(Unknown Source)<br />    org.apache.jsp.jsp.struggling_jsp._jspService(struggling_jsp.java:61)<br />    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)<br />    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)<br />    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)<br />    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)<br />    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)<br />    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)</strong></p><p> </p><p>The jsp code looks as follows:<br /><strong><font color="#0033ff"><br />IReportSourceFactory2 rptSrcFactory = new JPEReportSourceFactory();<br /><br />String report = "em_k_rpt_written_premium_web.rpt";<br />IReportSource reportSource = (IReportSource) rptSrcFactory.createReportSource(report, request.getLocale());<br /><br />CrystalReportViewer viewer = new CrystalReportViewer();<br /><br />viewer.setReportSource(reportSource);<br /><br />viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);</font></strong><br /><br /></p><p>I already configured a JNDI datasource in my application server (Tomcat 5); so dont really know what might be happening and all SDK .jars are included in mi /lib application folder.<br /></p><p> Thanks very much in advance. <br /></p>

    <p>This kind of thing can be tuff to solve on a forum.  I&#39;ll give you my best guess advice.</p><p>1. Call Support - You may not want to do this if you don&#39;t already have a support contract.</p><p>2. You mentioned that there isn&#39;t alot of documentation on this.  I would have to agree, to a point.  </p><p>A little history - Crytal Reports 10 is the first version of the JRC.  In that version you use the JPE Report Source object model.  This object model was very basic.  In version 11 we also made the RAS object model available.  This is where you will find most of the documentation.</p><p>If you move to Crystal Reports for Eclipse for Free this is the object model that you will see in the documentation.</p><p>I would almost suggest that you download Crystal Reports for Eclipse and see if it works out for you.</p><p>3. Try Tomcat 4.x I don&#39;t believe that JRC 10 was tested on Tomcat 5.  We have seen XML serialation JAR issues in the past with different versions of Tomcat.</p><p>4. Try this kbase: <a href="http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=c2014756&sliceId=&dialogID=11500056&stateId=1%200%2011498785">JRC WAR file ver 10</a></p><p>Good luck I hope you get this one solved </p><p>Rob Horne</p><p><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Crystal Reports 2008 Server Error when viewing report

    Hello All,
       I have loaded a CR 2008 report onto the CR 2008 Server. When I view the report from InfoView or CMC, I get the following error message:
    Error in File <report name>: Unknown Database Connector Error .
    I setup the ODBC datasources on the server as they are on my client PC where the Report originally worked. Are the ODBC datasource connections supposed to copy over with the report? Or do I have to manually enter them into the "Database Configuration" section?
    Thank you in advance.

    1212487 - Error: "CRAXDRT Error Occured on Server. Error Number:-2147221005"
    Symptom
    A report is called through the Active Server Pages (ASP) Report Server to be displayed in the Report Viewer for ActiveX. However, the report is displayed with blank pages and when the viewer is switched to the Report Viewer for HTML the following error is displayed:
    "CRAXDRT Error Occurred on Server. Error Number:-2147221005 Error Description: 006ASP 0177 Server.CreateObject Failed~Invalid Class String"
    The same ASP application returns the report correctly when it is called from a client computer with the full version of Crystal Report 8 Developer Edition installed.
    Resolution
    It was found that the file, Emfgen.dll, was not installed and registered on the web server computer during the installation of the Crystal Reports ASP Reports Server. The report could be displayed correctly on the client computer, without Crystal Reports Developer Edition installed, after this file had been installed on the web server computer.
    For more information on installing the Crystal Reports web components please search for and download Scr8_WebManualInstall.zip from our website at:

  • Crystal Reports XI - Error when displaying report

    Hi Guys,
    I'm using Crystal reports XI release 2. I'm attempting to get some data from an Oracle database and display it as a Crsytal Report onto a JSP. Tomcat 5.0 is being used.
    At first I was using Crystal XI and than upgraded to Release 2.
    Here's the error message I'm getting when report is rendering:
    "Null page: Unable to create page from report source."
    And the stack trace for the error is:
    Exception at EPFPageFactory.getPage: java.lang.Exception: Error in EPFImapgeObjectInstancesBase.getInstanceProperties: null epfImage
    At this point I have not found any references at all on the web regarding this issue. It's been a long time now since I've been trying to use Crystal - Java and I've hot succeed to do so. I only find an article which said There's a hot fix which solves this issue, I installed it but nothing really happened, I kept getting the same error.
    Please , any help will be greatly appreciated.
    Best Regards,
    Esteban

    even i am trying the same if u get something pls do let me know

  • Inconsistent error when displaying reports

    Hello,
    I have CrystalReports 12 server installed on a Windows 2003 Server.
    When attempting to view a report from IE, it displays the report sometimes and sometimes it reports an error >> Print Error.
    It seems to be inconsistent. I am sure it's not related to the database.
    Could it be related to a driver issue, i.e. jdbc driver, it the driver it uses when configuring the report?
    Any help appreciated.
    NOTE: Is there a log file on the server which I can browse for clues?
    thanks
    Henry

    Hi Henry,
    if you add "-trace" at the end of the command line of your crystal report page & cache servers (Use the CMC for this and go in the "servers" folder. You can modify the command line in the properties of your servers after you have stopped them). Restart the servers and look in the Logging directory directly under your BOBJ installation directory.
    Regards,
    Stratos

  • Error when displaying report -IncompatibleClassChangeError

    Hi there. I am attempting to display a Crystal Report onto a JSP and im getting the following error:
    java.lang.IncompatibleClassChangeError: Implementing class
         java.lang.ClassLoader.defineClass0(Native Method)
         java.lang.ClassLoader.defineClass(ClassLoader.java:539)
         java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
         org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLoader.java:1634)
         org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.java:860)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1307)
         org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1189)
         java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         java.lang.ClassLoader.defineClass0(Native Method)
         java.lang.ClassLoader.defineClass(ClassLoader.java:539)
    Here's how my servlet code looks like:
    String path = "em_k_rpt_written_premium_web.rpt";
    IReportSourceFactory2 rsf = new JPEReportSourceFactory();
                   IReportSource rptSource = (IReportSource)rsf.createReportSource(path,request.getLocale());
                   ConnectionInfos connInfos = new ConnectionInfos();
                   IConnectionInfo connInfo1 = new ConnectionInfo();
                   connInfo1.setUserName("tron2000");
                   connInfo1.setPassword("tron2000");
                   connInfos.add(connInfo1);
                   CrystalReportViewer viewer = new CrystalReportViewer();
                   viewer.setDatabaseLogonInfos(connInfos);
                   viewer.setReportSource(rptSource);
                   viewer.setEnableLogonPrompt(false);
                   viewer.processHttpRequest(request, response, getServletConfig().getServletContext(),null);
    I'm using: JDK 1.4, Tomcat 5.0, Crystal Reports 9
    I already copied all JRC .jar files into my WEB-INF\lib directory.
    Dont really know what might be happening.
    Any help, will be greatly appreciated.
    Bye.
    Esteban

    even i am trying the same if u get something pls do let me know

  • Error when displaying report 1SIP-001

    Dear experts
    i have tried to run report for cost centers after changing the company code but i am getting the following error:
    Report 1SIP-001 does not contain any data pages for cost centre accounting.
    but reports for profit centre accounting are running correctly after changing the company and using the same company code that i am using fo running cost centre reports,
    What might be causing the problem

    even i am trying the same if u get something pls do let me know

  • Error when linking report to stored procedure defined with one input parm

    Error when linking report to stored procedure defined with one input parameter
    The report will work ok, when the parameter is removed from the stpred procedure
    An unhandled win32 exception occurred in crw32.exe[4480]
    Stored Proc (sql server 2005)
    USE [Allegro]
    GO
    /****** Object:  StoredProcedure [dbo].[SP_Test]    Script Date: 07/08/2009 10:42:14 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER procedure [dbo].[SP_Test](@valuationmode VARCHAR(55)) as
    Begin
    select
         valuation,
         valuationtime,
         valuationmode
    from valuation
    where valuationmode = @valuationmode;
    End;

    This is an example of a stored procedure that is trying to be linked to a new report as the only datasource.
    If I remove the parameter I can create a report, however this will return all of the results of thw query to the report, rather than the desired results. If I add the parameter on the Crystal Report, the stored procedure then has to return all of the results to Crystal and then perform the filtering of records. By using a parameter in the stored procedure, you should be able to do all of the filtering as part of the query on the databse server, making this more efficient.

  • Error in displaying report

    I am geting the following error while displaying report-
    <b>Internal error (-101) occured [Message 131-183]</b>
    The reports are geting displayed on other pcs but not on my pc.I tried unistalling and re-installing sap but the error was not solved.

    Daan,
           The printer was not installed on my pc.After installing printer, the reports are visible.Thanks for u r help.
                                                                                    Regards,
                                                                                    Dilip Kumbhar

  • Error while displaying report

    I am getting following error while displaying report in sap business one-
    <b>Internal error (-101) occured [Message 131-183]</b>
    I tried resintalling sap but it did not solved the problem.The reports are getting displayed on other pc's but not on my pc.

    Hi Yogesh,
           I haven't installed any patch on my client machine.
                                                                                    Regards,
                                                                                    Dilip Kumbhar

  • Error when sending report output to printer from Forms 10g

    Hi,
    I have a simple report that I am running from a form using run_report_object built-in. I can successfully send the report output to a file but when I send the report output to a printer my report is
    terminated with report status of 'TERMINATED_WITH_ERROR'. I am using the default forms service and reports server that comes with the forms builder. How do I specify the reports server to user my default network printer ?Following is the code that runs my report.
    Thanks,
    Anna
    PROCEDURE SEND_TO_PRINTER IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(50);
    rep_server system_variables.reports_server%type;
    alldone          exception;
    BEGIN
         select reports_server
         into rep_server
         from system_variables;
         if rep_server is null then
              msg_alert('Error getting the reports server name', 'I', FALSE);                
              raise alldone;
         end if;
         :ctrl.run_report_errors := 'N';                    
         repid := find_report_object('REP_OBJ1');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,rep_server);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
         IF :ctrl.rg_print = 'P' THEN
              --Send the output to printer.
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,PRINTER);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'dflt');
         ELSIF :ctrl.rg_print = 'R' THEN
              --Rich Text Format
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'rtf');
              SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,:ctrl.filename);
         END IF;
         v_rep := RUN_REPORT_OBJECT(repid);
         rep_status := REPORT_OBJECT_STATUS(v_rep);
         WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
         LOOP
              rep_status := report_object_status(v_rep);
         END LOOP;
         IF rep_status = 'FINISHED' THEN
              null;
         ELSE
              :ctrl.run_report_errors := 'Y';
              msg_alert('Error when running report.' || rep_status, 'I', FALSE);           
         END IF;
    EXCEPTION
         when no_data_found then
              msg_alert('Error getting the reports server name', 'I', FALSE);      
         when alldone then
              null;     
    END;

    If you use Windows the user that runs the reports server is usually LocalSystem. Check this in the Windows Services panel.
    LocalSystem has no printer access. To be able to print, you have to use a real domain user that has access to the printer. So, change the Log on properties in the Services panel.

  • GR224  Report Painter: Internal error when converting a report

    Hi
    Using FAGL_RMIGR transaction I've trasferred report 8A3-0010 in a
    custom library ZXX. The migration happened without error messages. I've
    tryed then to run report FL3-0010 by GRR3 transaction but error message
    GR224 appears
    Report Painter: Internal error when converting a report
    Message no. GR224
    Diagnosis
    During the internal compilation of a Report Painter report to a
    Report Writer report, sets are generated. This caused an error in the
    subprogramm GENERATE_ROW_MULTI. The return code was 7.
    System Response
    The report could not be generated and/or saved.
    Procedure
    Please call the SAP Hotline and send them this longtext as well as
    detailed information describing the circumstances in which this
    error
    occured.
    Please could you help me?
    Thanks in advance
    Giovanna Scamardella

    HI,
    SAPNET notes search with GR 224 brings some old (but maybe helpful) notes: 37611, 193392,137231, pls. check.
    Best regards, Christian

  • Report Designer - Error when Loading Report

    Hi,
    We have created a report in Report Designer (7.0) and saved it. When we execute it runs fine. After closing the report and trying to reopen it, the report does not open. It gives an error "Error when Loading Report". Our BI frontend patch is 14.
    Did anyone encounter this issue and is there a solution to this.
    Thanks
    Hemant

    Hello,
    Please go to SE38 -> RS_REPORT_MAINTAIN,
    Type your report name, and DT als "Report Type".
    Goto edit mode, copy&paste this XML into txt file and send it to me ([email protected]). I will check whats going on with this report. Loading should be always possible.
    Regards, Karol Kalisz, BI Development

  • When the system status says icloud is OK but it reports "encountered an error when connecting to the server", where do you report the problem, or how do you connect?

    When the system status says icloud is OK but logon reports "encountered an error when connecting to the server", where do you report the problem, or how do you connect?

    Yes i am hoping staff here will look into things, even if i can not get the speeds back what i previously had for near 6 months it would be nice to know why i can not and why the download has dropped by around 10Mb and why my upload is now inconsistant.
    Ironically the post concerned got edited because i actually posted the full rather silly reply the Indian call centre made babbling on about down rates rather than the uprate i queried with them.
    Bit of a shambles really no real way on BTs web site to contact anyone with regards to broadband issues.
    The form which you kindly suggested and i appreciated your help ended up in the hands of someone who either did not bother to read the query or just had such a poor grasp of English they did not understand the query.
    Pretty pathetic really when BT are the largest telco in the UK. I think ill be taking my broadband business elsewhere regardless at the end of my 18 month contract, while im sure staff here are wonderful and may even yet help me, i do not particularly want to go through the almost like pulling teeth pain of getting any future issue looked at.
    They are great at quickly fixing voice line problems and have a great test on their site. Broadband side of things and support for that though seems a shambles.

Maybe you are looking for

  • HP LaserJet M2727nf MFP - PCL XL Error - is this repairable?

    This printer works fine offline - it copies and prints reports in duplex with no problem ... but gets an error (locks up) and no longer prints from the computer.  It has worked fine for the last year, since I purchased it as a refurbished printer fro

  • Media Encoder CS4 for Mac will not load

    Hello! Can someone please help me... I am on a mac book pro and trying to export a video from Premier Pro CS4..  Media Encoder CS4 refuses to load...  I am using a trial version... is this the problem?  I own Adobe Creative Suite CS4 and all is regis

  • Regarding Migration to Adobe Forms

    Hi Friends    I am working on adobe print forms. I have one doubt that is  If SAP itself providing the option <b>migrate smartform to Adobe Interactive form,</b> what's the necessity to create the forms from scratch i.e why we have to create Interfac

  • The internet on my macbook pro keep cutting out in OS 10.8..What to do?

    Hello, I purchased a new macbook pro about in early September and ever since I started using it in my home, the internet cuts out constantly.  I was using a aiport to connect wirelessly and then swithced to a router provided by  my internet company w

  • Font settings

    Hi, How to change font settings in SAP. Thanks and regards, Michals.