Crystal 9 report not opening in Crystal 2008

I have a report that was originally designed in Crystal Reports 9 that works fine on that version but i am unable to open it in Crystal Reports 2008. I just get a pop-up message telling me "This document could not be opened".
When i attempted to upload it to the management console i received a more informative message of: Adding Crystal Report "_AIE01_Apollo Inc and Exp.rpt" failed. The server with kind rptappserver returned an error result. Failed to copy the report file to the report object. Refreshing the report object properties might have failed. Failed to read data from report file C:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\Data\CrystalReportsRasServer\temp\{69266EE3-7B91-4A9B-B405-12EA17AA3135}.rpt. Reason: Crystal Reports: Print Engine Error.
I rebooted the physical server with no success. I have moved 30+ files from the CR 9 area to the CR Server 2008 with no problems.
Any help would be great.

Hi Wade,
Iu2019ve done more testing trying to find out what the cause is and I started off by removing all of the subreports. So this is NOT the cause, it was just a suggestion why you have that manyu2026.
I then tried removing all un-used formula and still a problem. I then removed the Command object and now I can open it in CR 2008. Still doing more testing to see if I can get the specific objects causing the problemu2026.
I think I have it down to one or more of the subreports and possibly due to one of the parameters in the Command objects...
Have your report developer do the sameu2026.
Still testing

Similar Messages

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • Report not opening in windows 8

    hello all,
    on some machines report not opening after windows 8 installed can anyone had this issue .
    Please help..
    Dilip Patil..

    Hi Dilip,
    Based on my understanding, you want to open reports on some machines which have Windows 8 installed, right?
    Regarding the issue, we couldn’t understand it clearly, and we would like to confirm something from you below:
    1. Which method have you tried to open reports, SSDT, report manger or another application?
    2. Have you installed SSRS on the machine which have Windows 8 installed? If so, have you checked if the version of SSRS is supported on Windows 8? 
    3. On which version of SSRS you create those reports? If those reports open with a higher version of SSRS, you should refer to this
    article to upgrade the reports firstly.
    So in your scenario, please provide more information about the issue then we can understand the issue clearly.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • BPC 7.0 Reports not opening

    We have experienced reports not opening.  The problem appears to be when the combination of folder name and file name length is long.  Has anyone else experienced this and know what the max character length limitation is?

    Chicago, eh? Is this a union shop?
    Do the server diagnostics look the same before and after 9 am? What time in the evening does it stop working?
    If not the server, maybe there's a network traffic limitation that's blocking access.
    If you have Excel and the client installed on the server itself, try logging in from the server and see if that works. (If not, try just the BPC web browser functionality.) If you can log in from the server, but not from other client machines, there's something going on with your network.

  • Crystal Report not opening in Infoview.

    I have Crystal Report XIR2 designed and running fine in Designer.I uploaded the report into Invoview and earlier it used to run fine but not it is not opening up at all.I am using the servicecenter OBBC driver 6.1.1 to connect to SQL database.Also Busines Objects version is XIR2.It is working fine from crystal Designer but not opening from Infoview.Please advise if someone has faced the same issue...

    Please post your query to the [Business Objects Enterprise Administration|BI Platform; forum

  • BI Refresh -Reports not opening

    Hi All,
    We have recently Refreshed the BID system,  As part of the Refresh we have Loaded the FULL/INIT/DELTA.
    After running all the Process chains,  We are not able to open some of the reports
    While opening the report after entering data in variable screen, a pop-up message coming as:
    " An error occurred while comminication with the BI server As a result of this error the system has been DC from the BI server"
    Detailed description:
    Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
    System Error Program CL_RSR_RRKO_SELECTION and from COLLECT_CHAFIX-02-
    Any replies will be appreciated!
    Thanks in Advance,
    Teena.

    Thank You for the reply Prashanth,
    I am getting this problem only for some reports, not all the reports.
    If we regenerate in RSRT what is going to happen? Do We need to regenerate all reports which are not working correctly or all the reports?
    Thanks in advance,
    Teena

  • Hyperion smart cut link of Financial report not opening as pdf in tasklist 11

    Hi ,
    I am using Smartcut Link to open FR from tasklist.
    Reports are opening properly in HTML but  didn't show any option for PDF.
    While I am opening the same report from Explorer->Right click->Open as html. This will show option to save/open report as pdf.
    I am working on 11.1.1.4.
    Thanks

    Try these Re: Financial Reports launcehd from Task List lose PDF option
    Re: Financial Report not rendering from Task List
    Regards
    Celvin
    http://www.orahyplabs.com

  • REP-52266: report not open

    Hi helper
    i am running one report, but it is not open
    error:1
    REP-52266: The in-process Reports Server rep_wls_reports_erptest-pc_asinst_1 failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    error: 2
    APPSCRASH
    I AM INSTALLED 11g DATABASE , 11g Forms [32 Bit] Version 11.1.1.2.0 (Production), WEBLOGIC SERVER 11g R 1
    any one help me
    Advanced thank you...............................

    Hi helper
    i am running one report, but it is not open
    error:1
    REP-52266: The in-process Reports Server rep_wls_reports_erptest-pc_asinst_1 failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    error: 2
    APPSCRASH
    I AM INSTALLED 11g DATABASE , 11g Forms [32 Bit] Version 11.1.1.2.0 (Production), WEBLOGIC SERVER 11g R 1
    any one help me
    Advanced thank you...............................

  • Oracle r12.1 - Material Account Distribution Detail report not opening in Excel

    Hello,
    We have a requirement to open Material Account Distribution Detail  Report to transfer the output to MS Excel when user clicks the "View Output" window.  Below is the setup.   And I have verified over and over that setup is correct.   Still, for some reason, concurrent program output is dumped in XML format on the browser window!  What is causing this and why?  What am I missing?
    My Data Definition
    ===========
    Name  INVDSTRL_XML
    Code INVDSTRL_XML
    Application  Oracle Inventory
    Start Date 27-Apr-2013
    End Date
    My template definition
    =============
    Name  INVDSTRL_XML
    Code INVDSTRL_XML
    Application  Oracle Inventory
    Type RTF
    Start Date 27-Apr-2013
    Default File Item_error_report.rtf
    End Date
    Default File Language English
    Subtemplate No
    Default File Territory
    Default Output Type EXCEL
    Conc Program Def:
    ============
    Program: INVDSTRL_XML
    Short Name: INVDSTRL_XML
    Application: Oracle  Inventory
    Executable Name: INVDSTRL_XML
    Method: Java Concurrent Program
    Output Format: XML
    Rest are defaults
    I also checked the version of BI Publisher by passing following query. 
    SELECT DECODE (bug_number, '4440000', '5.6.3') PATCH, bug_number FROM ad_bugs WHERE bug_number IN('4440000');
         Not sure what is the issue.  Why the output is not being diverted to EXCEL.  Please advise.  Why it dumps into XML and Not Excel?  This is on r12.1.3
    Thanks.
    Darsh

    Hi Abdul,
    Before running the report select the particular "inventory organization" and then run the report.
    It seems you were directly running the report without selecting the Inv org.
    Please try again.
    Thanks
    -Arif.

  • Reports not opening

    When i open Report Definitions from Site Permissions --> Libraries --> Report Definitions and then try and open any report created by me i get the following error:
    An error has occurred during report processing. (rsProcessingAborted)
        Query execution failed for dataset 'Default'. (rsErrorExecutingCommand)

    Hi William,
    According to your description, my understanding is that you got an error when you opened a report in SharePoint 2013.
    This issue may be cuased by permission issue, please do as the followings:
    Open the SQL Server Management studio
    Right click on the respective database (TestDatabase) and select properties. Under Properties add the following user if not existing already: NT AUTHORITY\NETWORK SERVICE.
    Give  the "Select" and "Execute" permissions to the NT AUTHORITY\NETWORK SERVICE
    More information, please refer to the link:
    http://rajblogsworld.blogspot.com/2012/10/query-execution-failed-for-dataset.html
    This issue also may be caused by the Timeout Expired, please take a look at:
    http://anoopcnair.com/2011/07/20/configmgr-sccm-sql-server-reporting-service-timeout-expired/
    Here are some simiar posts for your reference:
    http://stackoverflow.com/questions/10847054/ssrs-query-execution-failed-for-dataset
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/0cacc2e5-bd00-490d-8d4f-bea040b8a443/query-execution-failed-for-dataset-dataset1-rserrorexecutingcommand?forum=sqlreportingservices
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Report not opening

    Hi all,
    pls this is a urgent issue.. i am tearing my head .. this is the first report i am developing..pls guys help me out...
    i am using reports6i ... the report is running properly in the report builder..but it is not running in the application....wat to do? there is an interface form where i enter the parameters for the report... when i press a button after entering the required input it is supposed to open... but it does not...
    pls guys tell me wat is the problem...is it in report or in the form?...pls pls pls help me out of this mess..i have to submit this tomorrow to the client....

    Did you find the solution for this user488315? I have one report which is failing to run, stalling when the status is "OPENING". Using run_report_object with a Web Architecture, running the report directly to file on the application server. This works sometimes but fails when a different set of parameters are entered.
    All reports use a central reports library, and all other reports run ok, any ideas appreciated.

  • XML Publisher Report not opening on Desktop

    Hi All,
    I have installed XML publisher on my machine and after creating the RTF and loading XML, when i am trying to preview it, it;s giving me error that file not found. But the PDF output is formed at c:/program files/oracle/XML Publisher Desktop/Template for word/<One more folder>.
    But on my team mater machine it is working fine and he is able to open the PDF when he is pressing Preview link in RTF Template. As per him, many days back he did some thing but he is not aware of this now.
    Kindly help in resolvig this.
    Thanks
    Aryan

    Hi Gurus,
    Please please help me....
    This is taking a toll time of mine..
    Thanks
    Aryan

  • BI reports not opening in Windows 8 IE11

    Hi Experts,
    We have upgraded our PCs to Windows 8 OS and using IE 11 version.
    but when executing BI reports error coming "content was blocked because it was not signed by a valid security certificate".
    Please provide the solution.
    Thanks & Regards,
    Arpit.

    Hi,
    Check this KBA 1878147 - Broadcasting message certificate error on IE
    browser
    See if there is a similar SPRO setting for the application that you are using.
    Regards,
    Michael

  • Report Not opening in report manager

    Hi SSRS GURUS
    I have created a report and deployed it to the reporting server. I went to the reporting manager and i can see the report under my reports folder. The strange thing is i can see the report when i click  and select the "Edit in the Report Builder"
    , but when i click on the report to view it i'm getting the below message, any ideas where am messing the report???/
    An error has occurred during report processing. (rsProcessingAborted)
    Cannot create a connection to data source 'DataSource1'. (rsErrorOpeningConnection)
    The connection either timed out or was lost.
    Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.
    An existing connection was forcibly closed by the remote host

    Hi PMunshi,
    In your scenario, are the client server, report server, and database server all on different machines? If so, then you are probably hitting the double-hop problem. When the data source uses Windows Integrated credentials if we run the report from a client
    machine, the user credentials needs to do a double hop: from the client machine to the report server and from the report server to the database server.
    To work around this issue, we can change the connection type to use Stored Credentials. In the Data Source Properties tab, below the Credentials stored securely in the report server radio button, type in the Username and password with correct credential
    of windows account, remember to check the checkbox of Use as Windows credentials when connecting to the data source, click Apply button.
    To fix this issue, we need to configure Kerberos authentication in Reporting Services so that the user credentials arrive to database server. For more information about the configuration, please refer to the following blog:
    http://blogs.msdn.com/b/brushstrokes/archive/2013/02/18/kerberos-authentication-in-reporting-services.aspx
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Report not opening after submit query

    Hi,
    In Oracle 10g AS whenever I try to run any report from my application the parameter form displays perfectly all right but upon pressing the submit query button following error occurs.
    Internet Explorer cannot display the webpage.
    Also the URL gets changed as well.
    Original URL
    http://148.0.0.1:7778/reports/rwservlet?
    New URL
    http://ilas.ngidomain.local/reports/rwservlet
    Please suggest a solution.
    Thanks in Advance
    Babar.

    To help you see what is happening, temporarily add DESNAME to your parameter screen. Make sure that DESNAME on the parameter screen has a value before you click the Submit Query button.
    If you are running the report with a local report service (running on your workstation), the value of desname should be the name of your default printer.
    If you are running the report on a network application server based report service you need to specify the name of a printer that is accessible to the server on which the report service is running. Make sure that it is specified in a way that the server can recognize it, e.g. \\printserver_01\HPLaserJ4210.
    Maybe this will help some.
    James K.

Maybe you are looking for

  • Sql injection on Oracle

    Good night: I'm trying to understand the use of oracleparameters in visual basic .net 2008. It is said that its goal is to avoid sql injection but as far as I know Oracle throws an exception every time you use a ;, so I assume it is not possible to i

  • Editable ALV Report

    Hi experts, Is it possible to create ALV report in editable mode. Regards, Rajneesh Gupta

  • Contact loss saga...

    backed up iPhone 4 BEFORE installing iOS5; restored from that backup and still lost all of the contacts! problem still not solved? the backup is listed in preferences, tried a couple of more times, but still no contacts! this is life, Apple! contacts

  • LoadReport takes more than an hour

    I have a report which is being used by dozens of customers and it runs just fine. At one clients site the report takes over an hour to load, but only on one specific machine. Loading the same report using the same data on a different machine take lik

  • Help to get date before

    hi, i have to get in field the date of six month ago what is the best way to do that? example. if now_date = 14.10.07 i wont in l_date 14.4.07 or if now_date = 15.1.2003 l_date = 15.7.2002 Regards