Crystal Report XI Release 2 - Deployment Bug on SQL Server

Post Author: PeterLiebich
CA Forum: General
H
We have a VS 2005 Crystal web app deployed onto a server - not using the RAS but using the Crsytal Report Viewer.
Nearly Everything is working however we have one slight bug which is driving me mad.
All of our reports are constructed against a development SQL Server, and then the Application resets the report location at run time to the Appropriate production server.
Everything works fine when I run the appliction via VS 2005 on my XP machine, the reports repoint successfully etc.
When I build the App and deploy it to a server, the CrystalReportViewer fails with a "Database logon failed" if (and only if) the name of the database that the report was developent against is the same as the name as the database is being repointed to (on a different server).  If the developement and production databases have different names then the resetting of the location works fine.
As I said the repointing works fine when I run the App on my development machine which has Crystal Reports XI Release 2 installed.
On the Server I have installED the Crystal dlls via CrystalReports11_5_NET_2005.msi dated 2007/03/01.
I have also tried to deploy dlls via a GAC using CrystalReports11_5_NET_2005.msm dated 2006/02/24.
All to no avail
Here is the code I use to repoint the report
Dim crConnectionInfo As New CrystalDecisions.Shared.ConnectionInfo
crConnectionInfo.IntegratedSecurity = True
crConnectionInfo.ServerName = v_ServerName
crConnectionInfo.DatabaseName = v_DatabaseName
'loop through all the tables and pass in the connection info
Dim crTableLogOnInfo As CrystalDecisions.Shared.TableLogOnInfo
For Each crTable As CrystalDecisions.CrystalReports.Engine.Table In  Me.m_ReportDocument.Database.Tables
  crTableLogOnInfo = crTable.LogOnInfo
  crTableLogOnInfo.ConnectionInfo = crConnectionInfo
  crTable.ApplyLogOnInfo(crTableLogOnInfo)
Next
'set the crSections object to the current report's sections
'loop through all the sections to find all the report objects
Dim crSubreportObject As CrystalDecisions.CrystalReports.Engine.SubreportObject
Dim crSubreportDocument As CrystalDecisions.CrystalReports.Engine.ReportDocument
For Each crSection As CrystalDecisions.CrystalReports.Engine.Section In Me.m_ReportDocument.ReportDefinition.Sections
  'loop through all the report objects to find all the subreports
  For Each crReportObject As CrystalDecisions.CrystalReports.Engine.ReportObject In crSection.ReportObjects
    If crReportObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
    ' you will need to typecast the reportobject to a subreport object once you find it
     crSubreportObject = CType(crReportObject, CrystalDecisions.CrystalReports.Engine.SubreportObject)
     'open the subreport object
     crSubreportDocument = crSubreportObject.OpenSubreport(crSubreportObject.SubreportName)
    'loop through all the tables in the subreport and
    'apply the connection set up previously to the subreports
    For Each crTable As CrystalDecisions.CrystalReports.Engine.Table In crSubreportDocument.Database.Tables
      crTableLogOnInfo = crTable.LogOnInfo
      crTableLogOnInfo.ConnectionInfo = crConnectionInfo
      crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    End If
  Next
Next

Post Author: jjamcgu
CA Forum: General
Don't know if you ever found a solution, but here is how I got it to work.
1) If it was created pointing to a localhost database, it may be using named pipes to connect, where as production / test uses TCP/IP.  Our CR9 system automatically switched from Named Pipes to TCP/IP but CR11 does not.  Repointing the report to a non local version of the database fixed one problem of runtime switching.  (This includes switching back to localhost).
2) When you change the server name, CR11 does not update the table object, but clones it and applies the update to the clone.  I needed to update the location apply the update and then apply the login change (I am not using integrated security, so this may not apply to you.).  See the code below.  I call setServerInfo and then setLogonInfo. Sub setLogonInfo(ByRef myReport As ReportDocument)
        Dim logonInfo As New TableLogOnInfo
        Dim table As CrystalDecisions.CrystalReports.Engine.Table
        For Each table In myReport.Database.Tables
            logonInfo = table.LogOnInfo
            logonInfo.ConnectionInfo.UserID = loginName
            logonInfo.ConnectionInfo.Password = loginPassword
            table.ApplyLogOnInfo(logonInfo)
        Next table
    End Sub
    Sub setServerInfo(ByRef myReport As ReportDocument)
        Dim logonInfo As New TableLogOnInfo
        Dim table As CrystalDecisions.CrystalReports.Engine.Table
        For Each table In myReport.Database.Tables
            logonInfo = table.LogOnInfo
            Select Case AppSettings("DataEnvironment")
                 Case "PRODUCTION"
                      logonInfo.ConnectionInfo.ServerName = "productionServer.local"
                 Case "TEST"
                      logonInfo.ConnectionInfo.ServerName = "testServer.local"
                 Case "LOCAL"
                      logonInfo.ConnectionInfo.ServerName = "localhost"
             End Select
             table.ApplyLogOnInfo(logonInfo)
        Next table
    End Sub

Similar Messages

  • Deploy Crystal Reports XI Release 2 without setup project

    We are upgrading our development environment to Crystal Reports XI Release 2. Once we have done this we'll need to upgrade our production web server for Release 2. We can't create a setup project for the application, long story but we have an automated job that does our release to production on a file by file basis. So what files do I need to copy/install on the production server to upgrade it to Release 2?

    Don \ Jason,
    We are currently running Crystal Reports .Net Server R1 On our internal web servers. I am in the process of getting R2 installed on our food chain. Due to some configuration limitations, our standards are to have non OS applications installed on a different partition. I have been looking for some option strings to pass into the MSI to override the install location.I have not been able to find anything.
    Is this possible to do? I noticed even when you simply run the MSI it never asks to confirm an install location.
    I am running this MSI : CrystalReports11_5_NET.msi
    Thanks,
    Mike

  • Crystal Reports XI Release 2 and Service Pack 2 upgradation

    Hi,
    I need your support to upgrade and migrate to Crystal Reports XI Release 2 and Service Pack 2 in my development server.
    I am currently upgrading my Crystal enterprise version 9 with the Crystal Reports XI Release 2 and Service Pack 2. I have the below questions to be clarified. Appreciate if you can reply me ASAP. Thanks.
    My Environment:
    O/S - Windows Server 2003 Standard Edition; Version 5.2 (Build 3790); Service Pack - 1
    RAM size - 1 GB
    Installed software - Crystal enterprise 9
    1) After successfully upgraded with the XI version, all my current user accounts and existing reports are not available in the upgraded version. Pl. suggest me, how to migrate my existing connections and all the existing reports?
    2) In my server, SQL Server is not installed. But SQL Server instance (SQL Server 7.00.623) is running in my taskbar (desktop). If I stopped the SQL Server instance, the "Crystal APS" in the Crystal Configuration Manager is stopped. What information is stored in the SQL Server?
    3) What is the default SQL server version bundled with Crystal Reports XI Release 2 Service Pack 2? What is the SQL server version you recommand?
    4) Will the Crystal Reports XI Release 2 SP2 supports the SQL Server 7.00.623?
    Regards
    Sanrajesh

    Hello, Sanrajesh,
    You have been using Crystal Enterprise 9.0 and now you are installing Crystal Reports XI R2. Is that correct?
    Crystal Reports XI R2 is just the Crystal Reports designer and runtime for development.
    Crystal Reports XI R2 does not have the functionality of Crystal Enterprise. The upgrade would be Crystal Enterprise 9.0 to Business Objects Enterprise XI R2. (11.5)
    A full BusinessObjects Enterprise installation will install the appropriate MS SQL Server for it's own use.
    Will this be the Enterprise server or just the Development system to create an application connecting to your BusinessObjects Enterprise server?
    What development language will you be programming in?
    If you have BusinessObjects Enterprise installed elsewhere you only need the appropriate development components on your system and connect to the server in code.
    Our BusinessEnterprise Support team would assist you in the upgrade from Crystal Enterprise 9 to Business Objects Enterprise XI R2 if that was your plan.
    Then we could discuss the development requirements.
    Elaine

  • Salesforce and Crystal Reports XI Release 2 Full build with Service Pack 2

    Hi
    I need to install 'Crystal Reports XI Release 2 Full build with Service Pack 2' (CR XI R2 SP2) on a new computer but can't find the exe/zip file used previously to do that.
    The reason I need that particular version is because (as I understand it) its the version needed to interface with our Salesforce application.
    I have the CRXI original disks and keycode but as I understand it no manner of patching with SPs will get me to CR XI R2 SP2.
    I've tried various searches and frustratingly come up with only dead links (old BO forums and SAP forums).
    Is there a live link somewhere that I can use, or will a later version do the job?
    For example, alternatively, will I be able to use the CR XI R2 SP4 file instead?
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm
    Thanks for your help.

    Post Author: ejthunder
    CA Forum: Deployment
    Hello,
    Crystal Reports XI and XI R2 are not supported on 64 bit machines.  I have not heard of any plans to change this.  As you've discovered - the only version of Crystal Reports that is supported on a 64 bit machine is CR.NET 2005 (v10.2), the version that ships with VS2005.
    Your options are to downgrade your application to use bundled CR.NET 2005 or to deploy your CR XI R2 .NET application to a 32 bit machine.
    EJ

  • Crystal Report XI Release II

    We have converted over 50 Crystal Reports, into Crystal Report XI Release II, there are two reports out of those are converted with an incorrect linked which it result in blank page.
    We have changed linking parameter with many different methods and result is incorrect.
    Please advise if there is an issue with XI Rel.II or what it might be the issue.
    Regards,

    Hi David
    Would suggest you to check the few things at your end:
    1)Verify the links in the "Database Expert|Links tab"Try to link the tables "By Key".
    2)In the Database menu|Click on "Verify database".
    3)What is the result of "Show SQL Query...".
    4)Have you saved the particular reports in Crystal Report Release ll?
    If it doesnt help then please let us know.
    Regards
    Asha

  • Upgrading Crystal Reports XI Release 2 to CR 2008: Where is ReportDocument

    I am attempting to upgrade our .NET Crystal Reports code from Crystal Reports XI Release 2 on Visual Studio 2005 SP1 to Crystal Reports 2008 on the same compiler.  We use the ReportDocument interface and I can't seem to find it in the new Crystal Reports 4.0 managed directory.  Here's the top of the .header file that worked in the old environment:
    #using <CrystalDecisions.Shared.dll>
    #using <CrystalDecisions.CrystalReports.Engine.dll>
    #using <CrystalDecisions.Enterprise.InfoStore.dll>
    using namespace CrystalDecisions::Shared;
    using namespace CrystalDecisions::CrystalReports::Engine;
    With that code in place, I get compiler errors indicating that the packages can't be found:
    c:\dev\sources\videoview_6_6\video\nextlink\reportfaxservice\NReportFaxServiceImpl.h(13) : fatal error C1107: could not find assembly 'CrystalDecisions.Shared.dll': please specify the assembly search path using /AI or by setting the LIBPATH
    environment variable
    If I comment out the lines as follows and add in the ReportDefModel (the only dll that appears to have a ReportDocument symbol):
    // #using <CrystalDecisions.Shared.dll>
    // #using <CrystalDecisions.CrystalReports.Engine.dll>
    #using <CrystalDecisions.Enterprise.InfoStore.dll>
    #using <CrystalDecisions.ReportAppServer.ReportDefModel.dll>
    // using namespace CrystalDecisions::Shared;
    // using namespace CrystalDecisions::CrystalReports::Engine;
    using namespace CrystalDecisions::ReportAppServer::ReportDefModel;
    Then, I get compiler errors like this:
    NReportFaxServiceImpl.cpp(306) : error C2039: 'Close' : is not a member of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
            c:\dev\businessobjects\common\4.0\managed\crystaldecisions.reportappserver.reportdefmodel.dll : see declaration of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
    NReportFaxServiceImpl.cpp(941) : error C2039: 'Load' : is not a member of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
            c:\dev\businessobjects\common\4.0\managed\crystaldecisions.reportappserver.reportdefmodel.dll : see declaration of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
    NReportFaxServiceImpl.cpp(950) : error C2039: 'SetParameterValue' : is not a member of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
            c:\dev\businessobjects\common\4.0\managed\crystaldecisions.reportappserver.reportdefmodel.dll : see declaration of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
    NReportFaxServiceImpl.cpp(974) : error C2039: 'ExportToDisk' : is not a member of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
            c:\dev\businessobjects\common\4.0\managed\crystaldecisions.reportappserver.reportdefmodel.dll : see declaration of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
    Here's line 306 of that source file, for example:
    NReportFaxServiceImpl::~NReportFaxServiceImpl()
         DESTLOG( LOG_NREPORTSERVER, "NReportFaxServiceImpl::~NReportFaxServiceImpl", "[[[]]]" );
         RFaxCloseServerHandle( _hRightFaxServer );
         //  close all the report documents
            IDictionaryEnumerator^ enumReportDocuments = _mapReportDocuments->GetEnumerator();
            while( enumReportDocuments->MoveNext() )
             Object^ reportName = enumReportDocuments->Key;
             ReportDocument^ crReportDocument = dynamic_cast<ReportDocument^>(enumReportDocuments->Value);
    /* line 306 */         crReportDocument->Close();
    Can anyone advise me of the correct #using directive to specify to pull in the ReportDocument object?
    Thanks.

    Okay, we seem to be getting somewhere.  I switched the /AI directive to point to the managed/dotnet2 directory, but then I get the following warning:
    c:\dev\sources\videoview_6_6\video\nextlink\reportfaxservice\NReportFaxServiceImpl.h(15) : fatal error C1107: could not find assembly 'CrystalDecisions.Enterprise.InfoStore.dll': please specify the assembly search path using /AI or by setting the LIBPATH environment variable
    NMAKE : fatal error U1077: 'c:\dev\VisualStudio\VC\bin\cl.EXE' : return code '0x2'
    So, I commented out the following line in the header:
    #using <CrystalDecisions.Enterprise.InfoStore.dll>
    Then, I get the following error when I try to make the project:
    NReportFaxServiceImpl.cpp(982) : error C3624: 'System::Drawing::Printing::PrinterSettings': use of this type requires a reference to assembly 'System.Drawing'
    NMAKE : fatal error U1077: 'c:\dev\VisualStudio\VC\bin\cl.EXE' : return code '0x2'
    Here is line 982:
                        crReportDocument->PrintToPrinter(1, false, 0, 0);  
    So, I'm assuming that maybe I need to provide an assembly search path to both the managed and the managed/dotnet2 directories.  Is that correct?  If so, is order dependent between those two /AI directives.
    Thanks.

  • Crystal Reports XI to Crystal Reports XI Release 2

    Is there an SR update to go from Crystal Reports XI to Release 2?  Or is it essentially a whole other version of the software and must be purchased seperately?
    Can Crystal Reports XI Release 2, save files back to Crystal Reports XI version?
    I'm supporting two applications that utilize Crystal Reports as its reporting engine.  Problem is that one uses Crystal Reports XI and the other Release 2.

    Hi Wenin,
    We can upgrade from Crystal XI to Crystal XI R2.
    We need to have the set up  or download of  Cr Xi R2 enter the key and run the Cr Xi r2 application.
    If we have requirement to run multiple applications one single machine then we can install.
    Else it is recommended to have one version of crystal on client machine.
    Bcoz both versions  will have same registry keys and .dll files .
    So, be aware and can run the 2 crystal applications easily.
    Thanks,
    Naveen.

  • Error in crystal report XI release 2 in Vista OS

    Post Author: cormalado
    CA Forum: General
    Hi All,
    I am a Newbie.......  
    I have written an application where it displays the report.
    I have two test machines, "Machine 1" in which crystal reports XI release 2 is installed and "Machine 2" where it is not installed.
    Now when I run  the application in the machine where CR11 is installed,it runs perfectly fine.(It has XP Operating System)
    Inorder to make the application run on machine 2  where CR11 is not installed.(It has Vista Operating System) what should i do. (I don't want to install CR11 there.)
    Now in order to run in the Vista machine, I need to register the DLL's which are made used to run and display the report as in Machine 1.
    I got these DLL's from machine 1 where XP is installed which i felt are necessary to display the report.....correct me if I am missing something.
    craxdrt.dllcrdb_ado.dllcrqe.dllcrtslv.dllcrviewer.dllcrxf_rtf.dllExportModeller.dllquerybuilder.dllu2ddisk.dllu2ftext.dllufmanager.dll
    Now how should i register these.....i tries Regsvr32.exe to register, but was able to register only few and rest were displaying an error as
    "LoadLibrary failed "    or    "Entrypoint not found".
    I think there might be some dependencies for the DLL's mentioned above.
    I got the above mentioned list of DLL's from CR9 since these DLL's were made used in CR9 with some different name,  when i ran the application in Vista machine with these DLL's I was able to run without any problems.
    Now my question is:
    Are these the only DLL's which are made used to display the report in Machine 2 where Vista is installed and if not what are the other dll's.
    And where shoud these be residing (Is it in system32 folder or ..\Program Files\Common Files\..... ?) and how should I register these DLL's ? (i.e the order of registering them.)
    Any sugesstion would greatly be accepted.   Kindly help me.

    Post Author: synapsevampire
    CA Forum: General
    Try psoting technical information.
    You wrote an application, but you won't bother to say what language/environment??? Your first application, or first time you've asked for technical support?
    And what edition of CR XI do you have, and is it CR XI SR2?
    The Developer edition is required for what you are asking, and you can check the help file within for the file dependencies.
    Might be a compatability issue, I think SR2 is required.
    -k

  • Export To PDF in CRYSTAL REPORT XI Release 2

    I am using Crystal report XI release 2.
    Font Size is decreasing when I am exporting Crystal Report to PDF.
    It was working fine previously but i don't know what messed it up. Please help.

    Hi,
       Looks like you already read the steps needed to resolve this from other places. Here it is again incase you miss any part, make sure you follow it exactly.
    Set the resolution of the default printer of the local computer experiencing the issue to 1200 DPI. Most printers have a default setting of 600 DPI.
    Create two registry keys to prevent the crxf_pdf.dll from decreasing in font size.
    Click Start > Run. Type "regedit". The Registry Editor appears.
    Create the following keys for Crystal Reports XI Release 2 with the defined values:
    HKEY_CURRENT_USER\Software\Business Objects\Suite 11.5\Crystal Reports\Export\PDF\ForceLargerFonts
    Type: DWORD
    Recognized Values: 0,1
    Default Value: 1
    Creation Method: manual
    HKEY_LOCAL_MACHINE\Software\Business Objects\Suite 11.5\Crystal Reports\Export\PDF\ForceLargerFonts
    Type: DWORD
    Recognized Values: 0,1
    Default Value: 1
    Creation Method: manual
    Set both registry key values to 1 to turn them on.
    Restart the Crystal Reports Page, Job and Cache Servers
        Also help if you upgrade your Adobe Reder to version 8 or higher. Let me know if it helps.
    Regards,
    Ken

  • How to use Crystal Reports XI release 2 Preview with Lotus Notes  Scripts ?

    <br />Hi all,<br /><br /> How to use Crystal Reports XI release 2 Preview with Lotus Notes 7 Scripts ?<br /><br /> <br /><br />Thank&#39;s  <br />

    Hi,
    we are using Lotus Notes and Crystal Reports for preview and printing reports from our Lotus Notes Applications. We use the RDC object model. For previewing the reports we export them in an pdf-file and then start the PDF Reader to show the Preview. This works fine.
    But with Crystal Reports > 11 the RDC Object Model is no longer supportet, so we look for another way to preview and print our reports.
    I try to preview a report build with crystal report XI release 2 in my thick client (Lotus Notes) using java reporting component JRC, this report uses an native xml file as datasource. If the datasource is saved with the report everything works fine, but otherwise I have the following error:
    JRCAgent1 detected an exception: javax.xml.namespace.QName: method getPrefix()Ljava/lang/String; not found
    I also tried the .jars from Crystal4Eclipse. Doesn't work. When I use Eclipse to view the report everything works fine. The class QName exitsts in the jaxrpc.jar and in the xbean.jar, but only in the xbean.jar a Methode getPrefix exists.
    This is what we tried:
    Works fine with RDC. Doesn't work with JRC until now.
    Did this help you ?
    Perhaps you con help me with the JRC, because I'm a java newbee so any ideas could be helpful.
    Oliver
    <p><a href="http://www.cominform.de">www.cominform.de</a></p>

  • Crystal reports XI Release 2 constantly configuring after SP4 installed

    I had this issue before and bookmarked it before SAP bought businessobjects and now that solution forum thread no longer exists. But there is some problem with updating the registry when installing sp2 or Sp4 on Crystal Reports XI 2.
    After the successfull install of SP4 upon restarting the application I receive the following messages:
    "Please wait while windows configures Crystal Reports XI Release 2"
    "Server Busy... switch... Retry"
    Every time I start Crystal Reports I have to clear these annoying messages before I can use the application. Does anyone on this forum recall how to fix this nagging issue? I recall there is some registry hack to perform that remedies this issue but I don't remember the specifics. Thanks!!!

    not sure if any one tried this, but it worked for me with Xi/R2, SP5 on a Win2003 std server.
    the event log showed the following:
    'HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.5\Crystal Reports\Keycodes\CR Ent\Serial' does not exist.
    the entire "CR Ent" key was missing.  after adding this key and string value "Serial",  I entered my registration code.  the configurng process did run one more time but very quickly this time. 
    the next time I launched Xi it did ask me again for my registration number, but since this point the application starts up just fine.
    hope this helps someone else.

  • Integrate Crystal Reports XI Release 2 and VS2005 IDE

    <p>Hi,</p><p>How can i integrate Crystal Reports XI R2 is directly into the Visual Studio 2005 development environments. So i can host my report in either a Web or Windows application with one of the Crystal Reports viewer controls, or use the extensive API to interact with the report programmatically at runtime. </p><p>My current setup is:</p><blockquote><p>Crystal Reports XI Release 2.</p></blockquote><blockquote><p>Visual Studio 2005 Professional (I did not install the Crystal Reports .Net shipped with VS 2005.)</p><p>SQ Server 2000.</p><p>&#160;</p></blockquote><p>Thanks Please help.</p>

    You'll need to install the Crystal .NET that comes with VS 2005. You then install Crystal XI R2 over the top and not only will Crystal be integrated with the IDE, it should use the updated assemblies from R2.
    -Dell
    - A computer only does what you told it to, not what you thought you told it to!</p>

  • Crystal Report Xi Release 2 upgrade

    I have been tryig to upgrade my Crystal reports XI Release 2 with the latest service paks, but when i try to apply any they say that i need at least service pak 2.  I try to install service pak 2 and it tells me that there.  Another version of this product is already installed.  To configure or remove the existing version of this product, use add/remove on the control panel. 
    In the Addd/remove on the control panel there is a Crystal Reports XI Release 2.  Im confused.. this is waht i want to upgrade why woudl i remove it?  The version that is installed is 11.5.0.31327
    This all started when i wanted to make a webapp displaya crstyal report and the follwoing error happend.  The most popular fix seemed to be to upgarded to service pak 4 for crystal, but to get there i need service pak 2,3 but i cant install.  The error i was receiving is listed below.
    Not enough memory for operation.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Runtime.InteropServices.COMException: Not enough memory for operation.
    Source Error:
    Line 64:             //load the rpt file to document
    Line 65:             //return;
    Line 66:             doc.Load(fileName);
    Line 67:             //pass the user inputs to crystal report parameters those will sit in the output pdf file
    Line 68:             //doc.SetParameterValue("@CompanyName", txtCompany.Text.Trim());
    Source File: C:\projects\Web Invoice\Web Invoice\Default.aspx.cs    Line: 66
    Stack Trace:
    [COMException (0x80041004): Not enough memory for operation.]
       CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +95
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +271
    [Exception: Load report failed.]
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +333
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) +988
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename) +84
       Web_Invoice._Default.Button2_Click(Object sender, EventArgs e) in C:\projects\Web Invoice\Web Invoice\Default.aspx.cs:66
       System.Web.UI.WebControls.Button.OnClick(EventArgs e) +111
       System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +110
       System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
       System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
       System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +36
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1565

    I believe [this|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] note will help.
    Notes search page is here:
    https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_ossnotes&query=&adv=true
    Ludek

  • Crystal Reports XI Release 2 SP4 RDC Merge Module

    I've been trying to find the RDC Merge module for Crystal Reports XI Release 2 SP4 and cannot find it.  I found a link - https://smpdl.sap-ag.de/~sapidp/012002523100009381702008E/crxir2sp4_rdc_mm.zip - but when I navigate there I get an error "Error Message - ObjectID not existant".  Does anyone know where I can get this from?

    I couldnt find the SP4 RDC however there is a crxir2_fp55_rdc_mm.zip released on 06/07/2009, which can be found at
    [https://smpdl.sap-ag.de/~sapidp/012002523100008181452009E/crxir2_fp55_rdc_mm.zip]

  • Need help with Updating Crystal Reports XI Release 2.

    I had to reload my Crystal Reports XI Release 2 and I am trying to get the software up to date.  I looked for Service Pack 1 Incremental on the Downloads and it is not available.  I tried downloading Service Pack 2 Incremental and it said I need Service Pack 1.  Is there another alternative step that I need to take?  When I tried doing the Service Pack 2 Full Build, I had to uninstall and reinstall.  Then I was not able to get to the ODBC drivers that I needed to export files.  Please advise to fix my issue.
    Thanks,
    Julie

    Hi Julie,
    Download Cr SP 4 full build and then download the [DataDirect ODBC|https://smpdl.sap-ag.de/~sapidp/012002523100008666562008E/cr_datadirect53_win32.zip] drivers.
    https://smpdl.sap-ag.de/~sapidp/012002523100011802732008E/crxir2_sp4_full_build.exe
    https://smpdl.sap-ag.de/~sapidp/012002523100013876392008E/crxir2win_sp5.exe
    https://smpdl.sap-ag.de/~sapidp/012002523100015859952009E/crxir2win_sp6.exe
    Full builds require an uninstall first much much easier than updating incrementally.
    Thank you
    Don

Maybe you are looking for

  • Initial Load of materials into MDG 7

    Hi there, I would like to import all materials which should be in ECC through the MDG. But I am not sure what to do. CSV and is how? Any suggestions? Best Regards. Per Møller Zanchetta

  • How can I reclaim storage from other category on my iPad?

    I have used PhoneClean, deleted my browser cache, deleted and re added my e-mail account, deleted my text messages and still there is 10 GB in the other category.

  • Download link custom action for video files

    Hi, I have a requirement for adding a custom action called "DOWNLOAD A COPY" in search results hover panel on click of which will download copy for the user. I am able to implement this for pdf, excel and word files but not for generic and video file

  • Converting columns in to rows

    Hi All, Can any one plzz help me out how to convert columns in to rows. I am having data as follows: Date1 Date2 Date3 Date4 Date5 Date6 I need the Out put as Below Date Date1 Date2 Date3 Date4 Date5 Date6 Thanks in Advance Regards Praveen

  • How to get ssh access to my Azure Website?

    Hi, I can connect to Website via FilZilla using ftp hostname and username. But how to get ssh access to Azure Wedsite?