Crystal Reports 2011 IDE fails to save active report

Hi,
I've been using CR 2011 to update some previous versions of CR.  When I go to save the report 9 out of 10 times it fails to save the active report file and turns the report into a .tmp file.  I then have to save the report back to a .rpt file and it is fine and the report still works.  But this is driving me nuts.  To have to keep on saving as after the IDE fails.
Anyone have any help/suggestions on this.
Thanks,
Jim

hi Jim,
are you using crystal reports for visual studio as the IDE? if so, please repost your question here.
if not (i.e. you are using crw32, the regular crystal reports designer tool), please ensure that you've got the latest sp installed from here. after that, if you still experience the problem please provide a link to one of your reports (e.g. in dropbox) with saved data so that it can be tested by someone else on their version of cr.
thanks,
jamie

Similar Messages

  • REP-52266: The in-process Reports Server rep_adminserver_ikit_asinst_1 failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0

    Hi,
    I have installed oracle forms and reports 11gR2 on Windows 7 Professional 64bit (and configured in development mode), the forms are working fine but when i run a report i get this message
    REP-52266: The in-process Reports Server rep_adminserver_ikit_asinst_1 failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0

    I was trying to add a new destination:
       <destination class="oracle.reports.server.DesMail" destype="mail"/>
    I couldn't make it work , so I commented my changes.
    In fact, I should have gone back to a backup file , as weblogic seemed to have changed the file itself!! (attributes of the xml tags were in different order, and more things ...) but just undoing what I have done did the trick.
    This file seems to be quite picky, I left this tag uncommented
       </pluginParam>
    and the same REP-5226 error happened.

  • How do I report/analyze data from the KM activity reporting service

    I have turned on the km activity reporting service and I am getting .txt files generated with the information I am looking for but now I'm looking for the best way to collect this data from all the server clusters and aggregate the data for easier data analysis.  I have reviewed the 'how to analyze portal activity with the activity data collector' white paper.  This leads me to believe that the only way to collect and analyze this data is to write a script that collects and analyzes the data.  Is this true or is there a better way of gathering and reporting this data?  Is this data stored in a table somewhere?

    Hi,
    the portal only offers basic monitoring capabilities. But it offers the possibility to create quite extensive logs, like km activity reporting service. What the portal writes to a DB table are the PAR statistics. The quite more extensive KM and ADC data is written to a file.
    You can use SolMan to analyze the data. SolMan can gather, analze and write the data into the BI and gives you the basic report.
    In the same way, you can use SolMan to gather the data and create your own BI reports. As it can be really hard to collect X logs from Y servernodes, SolMan offers an easy way to collect the different logs.
    br,
    Tobias

  • Crystal report database logon failed through ODBC in report

    Please see viewpage.cs in type = "FPR"  in my web application
    https://sourceforge.net/projects/aspchequesprint/
    is it my program code problem ?
    i edited as following also not work, when i update with crystal report 2008 sp1 it said version is too low
                    TableLogOnInfo crTableLogonInfo = new TableLogOnInfo();
                    for (int i = 0; i < objRpt.Database.Tables.Count - 1; i++)
                        crTableLogonInfo.ConnectionInfo.ServerName = "Cheque";
                        crTableLogonInfo.ConnectionInfo.DatabaseName = database_name;
                        crTableLogonInfo.ConnectionInfo.UserID = "sa";
                        crTableLogonInfo.ConnectionInfo.Password = "fa920711";
                        objRpt.Database.Tables<i>.ApplyLogOnInfo(logOnInfo);
                    TableLogOnInfos crTableLogonInfos = new TableLogOnInfos();
                    crTableLogonInfos.Add(crTableLogonInfo);
                    CrystalReportViewer1.LogOnInfo = crTableLogonInfos;

    can not load database info after edit the code in above link
    i use p2sodbc.dll it said can not load database info,
    error at objRpt.ReportClientDocument.DatabaseController.SetTableLocation(boTables[0], boTable);
    is the code correct?
    public partial class _Default : System.Web.UI.Page
            private ReportDocument objRpt = null;
            protected void Page_Unload(object sender, EventArgs e)
                if (this.objRpt != null)
                    this.objRpt.Close();
                    this.objRpt.Dispose();
            protected void Page_Load(object sender, EventArgs e)
                CrystalReportViewer1.HasToggleGroupTreeButton = false;
                CrystalReportViewer1.HasToggleParameterPanelButton = false;
                CrystalReportViewer1.HasPrintButton = true;
                CrystalReportViewer1.HasDrilldownTabs = false;
                CrystalReportViewer1.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
                CrystalReportViewer1.PrintMode = CrystalDecisions.Web.PrintMode.ActiveX;
                string database_name = "Cheque_Test";
                string odbc_name = "Cheque";
                string db_username = "martinhylee";
                string db_password = "fa920711";
                objRpt = new ReportDocument();
                string reportPath = @"C:\michael\access_test\Cheque\Ada\Reports\Report1_85.rpt";
                objRpt.Load(reportPath, OpenReportMethod.OpenReportByTempCopy);
                //'Create a new Stored Procedure Table to replace the reports current table.
                CrystalDecisions.ReportAppServer.DataDefModel.Procedure boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Procedure();
                //'boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object
                PropertyBag boMainPropertyBag = new PropertyBag();
                //'boInnerPropertyBag: These hold the attributes for the QE_LogonProperties
                //'In the main property bag (boMainPropertyBag)
                PropertyBag boInnerPropertyBag = new PropertyBag();
                //'Set the attributes for the boInnerPropertyBag
                boInnerPropertyBag.Add("Connect Timeout", "15");
                //boInnerPropertyBag.Add("Data Source", "MyDataSource");
                boInnerPropertyBag.Add("Data Source", odbc_name);
                boInnerPropertyBag.Add("DataTypeCompatibility", "0");
                boInnerPropertyBag.Add("General Timeout", "0");
                //boInnerPropertyBag.Add("Initial Catalog", "MyCatalog");
                boInnerPropertyBag.Add("Initial Catalog", database_name);
                boInnerPropertyBag.Add("Integrated Security", "False");
                boInnerPropertyBag.Add("Locale Identifier", "1033");
                boInnerPropertyBag.Add("MARS Connection", "0");
                boInnerPropertyBag.Add("OLE DB Services", "-5");
                boInnerPropertyBag.Add("Provider", "SQLNCLI");
                boInnerPropertyBag.Add("Tag with column collation when possible", "0");
                boInnerPropertyBag.Add("Trust Server Certificate", "0");
                boInnerPropertyBag.Add("Use Encryption for Data", "0");
                //'Set the attributes for the boMainPropertyBag
                //boMainPropertyBag.Add("Database DLL", "crdb_ado.dll");
                boMainPropertyBag.Add("Database DLL", "p2sodbc.dll");
                boMainPropertyBag.Add("QE_DatabaseName", "VEPILOT");
                boMainPropertyBag.Add("QE_DatabaseType", "OLE DB (ADO)");
                //'Add the QE_LogonProperties we set in the boInnerPropertyBag Object
                boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);
                boMainPropertyBag.Add("QE_ServerDescription", "MyServer");
                boMainPropertyBag.Add("QE_SQLDB", "True");
                boMainPropertyBag.Add("SSO Enabled", "False");
    Edited by: Don Williams on Jul 12, 2011 8:47 AM

  • SAP Crystal Reports 2011 - Product keycode

    Dear all,
    I have been requested to install SAP Crystal Reports 2011 to use it as a reporting tool for our SAP ERP 6.0.
    However, I got stuck when the installation program asks me for the "Product Keycode". Does anybody know if there is a temporary product keycode so we can evaluate this product before purchasing it?If so, where is it?
    Once SAP Crystal Reports 2011 is successfully installed, do we need to install anything else in order to set up the connection between SAP Crystal Reports 2011 and SAP ERP 6.0?
    Thanks in advance,
    Marc

    Since someone on your site obtained CR 2011, they should also have a permanent keycode...
    Failing that, the only way to get a 30 day temp  eval keycode is from here;
    http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    But you will still have to go back to who ever obtained your current CR 2011 and ask them for a permanent keycode.
    Re. Connection to SAP ERP 6.0. You're better off asking in the SAP Crystal Reports Database Connectivity|SAP Crystal Reports - Data Connectivity; forum rather than in this forum.
    - Ludek

  • CrystalReport - Getting "The Report Application Server failed" while export

    Hi Experts,
    I am using Crystal Reports 2008 in my ASP.NET application to generate reports. Everythings works fine in the development environment. When I deploy it on my Windows Server 2003 system, I get an error "The Report Application Server failed" while exporting the report from the report control. But, the report assuch is working fine even in the production environement. I experience this issue only while exporting to excel or anyother format.
    Do I need to configure anything or any settings needs to be turned on in the .rpt files!!
    Appreciate any help to get this issue resolved.
    TIA,
    Prem

    First a confirmation. When you say; "...exporting the report from the report control...", you mean the printer button on the viewer?
    Questions;
    What version of .NET?
    What Crystal Reports Service Pack are you on?
    How was the CR runtime installed on the server?\
    Can you print the report OK?
    Are you using sessions?
    Ludek

  • Why is my Subscriber Message activity report empty?

    Hi,
    I trying to see who called and left messages for ceratin individuals before they were deleted. This report would be just what i am looking for except the columnes are all blank. Could it be becasue the user deleted the messages from their inbox or is there a parameter that has to be set. I am runnng CUCXN 7.1(5)ES7.
    Thanks in advance.

    Hi there,
    You are hitting this 7.x bug;
    CSCsr45007 - Subscriber Message Activity report problems
    Description
    Symptom:
    Subscriber Message Activity Report doesn't have data that is expected.  Many fields come up as N/A or blank.
    Conditions:
    This happens any time the report is run.
    Workaround:
    None.
    Further Problem Description:
    This underlying problems were diagnosed after 7.0 shipped and will be addressed in 8.0.  It entails a rewrite of this report.
    First Found in:                          (4)
    1.2(1),2.0,7.0(0.313),7.0(1)
    Status:
    Fixed
    Last Modified:
    May 26,2012
    Fixed in:                          (8)
    8.0(0.215),8.0(0.207),8.0(0.205),8.0(0.189)
    8.0(0.178),8.0(0.168),8.0(0.164),8.0(0.160)
    Product:
    Cisco Unity Connection
    Platform:
    Dependent
    Severity:
    4 - minor
    You may want to have a look at the ideas from Jeff in this thread
    https://supportforums.cisco.com/message/1209592#1209592
    Cheers!
    Rob
    "Every fool's got a reason to feelin' sorry for himself" - Springsteen

  • Portal Activity report iview

    Hi
    I created a portal activity iView when i preview it and  click on Download Report button it is giving an empty report
    any help is appreciated
    regards
    ambicasony

    hi ,
    here by attaching a few articles regarding portal activities.
    Mysteries of the Portal Activity Report II,
    Portal Activity Report - Error,
    Mysteries of the Portal Activity Report III,
    Mysteries of the Portal Activity Report,
    The Final Word (Hopefully) on the Portal Activity Report
    i hope i have given u the entire documents on portal activity.......u cn check it easily where u have went wrong
    regards
    bhargava
    pts r always welcome

  • Apex 4.0 save public report

    Hello
    I am working with apex 4.0 and in the screen "Interactive Report Attributes" I cannot disable "Save Public Report".
    And when i disable all functions (Select Columns, Flashback...) The only function avalaible is "Interactive Report Attributes".
    Is a bug or an error due to me ?
    Thank for your help.

    Hi PsmakR,
    can you upload your application to apex.oracle.com so that we can have a look what is not working. Please provide your workspace/user/pwd and the page and region where you are not able to remove the "Save Public Reports" option.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Strange Problem: cannot save public report as a developer

    HI all,
    I've testing an application in apex.oracle.com.
    Several days ago I started to have a strange problem with my application. I don't know what has been changed but I can't save the Interactive reports as a developer. The app doesn't display the button "apply" to save the changes, and in the design view  of the report the "Save public report authorization" select list is greyed.
    Is there anyone that knows where is this permission managed?
    Thanks in advance

    To choose an authorization scheme under "Save Public Report Authorization", you first must check the "Save Public Report" checkbox under "Include in Actions Menu".
    Note that both the "Save Report" as well as the "Save Public Report" option work for authenitcated pages only.
    Regards,
    Vincent Deelen

  • REP-52266: The in-process Reports Server rep_myhostname failed to start

    Hi Everyone,
    My name is John and I've a small 10g report configuration issue which I would like to share and, hopefully, some of you might already have come across it and able to assist and guide me through it.
    First, I've installed Oracle Developer Suite 10g 10.1.2.0.2 together with Report Builder 10.1.2.0.2 and Oracle Forms Developer 10.1.2.0.2 onto a 32bit Window 2000 Professional machine.
    I've tried to run the following URL which test for the servlet connectivity and it returns fine with all the valid reports servlet commands page.
    http://myhostname:8889/reports/rwservlet
    However, as I've tried to run the 'test.rdf' report using the following link:
    http://myhostname:8889/reports/rwservlet?destype=cache&desformat=PDF&report=test.rdf&userid=user/pass@host
    And it returns the following error on the browser:
    REP-52266: The in-process Reports Server rep_myhostname failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    Then I set trace option on in the myhostname.conf file and restart the OC4J instance. And the trace file has the following results:
    *[2009/2/18 11:21:31:687] Info 56021 (EngineManager:spawnEngine): Engine rwURLEng-0 has been launched*
    *[2009/2/18 11:21:31:687] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Initial*
    *[2009/2/18 11:21:31:687] Debug 50103 (JobStore:writePersistFile): Purge persistent file*
    *[2009/2/18 11:21:31:717] Debug 50103 (JobStore:writePersistFile): Purge persistent file done*
    *[2009/2/18 11:21:51:766] Warning 50103 (EngineManager:registerEngine): REP-55103: API URLEngine:getEngineEnvs not applicable to URL engine*
    *[2009/2/18 11:21:51:766] Info 56026 (EngineManager:registerEngine): Reports Server started up engine rwURLEng-0*
    *[2009/2/18 11:21:51:856] Debug 50103 (EngineManager:updateEngineState): Engine rwURLEng-0 status is 1*
    *[2009/2/18 11:21:51:856] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Ready*
    *[2009/2/18 11:23:1:687] Info 56106 (EngineManager:manage): Engine rwEng-0 is destroyed due to timeout*
    *[2009/2/18 11:23:1:687] Exception 56097 (): Engine rwEng-0 callback timeout*
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    *     at oracle.reports.utility.Utility.newRWException(Utility.java:756)*
    *     at oracle.reports.server.EngineManager.manage(EngineManager.java:291)*
    *     at oracle.reports.server.IdleThread.run(IdleThread.java:88)*
    *[2009/2/18 11:23:1:707] Debug 50103 (ServerPacketReceiver:handlePacket): Got a request packet*
    *[2009/2/18 11:23:1:717] Info 56029 (EngineManager:shutdownEngine): Shutting down engine rwURLEng-0*
    *[2009/2/18 11:23:1:717] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Shutdown*
    *[2009/2/18 11:23:1:727] Info 56047 (EngineManager:remove): Reports Server shut down engine rwURLEng-0*
    *[2009/2/18 11:23:5:813] Info 50103 (ServerPacketHandler:stop): Multicastmanager stopped successfully*
    *[2009/2/18 11:23:5:813] Info 50002 (RWServer:shutdown): Server is shutting down*
    *[2009/2/18 11:23:5:813] Info 50103 (RWServer:startServer): Notify thread to exit*
    *[2009/2/18 11:23:5:843] Info 50103 (RWServer:startServer): RWServer thread exits*
    *[2009/2/18 11:23:5:843] Exception 56097 (): Engine rwEng-0 callback timeout*
    oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    *     at oracle.reports.utility.Utility.newRWException(Utility.java:756)*
    *     at oracle.reports.server.EngineManager.manage(EngineManager.java:291)*
    *     at oracle.reports.server.IdleThread.run(IdleThread.java:88)*
    I've not changed any of the report's related configuration files and the java version of the machine is 1.4.2_06. I do not know whether I need to apply a patch for this particular Developer Suite version or is there something which I've not done in terms of post-installation tasks. Thank you for your time and effort. Any feedback is much appreciated as I've been spending a number of days to solve this problem. Thank you and have a nice day.
    Kind Regards,
    John

    Hi,
    Thanks for your reply and here is the output of the rwEng-0.trc file. I could not find anything "interesting" as you mentioned. Please let me know if you find anything missing in there. Also, currently there is only one network printer setup on the machine. Can you please elaborate on the printer bit as I'm unsure of what to troubleshoot. Also, I forgot to inform you that I have a previous version of Developer 2000 Form and Report installed prior to the 10g Developer Suite installation. Does it ring a bell to any other problem? Thank you again for your time and effort. Have a nice day.
    Kind Regards,
    John
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[0]=name=rwEng-0*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[1]=server=rep_myhostname*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[2]=ORACLE_HOME=C:\oracle\ora10g1*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[3]=engineimplclass=oracle.reports.engine.EngineImpl*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[4]=traceopts=trace_all*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[5]=tracefile=C:\oracle\ora10g1\reports\logs\rep_EZRA\rwEng-0.trc*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[6]=tracemode=trace_replace*
    *[2009/2/18 11:21:35:773] Debug 50103 (RWEngine:init): args[7]=cacheDir=C:\oracle\ora10g1\reports\cache*
    *[2009/2/18 11:21:35:783] Debug 50103 (RWEngine:init): args[8]=server_ior=C:\TEMP\tmp_1440568*
    *[2009/2/18 11:21:36:284] Info 50128 (RWEngine:init): orb init succeeded*
    *[2009/2/18 11:21:37:45] Info 55007 (EngineImpl:loadLibrary): Load rw.dll succeeded*
    *[2009/2/18 11:21:37:45] Debug 50103 (EngineImpl:init): useDataCache = null*
    *[2009/2/18 11:21:37:45] Debug 50103 (EngineImpl:init): ignoreDataParameter = null*
    *[2009/2/18 11:21:37:75] Debug 50103 (EngineImpl:EngineImpl): start CInitEngine()*
    *[2009/2/18 11:21:37:75] Debug 50103 (EngineImpl:EngineImpl): commandline[0] = rw*
    *[2009/2/18 11:21:37:75] Debug 50103 (EngineImpl:EngineImpl): commandline[1] = ora_rw20_3tng*
    *[2009/2/18 11:21:37:75] Debug 50103 (EngineImpl:EngineImpl): commandline[2] = rep_myhostname*
    *[2009/2/18 11:21:37:75] Debug 50103 (EngineImpl:EngineImpl): commandline[3] = C:\oracle\ora10g1\reports\cache*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[4] = null*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[5] = null*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[6] = trace_all*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[7] = C:\oracle\ora10g1\reports\logs\rep_EZRA\rwEng-0.trc*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[8] = trace_replace*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[9] = null*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[10] = null*
    *[2009/2/18 11:21:37:85] Debug 50103 (EngineImpl:EngineImpl): commandline[11] = null*

  • REP-51002: Bind to Reports Server "test_srv" failed & REP-52266

    Hi folks,
    I'm trying to run reports on my machine localy, but when I run my report I always obtain this error:
    REP-51002: Bind to Reports Server "test_srv" failed
    I searched for this answer, but nothing worked for me.
    I tried steps described in thread: REP-51002: Bind to Reports Server <servername> failed
    So I did this:
    1. I run OC4J
    2. In file %ORACLE_HOME%\reports\conf\rwnetwork.conf I commented line with multicast and uncomented namingService part. Now rwnetwork.conf file looks like:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE discoveryService SYSTEM "file:C:\Oracle_10g_R2/reports/dtd/rwnetworkconf.dtd">
    <discoveryService>
      <!--multicast channel="228.5.6.7" port="14021" timeout="1000" retry="3"/-->
      <namingService name="Cos" host="localhost" port="14021"/>
    </discoveryService>3. In cmd, in C:\ORACLE_10g_R2\bin>namingservice 14021
    Naming Service started sucessfully
    4. In cmd:
    C:\ORACLE_10g_R2\bin>rwdiag -findAll
    Naming service used to locate servers
    Naming Server host = localhost
    Naming Server port = 14021
    (1) test_srv : Type = server : Host = NA
    5. I copied my report into: c:\Temp\report_test\szrcomp.rdf
    6. I run report from IE browser using url:
    http://localhost:8889/reports/rwservlet?report=c:\Temp\report_test\szrcomp.rdf&destype=cache&server=test_srv&desformat=htmlcss&userid=usr/psw@db
    I received Error:
    REP-51002: Bind to Reports Server test_srv failed
    7. http://localhost:8889/reports/rwservlet/getserverinfo
    I received Error:
    REP-52266: The in-process Reports Server rep_dimopatsep05 failed to start.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    8. http://localhost:8889/reports/rwservlet/showjobs
    The same error as in 7.
    Can somebody help me with this problem?
    Thanks,
    Tomas
    sorry for duplicate post in REP-51002: Bind to Reports Server "test_srv" failed  & REP-52266
    but this section it probably better for my problem.

    Hello,
    You should test first with a "standalone" reports server :
    1. Stop the OC4J
    2. Start the namingservice
    3 Start the reports server :
    rwserver server=test_srv
    4. test to execute a report :
    rwclient server=test_srv report=test destype=cache desformat=html
    If the reports server does not start , it will be necessary to activate the trace in
    order to get details about the problem :
    Edit the file $ORACLE_HOME/reports/conf/<reports server name>.conf
    Modify it in order to have a line :
    <trace traceOpts="trace_all"/>
    restart the reports server
    Regards

  • Failed to Save Document--Crystal Reports

    Hello,
    Is there a fix to a "Failed to Save" error that is currently happening to me?
    After reviewing other threads, I believe the error happened when I went from a wired connection to a wireless connection when I removed my computer from my docking station.
    Is there any fixes to this issue?
    Crystal Reports--Version 14.1.1.1036
    Thank you,
    Kyle

    I'd like you ot update to the latest Service Pack for CR 2013:
    Downloads for SAP Crystal Reports and others
    If that does not help, you may have to see what Process Monitor reports when you try to save the rpt.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow me on Twitter

  • Error adding report to Crystal Server 2011

    I have a report that runs against Salesforce.com that I'm trying to add to Crystal Server 2011.  The server is running version 14.0.2.364 of BI.  When I try to add the report through either the CMC or through the BI Launch Pad I get the same error.
    "An error has occurred: Adding Crystal Report "Quarterly Report 2011 with MF v3-2 Les Testing.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)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\Data\CrystalReportsRasServer\temp\{7FD511B8-F5DF-42AC-98D7-D2C43B1C458B}.rpt. Reason: Failed to read parameter object "
    If I try to add it by saving from Crystal Reports I get "Item 1 was not found in the collection"
    I'm logging on as administrator in both cases to the CR server.  I did find a thread where it was suggested that checking the "No Printer" box under page setup may fix it so I tried that but got the same results.  I also saw some references to firewalls, but the server is on a local subnet to my machine and all windows firewalls are turned off.
    The server is a fresh install of 2008 R2 and a demo download of CR Server 2011 and Client Tools. 
    Any help on a direction here would be greatly appreciated.  I've been banging my head against this for a while now.

    I cannot offer much help, but I see the same issue. 
    When I create a report in Developer it runs fine in Developer, but it will not load up to Crystal Server.  I can save the report with a new name and 50% of the time it will load to the Server.  Sometimes when I try to load the report, it seems the Server is thinking for a long time.  I hit "OK" button on server screen and then "Cancel"  the report SOMETIMES shows in the list of reports.  I just witnessed saving a non-loading report as another report and successfully loaded it into Server, then I ran the report in developer, closed it and tried to reload it to the server and it failed.
    It appears to be completely random.
    My gut tells me it has to do with the Salesforce driver (i.e. when I run it from Developer, the driver pollutes the report and chokes loading it on the server?)
    Does anyone have any ideas?

  • Vista/Adobe 9/sql image Error in Crystal Report:Failed to Export the Report

    When I try to export my Crystal Report (v2008) from a Vista machine (using Crystal RDC export methods) as a PDF, I get the following error:
    Error in Crystal Report:  Failed to export the report.
    This only happens when a particular subreport (that contains a sql image) prints (based on an input parameter).  We have other subreports (within this same report) that print a sql image just fine.  But, when this subreport prints, the above error appears.
    I can run the same report on an XP machine without error.
    Exportmodeller.dll and crtsv.dll are both installed and registered to the
    C:\Program Files\Common Files\Business Objects\3.0\bin folder
    I have tried opening the report, removing the image, and then adding it back in again to the subreport.
    Still receive the same error.
    Any suggestions?

    >
    Don Williams wrote:
    > RDC is no longer shipped in CR 2008. You are using the embedded designer used within the Visual Studio .NET IDE and is not licensed for distribution.
    >
    > Upgrade to the .NET components and post your question to the .NET forums.
    >
    > Also, those old dll's will not work in CR 2008. Last patches will give you the option to export to Excel in Legacy mode. We built it into our export dll.
    Don,
    Can you please clarify?
    Our VB6 app that uses Crystal XI RDC runtime components.  Our Crystal reports are edited in CR2008 SP1 developer edition (not through the VB.NET embedded report designer).  We have deployed the CRXIRelease 2 runtime components (via the merge module) to our client machines in order to execute the RDC.
    We can print/preview/export to excel, but the pdf creation is failing with this error.
    We are only using the RDC (which we know is no longer supported) because of huge issues with the Crystal for .NET methods we are having with our customers (I have an active case for this issue).  Therefore, we have to rollback our .NET product and revert to the RDC code. 
    Vista is failing to create a PDF for a report developed in the CR2008 SP1 developer edition when using the RDC.
    When you say  "Also, those old dll's will not work in CR 2008. Last patches will give you the option to export to Excel in Legacy mode. We built it into our export dll.", what do you mean by "will not work in CR2008"?
    Thank you

Maybe you are looking for

  • Duh - I can't see the output because it's in another process??

    I've been banging my head, trying to learn how to make Unix scripts and Java work together. At my job there's a lot of that, and I'm an intern and wanting to learn more so I've been playing at home. I have a Linux (RedHat7.2) partition at home, so I

  • How do I connect another monitor to my iMac?

    I would like to add another monitor to my iMac, an HD TV I am no longer using.  How can I do that? I assume I need certain cables, etc, but not sure how this works. Thanks, Lisa

  • [solved] akonadi does not have mysql db

    Hi, I noticed that my akonadi logs keeps telling me that 091022  8:55:18 [Warning] Can't open and lock time zone table: Table 'mysql.time_zone_leap_second' doesn't exist trying to live without them 091022  8:55:18 [ERROR] Can't open and lock privileg

  • Header text not showing up in browser

    My h2 text is not showing up in the browser (IE).  Also of concern is the bad formatting that appears when this page is opened in Chrome.  Any thoughts? http://moxiespeak.com/ THANK YOU!

  • Does nikeplus work with a 1 GB iPod nano?

    Hello there, I am trying to get this nikeplus Kit work with a 1 GB iPod nano. I have the latest iTunes on my computer and I also have the latest software in my iPod (1.3.1). However, the iTunes still does recognize it and it still does not display th