Crystal Report (13.0.9.1312) Deployment

Hi,
We are in process of migrating existing application built in VS2003 (.net framework 1.1, with CR9) to VS2013 (framework 4.5), we have downloaded and installed CRforVS2013 and used the same for migration of crystal reports RPT files and project references.
In development environment, we are able to generate and export reports in PDF, but unable to do so on Testing environment though we have installed runtime for CR 13 in testing environment.
Following are the environment details
Development Environment:
a) Windows 7
b) VS 2013
c) CR for VS2013 (13.0.9.1312.Cortez_CR4VS)
Testing Environment:
a) OS : Windows Server 2012 (64 bit)
b) .Net Framework 4.5
c) Crystal Report Runtime (from link SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads)
(our application is built with support for 32 bit, and IIS has been configured for 32 bit support)
Do we need to install any other package or CR .net re-distributable  components in testing environment.
Please help,
Thanks,
Basavraj Birajdar

For everything 32 bit, you need 32 bit CR runtimes (MSI).
The link is correct. Download SP9 32 bit MSI and install on the server.
If the issue still exists, youmay want to post the error / issue details.
- Bhushan
Senior Engineer
SAP Active Global Support
Follow us on Twitter
Got Enhancement ideas? Try the SAP Idea Place
Getting started and moving ahead with Crystal Reports .NET applications.

Similar Messages

  • Crystal Reports for eclipse 2.0 deployed on unix

    Hi,
    We have designed few crystal reports using u201CCrystal Reports for Eclipse 2.0u201D on windows platform. We have embedded this report into a J2EE Web application and deployed the web application on Tomcat 6.X server.
    We are able to generate the reports successfully on windows environment. But when deployed the web Application on to Tomcat server 6.X on Solaris environment we get runtime exception as below.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKClientDocException: The document has not been opened.---- Error code:-2147215349.
    It is failing at At clientDoc.open(reportName, OpenReportOptions._openAsReadOnly) of the JSP whaich was shared where clientDoc is an object of ReportClientDocument. That is it is failing to open the .rpt.
    The eclipse generated JSP used to invoke the report sa follows.
    <%@ page contentType="text/html; charset=iso-8859-1" pageEncoding="ISO-8859-1" %><%@ page import="com.businessobjects.samples.CRJavaHelper,
    com.crystaldecisions.report.web.viewer.CrystalReportViewer,
    com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,
    com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase,
    java.util.Calendar,
    java.util.Date,
    java.text.DateFormat,
    java.text.SimpleDateFormat" %><%
    // This sample code calls methods from the CRJavaHelper class, which
    // contains examples of how to use the BusinessObjects APIs. You are free to
    // modify and distribute the source code contained in the CRJavaHelper class.
    try {
      HttpSession sessionObj = request.getSession();
      String reportName = "reports/EmailDataReport.rpt";
      String attStartDate = (String)sessionObj.getAttribute("CalendarStartDate");
      String attEndDate = (String)sessionObj.getAttribute("CalendarEndDate");
      //attStartDate = "2/12/2004";
      //attEndDate = "2/17/2009";
      // spliting the start and end date
      String [] arrStDate = null;
      String [] arrEndDate = null;
      arrStDate = attStartDate.split("/");
      arrEndDate = attEndDate.split("/");
      ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
      if (clientDoc == null) {
       // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
       // tag can be removed to open the reports as Java resources or using an absolute path
       // (absolute path not recommended for Web applications).
       clientDoc = new ReportClientDocument();
    try{
       clientDoc.setReportAppServer(ReportClientDocument.inprocConnectionString); 
       // Open report
       clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
       //DateFormat df = new SimpleDateFormat("dd/MM/yyyy");
    }catch(Exception e){
    out.println(" -
    Error while opening the report $$$$$$$$$$$"e.toString()"\n");
       // ****** BEGIN SET RUNTIME DATABASE CREDENTIALS **************** 
        String connectString = "XXXXXX
        String driverName = "oracle.jdbc.OracleDriver";
        String JNDIName = "";
        String userName = "YYYYY";   // TODO: Fill in database user
        String password = "ZZZZZZZZZ";  // TODO: Fill in password
        // Switch all tables on the main report and sub reports
        CRJavaHelper.changeDataSource(clientDoc,reportName,null,userName, password, connectString, driverName, JNDIName);
        // logon to database
        CRJavaHelper.logonDataSource(clientDoc, userName, password);
       // ****** END SET RUNTIME DATABASE CREDENTIALS ****************
       // ****** BEGIN CONNECT PARAMETERS SNIPPET **************** 
        // DATE VALUE PARAMETER.
        Calendar calendar = Calendar.getInstance();
        calendar.set(Integer.parseInt(arrStDate[2]), Integer.parseInt(arrStDate[0])-1, Integer.parseInt(arrStDate[1]));
        Date dateParamVal = calendar.getTime(); // TODO: Fill in value
        CRJavaHelper.addDiscreteParameterValue(clientDoc, "", "StartDate", dateParamVal);
        // DATE VALUE PARAMETER.
        Calendar calendar = Calendar.getInstance();
        calendar.set(Integer.parseInt(arrEndDate[2]), Integer.parseInt(arrEndDate[0])-1, Integer.parseInt(arrEndDate[1]));
        Date dateParamVal = calendar.getTime(); // TODO: Fill in value
        CRJavaHelper.addDiscreteParameterValue(clientDoc, "", "EndDate", dateParamVal);
       // ****** END CONNECT PARAMETERS SNIPPET ****************
       // Store the report document in session
       session.setAttribute(reportName, clientDoc);
      // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
       // Create the CrystalReportViewer object
       CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
       String reportSourceSessionKey = reportName+"ReportSource";
       Object reportSource = session.getAttribute(reportSourceSessionKey);
       if (reportSource == null)
        reportSource = clientDoc.getReportSource();
        session.setAttribute(reportSourceSessionKey, reportSource);
       // set the reportsource property of the viewer
       crystalReportPageViewer.setReportSource(reportSource);
       // Apply the viewer preference attributes
       // Process the report
       crystalReportPageViewer.processHttpRequest(request, response, application, null);
      // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
    } catch (ReportSDKExceptionBase e) {
         out.println(e);
    %>
    Note : We have not installed any crystal report servers in both windows or UNIX environment.But we have deployed all the relavant crystal report jars for the java runtime environment.
    If anyone has come across such error please help. Also let me know if we need to have external RAS set up for this?By default the the RAS will be set to "inproc:jrc"  which works fine on windows environment.
    regards,
    Madhu

    I am having similar problems.  Environment works perfectly in Windows.  All JARS and config files moved to AIX UNIX machine.  I get nothing more than a Crystal Reports 'Error' on the screen!!!
    Any ideas since this was posted??

  • Crystal Report not showing up during deployment for CRVS2010

    Hi,
    Have encountered problem when deploying Crystal Report using VB 2010. The report is able to show up during ASP.net development using VS 2010 but when i try to deploy on a IIS server, the report is just showing a blank page when trying to view using an Explorer on the client side. I'm using Window XP IIS 5.1 web server.
    Have tried doing VB setup and installing the merge module CRruntime_13_0_1 but still not working.
    Any help will be appreciated.
    Thanks
    KB

    While the supported platform text says that Microsoft  IIS5.1 is supported, I'm a bit dubious as CR 2008 (v. 12.x) did not support IIS5.1. See [KB 1494954 - Crystal Reports 2008 DHTML viewer for VS .NET is blank when displayed on a web form|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433393334333933353334%7D.do].
    I'll check with Program Management and get back with a definitive answer.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • SAP Crystal Reports for Visual Studio 2010-Deployment Issue

    Hi All,
    I am trying to deploy CR for VS 2010 and without success. it is the first time I am deploying an application that is using CR so Im probably doing something wrong.
    I installed the SAP Crystal Reports runtime engine for .NET Framework 4 (32-bit) and I get the error message : "Could not load file or assembly 'System.Web.Extensions, Version=4.0.0.0, Culture=neutral, Pub.."
    what is the right way to deploy a CR application? I use a windows forms application as a project.
    Hagit

    Note that the error is:
    System.Web.Extensions, Version=4.0.0.0, Culture=neutral
    This is a MS framework dll / assembly, not a Crystal Reports file. Have you installed framework 4 on that box? If not, do so, then reinstall the CRVS2010 runtime.
    - Ludek

  • Crystal Reports and Visual Studio when deploying

    Hello,
    I´ve been searching for these problem for a while with no luck. I've already try many things.
    The thing is that I'm not able to make work any report when deploying (Windows Server 2012). Everything works fine when I try on my local machine.
    I have Visual Studio 2012 and I've installed CRforVS_13_0_5.
    This is my code:
                ReportDocument myCrystalReport;
                myCrystalReport = new ReportDocument();
                myCrystalReport.Load(Server.MapPath("~/Reports/report2.rpt"));
                CrystalReportViewer1.ReportSource = myCrystalReport;
                CrystalReportViewer1.RefreshReport();
    I've pasted the error below:
    Server Error in '/' Application.
    Unknown error 0x80040200
    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: Unknown error 0x80040200
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [COMException (0x80004005): Unknown error 0x80040200] CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0 CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +90 CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +259  [CrystalReportsException: No se ha podido cargar el informe.] CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +322 CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) +851 CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename) +78 MMN.Reports.prueba1.Page_Load(Object sender, EventArgs e) +97 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +51 System.Web.UI.Control.OnLoad(EventArgs e) +92 System.Web.UI.Control.LoadRecursive() +54 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +772
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18408
    I'd really appreciate any help.
    Many thanks.

    Thanks for your time.
    I'm feeling frustrated. I've read several discussions but I haven't found a solution for me.
    I've set full control privileges for C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files and C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files.
    I've installed Crystal Report Viewer 13.
    CRforVS_13_0_8
    CRforVS_redist_install_64bit_13_0_8
    I see this error:
    Server Error in '/' Application.
    Configuration Error
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
    Parser Error Message: Could not load file or assembly 'Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
    Source Error:
    Line 14:         <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> Line 15:         <add assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/> Line 16: <add assembly="Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/> Line 17:         <add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> Line 18:         <add assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    Source File: C:\Inetpub\vhosts\mmn.com\httpdocs\web.config    Line: 16
    Assembly Load Trace: The following information can be helpful to determine why the assembly 'Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' could not be loaded.
    WRN: Assembly binding logging is turned OFF. To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1. Note: There is some performance penalty associated with assembly bind failure logging. To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18408
    Thanks for helping.

  • Crystal report Deployment error

    Post Author: jacobmk
    CA Forum: Deployment
    Hi All,
    I am using crystal rports for pdf generation in asp.net 2.0. When I installed the application on 64bit Windows server
    An error has occurred while attempting to load the Crystal Reports runtime.Either the Crystal Reports registry key permissions are insufficient or the Crystal Reports runtime is not installed correctly.Please install the appropriate Crystal Reports redistributable (CRRedist*.msi) containing the correct version of the Crystal Reports runtime (x86, x64, or Itanium) required.  Please go to http://www.businessobjects.com/support for more information.
    Description: An unhandled exception occurred during
    Please help
    regards
    Jacob

    Post Author: ejthunder
    CA Forum: Deployment
    You did not say which version of Crystal Reports you're trying to deploy.
    CR XI and CR XI Release 2 are NOT supported on 64 bit systems.  The only versions of Crystal Reports supported on 64 bit machines is the version of Crystal that bundles with VS2005 - CR.NET 2005 (v10.2).  If you upgrade your VS2005 machine by installing CR XI Developer, or CR XI R2 Developer onto your development machine you will not be able to deploy your application.  In this case the only option would be to "downgrade" back to the bundled edition that ships with VS2005.
    EJ

  • Deploying website that has crystal reports

    Post Author: Sridhar
    CA Forum: Deployment
    Hi,
       we are using Crystal Reports 10 to design crystal reports. The web development environment is Visual Studio 2005. When I run the website that has the crystal reports on my localhost I am not getting any errors. I am using Non-Embedded Crystal reports. However when I deploy the website on the server I am getting "cannot load file or assembly ....". I am thinking this is because of the version issues. When I looked at the version of dlls that are used in the development enviroment they are 10.2.3600. I am not able to find these dlls on the server. I cannot even copy them from the development machine since they are in Global Assembly Cache. The dlls with version 10.2.3600 might have come from the visual studio 2005 installation. But how I can get these dlls on the server so that the crystal reports work fine. Please let me know.
    Thanks,
    sridhar.

    Post Author: mewdied
    CA Forum: Deployment
    You will need to create a deployment package using a merge module available from: http://support.businessobjects.com/downloads/merge_modules.asp#07

  • Crystal Report 2011- SAP Data Sources: CL - no items found

    Background:
    SAP ECC 6.0 was purchased three years ago with DSD package. Only FI and SD modules are in use. Accounts download data filesfrom SAP to produce spreadsheet reports. Few user trust these numbers. We are setup as "SAP in the Cloud" model- Listening to constant user complaints, it seems SAP is broken. Interim solution: Crystal Report for everyone.
    Encouraged by Ingo Hilgefort papers and Crystal Report Forum:
    We decided to deploy Crystal Report 2011 and Business Object XI 3.1 with SP4 for our small user community. These software are installed on local XP laptop and Business Object XI 3.1 installed in the SAP server as well.
    Problem Description:
    The desktop user cannot see SAP infosets or tables contents. When connect to the data sources. After user login, she can navigate to expand the data source CL.- displays "no items found ". I can reproduce this error. Using the Crystal Report wizard and selecting various data sources such as: SAP Table, Cluster and Functions: CL, DD and FN category only DD and FN display items.
    Current Environment: SAP in the Cloud.
    SAP Server::ECC 6.0 EhP3 dual stack. Database MSSQL, OS 2008 Server, Business Object Intergration Kit 3.1, Remote Acces VPN.
    Desktop Environment: Crystal Report 2011: SP1, Business Object Xi 3.1, XP SP3
    Surprise: Clicking on either DD and FN tab inside the connector window in Crystal- it expands and displays tables and content reference but not CL.
    Questions: Do we have to move to EhP5 for the CRX 2011 to work ? What is wrong: ? Any help will be appreciated?
    This question is for Ingo H. How to convince SAP hosting company otherwise to solve our problem ? Is is desktop problem or Host side configuration ?

    Ahmad
    K900687 is Open SQL Connectivity transport and required for direct SAP tables connectivity, so you need it, but I am not sure if the warning message relevant to your problem. Sometimes warning is just a warning.
    You can see other objects in DD, but not in CL, it means the connection works. You probably do not have required authorisations to see objects.
    I would suggest to review the Authorisation section of SAP Integration Kit Installation Guide here:
    [http://service.sap.com/~sapidb/011000358700000559912010E/xi31_sp3_bip_sap_inst_en.pdf ]
    You may also check what is the differences between DD and CL in terma of authorizations.
    If you think CR 2011 is broken, then test CR 2008. Is still available for free 30-days trial download here:
    [http://www12.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx]
    , but you would need to add SAP Integration Kit to it.
    Vitaly

  • Crystal Reports 2008 Runtime, Windows Server 2008 64-Bit AND SharePoint2007

    Hi Guys,
    here i'm again.
    Well I'm developing on a 32-Bit OS with Crystal Reports 2008. I've deployed my solution to SharePoint, but when i try to call a report in the aspx-Website i get the following error:
    Exception Details: CrystalDecisions.CrystalReports.Engine.LoadSaveReportException: An error has occurred while attempting to load the Crystal Reports runtime. Either the Crystal Reports registry key permissions are insufficient, or the Crystal Reports runtime is not installed correctly. Please install the appropriate Crystal Reports redistributable (CRRedist*.msi) containing the correct version of the Crystal Reports runtime (x86, x64, or Itanium) required. Please go to http://www.businessobjects.com/support for more information.
    Here are the technical details:
    - Windows Server 2008 (64Bit)
    - IIS7
    - Microsoft Office Server 2008 (64Bit)
    - Crystal Reports 2008 SP3
    I've read, that there isn't a 64-Bit runtime version of CR2008. Then i tryed the two following suggestions i found in this forum:
    1. Try to run the IIS-Application-Pool in 32-Bit-Mode -> This don't work, because SharePoint then throws a "Internal Server Error - Code 500" (no SharePoint Sites are available).
    2. Try to compile the Visual Studio Project as 32-Bit -> This don't work, because SharePoint could not load the assembly
    Well, are there any other hints, suggestions or  experiences how i could get this to work?
    Thanks in advance,
    Christian
    Edited by: C.Kaiser on Oct 12, 2010 5:22 PM

    Hi,
      I Have a Doubt Similarly which is related to the above post.....
    I had created a asp.net website with sql db, Its running fine in my PC, But when i host it in my server It shows an Error like..
    Configuration Error
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
    Parser Error Message: Could not load file or assembly 'CrystalDecisions.Design, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified. "
    I am Using Visual Studio 2010, and my Server is Windows Server 2008 R2 32bit
    I am also attaching the screenshot of the error.
    Can anyone Please Help me , Its Very urgent..
    Anyone Please Help Me ,,,, Its Very Urgent .......
    Thanks In Advance...

  • Problem with vertical text in crystal report viewer

    Hi,
    I am displaying vertical text in crystal report designer and deploying the report in crystal reports server 2008. The deployed report is being displayed using JAVA in crystal report viewer control.
    Problem: Vertical text header  is getting collapsed wth other vertical headers.
    Please help on this.
    Thanks,

    Hi Vijay,
    I found out another method of retaining all the chart formatting that is done in the preview pane.
    Once you have done all the changes then you will find interestingly there is a chart menu option that appears in the tool bar. Once you click on it there is an option "Apply Changes to All Charts".
    Select that option, close your preview. Open it once again and you will find that all the settings are still there and the Web Viewer is able to display them properly.
    I think that I resolved this.
    Regards,
    Gourav

  • ClickOnce, Crystal Reports XI R 2 on redistributed right

    I am running into two different problems that I believe are unrelated so I will place them in different posts.
    Bottomline: my ClickOnce deployment does not correctly check to see if it needs to install the Crystal Reports redistributable.
    I have a .Net/C# Windows Form application which uses the SDK to generate reports. I am using Visual Studio 2005. Early versions of my application used the Crystal Reports that is included with Visual Studio. I ran into a problem there that was fixed by moving to Crystal Reports XI. I am now using Crystal Reports XI Release 2 SP 3.6.  I followed the steps in Note "1206112 - How to update a Crystal Reports XI Release 2 ClickOnce deployment package".
    Frankly those instructions seemed strange to me because no changes were made to the product.xml file in regards to the checks made.
    On the user's machines I have seen the following issues when they use ClickOnce to install or update my application:
    Machines 1 and 2: ClickOnce decided it was not necessary to install Crystal Reports. User encountered a runtime error because the correct version was not installed. I cannot verify this anymore but I suspect they had an older version of Crystal Reports assemblies.
    Machine 3 (and I suspect all machines): if you return to the ClickOnce webpage and install my program again it will install the Crystal Reports redistributable again and again... ClickOnce does not correctly understand that the redistributable has already been installed.
    I first thought that the test of BuildNum against the value 240 just needed to be changed. However, on a clean machine (never had any Crystal Reports modules before) I installed the redistributable and it does not make the registry key HKLM\SOFTWARE\Business Objects\Suite 11.5\Crystal Reports" Value="BuildNum".
    So what is an appropriate check to see if the redistributable for Crystal Reports XI Release 2 SP 3.6 has already been installed on a machine?
    Below are the contents of my C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\CrystalReports\product.xml file:
    Thank you for your time,
    Steve Curry
    <?xml version="1.0" encoding="utf-8" ?>
    - <Product xmlns="http://schemas.microsoft.com/developer/2004/01/bootstrapper" ProductCode="BusinessObjects.CrystalReports115.NET.2.0">
    - <!--
    Defines list of files to be copied on build
    -->
    - <PackageFiles CopyAllPackageFiles="false">
    <PackageFile Name="CrystalRedist115_x86.msi" />
    </PackageFiles>
    - <RelatedProducts>
    <DependsOnProduct Code="Microsoft.Net.Framework.2.0" />
    <DependsOnProduct Code="Microsoft.Data.Access.Components.2.8" />
    </RelatedProducts>
    - <InstallChecks>
    <RegistryCheck Property="CRBuildNum" Key="HKLM\SOFTWARE\Business Objects\Suite 11.5\Crystal Reports" Value="BuildNum" />
    </InstallChecks>
    - <Commands Reboot="Defer">
    - <Command PackageFile="CrystalRedist115_x86.msi" Arguments="" EstimatedInstalledBytes="21000000" EstimatedInstallSeconds="300">
    - <!--
    These checks determine whether the package is to be installed
    -->
    - <InstallConditions>
    - <!--
    ByPass if the BuildNum is the same
    -->
    <BypassIf Property="CRBuildNum" Compare="ValueEqualTo" Value="240" />
    - <!--
    Block install if user does not have admin privileges
    -->
    <FailIf Property="AdminUser" Compare="ValueEqualTo" Value="false" String="AdminRequired" />
    - <!--
    Block install on Win95
    -->
    <FailIf Property="Version9X" Compare="VersionLessThan" Value="4.10" String="InvalidPlatformWin9x" />
    - <!--
    Block install on NT 4 or less
    -->
    <FailIf Property="VersionNT" Compare="VersionLessThan" Value="5.00" String="InvalidPlatformWinNT" />
    - <!--
    Block install if there is no .NET Framework
    -->
    <FailIf Property="DotNetInstalled" Compare="ValueEqualTo" Value="0" String="DotNetFxRequired" />
    </InstallConditions>
    - <ExitCodes>
    <ExitCode Value="0" Result="Success" />
    <ExitCode Value="1641" Result="SuccessReboot" />
    <ExitCode Value="3010" Result="SuccessReboot" />
    <DefaultExitCode Result="Fail" FormatMessageFromSystem="true" String="GeneralFailure" />
    </ExitCodes>
    </Command>
    </Commands>
    </Product>

    I'm not sure what's going on with machines 1 and 2. This might be related to the issue you posted in your other thread, if you're creating packages from the non-working machines.
    For the constant-reinstalling issue, I think there was a known issue relating to a registry key which never gets created. That can be rectified by changing the InstallChecks section of the product.xml file to look for a currently-installed product instead of that reg key. Give this a try and see if it works for you:
    <InstallChecks>
        <MsiProductCheck Property="CrystalRedist115_X86" Product="{A7FE99B6-E077-4F52-BC6A-E24C338F3C23}" />
    </InstallChecks>
    Note: I'm not sure if the product GUID changes per fixpack. That would be the million-dollar question.

  • Crystal report XI R2 - ClientDocument java.lang.NoClassDefFoundError

    Post Author: Mauro.Garlaschelli
    CA Forum: JAVA
    I downloaded Crystal Report XI R2 and i deployed the CrystalReportsSample web application into my Tomcat.
    When I try to view the example the following error is thrown:javax.servlet.ServletException: com/crystaldecisions/sdk/occa/report/application/ClientDocument
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:825)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)
         org.apache.jsp.view.viewreport_jsp._jspService(viewreport_jsp.java:123)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    java.lang.NoClassDefFoundError: com/crystaldecisions/sdk/occa/report/application/ClientDocumentcom.crystaldecisions.report.web.ServerControl.<init>(Unknown Source)com.crystaldecisions.report.web.viewer.ReportServerControl.<init>(Unknown Source)com.crystaldecisions.report.web.viewer.CrystalReportViewerBase.<init>(Unknown Source)com.crystaldecisions.report.web.viewer.CrystalReportViewer.<init>(Unknown Source)com.crystaldecisions.report.web.viewer.taglib.ViewerTag.a(Unknown Source)com.crystaldecisions.report.web.viewer.taglib.ServerControlTag.if(Unknown Source)com.crystaldecisions.report.web.viewer.taglib.ViewerTag.byte(Unknown Source
    Any help ?
    Thanks in advance,
    Mauro

    Post Author: Ted Ueda
    CA Forum: JAVA
    That class is in rasapp.jar file - if you're using the Java Reporting Component, I recommend following the deployment guide found here:
       http://support.businessobjects.com/communitycs/technicalpapers/cr_xi_r2_jrc_deployment.pdf.asp
    that lists the required jar files.
    Sincerely,
    Ted Ueda

  • Side by side installation Crystal Reports for Visual Studio 2010 - CRXIR2 ?

    we are integrating Crystal Reports for Visual Studio 2010 into our C++ application.
    We used to work with CRXIR2.
    A customer of ours has upgraded to the VS2010 runtime version for 64-bit,
    and seems to be having random crashes.
    We haven't been able to pinpoint the problem...
    They are running several of our applications simultaniously on terminal servers.
    What we noticed is that they did not uninstall CRXIR2 from there system.
    Is this side-by-side installation supported?
    So XIR2 next to Crystal Reports for Visual Studio 2010  ?
    And even: can you have a Crystal Reports for Visual Studio 2010  64bit next to a 32bit? Probably yes?
    Next to that: is there any limit of concurrent users (applications) that use the .NET component?
    I would think not...
    Bart

    Hi Bart,
    Side by side installation shouldn't be a problem, unless you had Beta version of CRVS2010 installed on the same machine.
    For better results try upgrading to use SP1 of CRVS2010. For CRVS2010 resources, you can go through this
    Crystal Reports for Visual Studio 2010 - Deployment
    I haven't seen any problem with 64bit next to a 32bit til date.
    You can go through this for CR support on x64
    http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/10d5fa88-2013-2c10-c9a5-f11963607d4e
    To answer your last question, go through following:
    Crystal Reports Maximum Report Processing Jobs Limit
    http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/f053713e-3e3d-2c10-2a81-f79259e54023
    Thanks,
    Saurabh

  • Redistributable components of crystal report 11 and Crystal Report 2013

    Currently we are facing a peculiar problem where we are having a report with 5 tables and connected using the default crystal report db connectivity.
    The report was created in a very old version of crystal report 8.5 and we have been migrating the same to latest versions.
    When i execute the report from my Application using crystal report 11 run-time components installed it works perfectly (5 Secs). In this we were using the viewer ole control embedded in our application.
    But when the same report is opened up from the application using the crystal report 2013 run-time components there is performance lag of 15 Secs every time using the viewer as separate control using C# .net framework 4.0. 
    Also Installing crystal report 11 run-time and then installing crystal report 2013 run-time resolves the issue.
    Can someone let me know if we are missing something.
    Thanks & Regards,
    Satish VS

    Hi Bhushan
    Thanks for your prompt reply
    - The old application was it a .NET or COM SDK app?
    Old application uses the COM SDK App ( CrystalRuntime.Application) developed in VB & consumed the same as an Ole object in Power builder.
    - What version of VS are you using? (Earlier and now).
    Earlier With Crystal report 11 we were directly deploying the viewer as ole control in our Powerbuilder application
    Now we are using VS2010 with .net framework 4.0 as separate viewer control
    - Is this a windows or a web application?
    Its an windows application
    - Provide the version no of CR 11 you used earlier?
    Old Application uses crystal report 11.0.0.1282
    - There are no runtimes for crystal report 2013, so could you please provide the version no for the crystal report 2013 runtimes you are using? You could check the file version of crystaldesicions.crystalreport.engine assembly.
    Yes we are using crystaldecision run-time  and the version is 13.0.2000.0 & Runtime version - v2.0.50727
    - As runtimes, did you use MSM, MSi or ClickOnce CR runtimes do deploy your application?
    We were using this CRRuntime_32bit_13_0.msi as a pre-requisite before deploying our application.
    -Also, if you could elaborate on how did you upgrade / migrate the application and deployed it, would be helpful.
    In my old application we would be using the default crystal report 11 merge module to be deployed alongwith our application msi.
    To upgrade they would install the CRRuntime_32bit_13_0.msi  and then deploy our application msi.
    Please let me know if you need any further information.
    Thanks in advance.
    Regards,
    Satish VS

  • How do I deploy my Crystal Reports webapp???

    Post Author: figue
    CA Forum: .NET
    Hi, i've developed a web application using Visual Studio .Net and using the Crystal Reports for Visual Studio 2005. I've read almost all the "how-tos" that are available on the net to solve my situation, but i couldn't manage to deploy my application.
    I have no physical access to the web server, and i cannot execute a .exe or a .msi installer (i cannot use the "merge modules" solution).The only solution i think may help me is copying the Crystal Reports dll's to my BIN folder and using those dll's instead of using the GAC references.Here's what i've done:- I copied all the dll's that I found on Program Files/Common Files/Business Objects/2.7/Managed into my app's BIN folder.- I deleted all the references to the Crystal Reports' assemblies from my solution's property pages. FIRST PROBLEM: The references were deleted, but when I closed the solution, and opened it again, all the references returned.. After trying again and again, they finally dissapeared.- I tryied to add the references to the dll's that were into my app's BIN folder, but when I browse the file, select it, and accept the dialog box, nothing happens. No reference is added into the References window.- I tryied to add the GAC references again, to return to the previous state, but it's the same, i select the reference from the GAC and when i accept the dialog box, nothing happens.- I thought that maybe my pc has some troubles with the installed versions of crystal reports (i hace 8.5, XI and CR for VS 2005 installed), so i created a Virtual Machine, Installed VS 2005 and created a new web application with one .aspx and one .rpt and tryied to change the GAC's references for the BIN's DLLs. The same thing happend.
    Can somebody please help me? I'm gettin' really tired of trying and trying things and not gettin' in solved.
    Regards from Argentina

    Post Author: Ted Ueda
    CA Forum: .NET
    Unfortunately, xcopy deployments of Crystal Reports .NET assemblies won't work, since they rely on some dll's via COM-Interop.
    Those components have to be registered on the server - via merge modules install - and regretably, you're restricted from doing so.
    Sincerely,
    Ted Ueda

Maybe you are looking for

  • Sending email on wifi errors

    On both my ipad 3 and iPhone 5 sometimes I can't send emails on wifi, I'll get "cannot connect to server" however if I switch wifi off and use LTE it works fine.. Switch back to wifi and it errors... Using exchange and iCloud. Anyone else?

  • My iphone 5 touch screen seems to have a mind of its own. Please help

    My iphone 5 touch screen seems to have a mind of it's own. Whilst I am trying to type a text message it will quite often whilst i'm tapping on letters, typr different letters, or open up the edit messages to select and delete messages. The screen can

  • Can included graphics be sorted along with totals?

    For years I have been using Excel to compile stats that include photographs for each row. Unfortunately MS in their wisdom removed the ability to sort with graphics, so had to revert to previous version. Having moved over to Numbers, I have not been

  • Linking width of two components

    hello, I am building an app for my coursework that uses geoRss feeds.On the left of my frame i have two panels. Top one contains a JTree and is scrollable Bottom one contains an image of fixed Size. I am using a gridBag layout. I want to constrain th

  • Adding new texts in sales order item text

    Hi , we have a requirement where we need to add new texts in the sales order item texts. Ne pointers on how to do it will be appreciated.