Crystal Report XI (C++) : Leak with IReport object ... I think.

Post Author: NicolasG
CA Forum: Other
Hi, I'm working on an application that is using Crystal Report to generate report from a report file (.rpt) and a Microsoft Access (.mdb) file. During our stress test, I noticed that the application memory keep growing. After some work, I came up with a really simple application that reproduced the problem.The application consist in one thread that keep opening report from the report file (i.e. I don't even use the database file yet).Here is a code sample : void CMemoryLeakDlg::GenerateReport(void* param){    CoInitialize(NULL);    OutputDebugString("Generating report - Starting ...\n");    Sleep(1000);    CMemoryLeakDlg* pThis = static_cast<CMemoryLeakDlg*>(param);    ASSERT(pThis);        IApplicationPtr pApplication;    try    {        HRESULT hRes = pApplication.CreateInstance("CrystalRuntime.Application.11");        if (FAILED(hRes))        {            ASSERT(FALSE);        }                ASSERT(pApplication != NULL);                IReportPtr pReport;        while (pThis->m_bWorking)        {            bstrt bstrReportPath(pThis->m_strReportPath);            pReport = pApplication->OpenReport(bstrReportPath);            pReport.Release();            ASSERT(pReport == NULL);        }        pApplication.Release();        ASSERT(pApplication == NULL);    }    catch (_com_error& e)    {        UNREFERENCED_PARAMETER(e);        ASSERT(FALSE);    }    Sleep(1000);    OutputDebugString("Generating report - Ended\n");}I am not a COM expert programmer and probably I am not using the COM interface correctly. My assumption is that I am not closing the report correctly and that the memory is not freed.Any ideas? Any help would be greatly appreciated.Thanks a lot!Nicp.s. We are using Crystal Report XI 11.0.0.1994

Post Author: DLO34
CA Forum: Other
I am seeing this issue also. It seems to be related to the size of the RPT file also. It leaks about 10MB with a 1MB RPT file. I tried opening and closing the RDC print engine for each report but it still leaks. I ran my application through BoundsChecker and it shows that the leak is occurring in the Crystal API. It looks like the release method doesn't work. Crystal Report XI 11.0.0.895

Similar Messages

  • Does Crystal Report XI R2 comes with Crystal Data Object (CDO)

    Hi,
    Does anyone knows if installation of crystal reports include Crystal Data Object (CDO) ? From the article(http://www.dataaccess.com/kbasepublic/KBPrint.asp?ArticleID=2183) it seems like it doesn't comes with the standard installation package in Crystal Report XI R2. Please advise. Thanks =)
    Regards.

    You need to pick "Crystal Data Objects" from the list of Data Access options offered by Crystal Reports when you are installing it -- that item is not selected by default.
    To add that to your machine:
    - Open Add/Remove Programs
    - Select Crystal Reports 11 and click on the Change button
    - Expand the tree under "Data Access"
    - Select "Crystal Data Objects" and click on it
    - Select it to be installed -- you will probably need your Crystal Reports CD to proceed with the installation.
    Ludek

  • Launch a Crystal Report Based on a Bus. Objects Universe with code

    Post Author: BobM
    CA Forum: .NET
    Launch a Crystal Report Based on a Bus. Objects Universe with code
    We have purchased Business Objects Enterprise XI R2 and have designed a universe.  We have hundreds of scheduled reports that have been configured through the InfoView.  The problem is that we run these reports on a very odd date schedule and it is extremely cumbersome to go into these report definitions and change the dates in InfoView.
    We would like to be able to store all the report parameters in a table (outside of the BO universe) along with the date and time we would like it to run.  All of this would need to be tagged with the report name so we know what report we are referring to.  Then we would like to sweep this table periodically (or use some other triggering mechanism) and launch the reports as specified (hopefully) using an API/SDK (like the one that used to be available with Crystal) to launch the .RPT file and pass all of the appropriate parameters, and possibly the credentials if need be.
    In short we want to roll our own report scheduler due to some limitations we have found in the InfoView scheduler.
    My main question is, does an API/SDK exist that can launch a crystal report that is based on a Business Objects Universe?  As I had stated, it needs to be able to pass parameters in the report call.  Based on my previous projects using Crystal connected directly to a SQL Server DB, I beleive this is possible, but I would like to hear from others that may be doing something similar with a Business Objects Universe back end.
    We are using Crystal Reports XI R2.  Just to be clear, all of the functionality I specified up to the point where the report needs to be called is not an issue, we know how to do all of that.
    Thanks in advance,Bob
    Code; API; Business Objects; Universe; Crystal; BO Enterprise X11; Crystal Reports XI

    With the code, you've presumably logged on to the database. To insert objects on to a new report you'd want to use code along the following lines:
    private void AddTableFromDataSet(ref CrystalDecisions.CrystalReports.Engine.ReportDocument rpt, System.Data.DataSet ds)
    ISCDReportClientDocument rasReport = rpt.ReportClientDocument;
    // Convert the DataSet to an ISCRDataset object (something the ISCDReportClientDocument can understand)
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRDataSet rasDS;
    rasDS = CrystalDecisions.ReportAppServer.DataSetConversion.DataSetConverter.Convert(ds);
    // Add the dataset as a data source to the report
    rasReport.DatabaseController.AddDataSource((object)rasDS);
    // Add a field to the report canvas
    // Note: This is quick and dirty. No positioning, resizing, formatting, etc.
    CrystalDecisions.ReportAppServer.Controllers.ISCRResultFieldController rfc;
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRTable crTable;
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRField crField;
    rfc = rasReport.DataDefController.ResultFieldController;
    crTable = rasReport.Database.Tables[0];
    crField = crTable.DataFields[2]; // Hardcoded field "Customer Name" in the Customer table from Xtreme Sample Database
    rfc.Add(-1, crField);
    // Save the report template to disk (without data)
    //object path = @"c:\documents and settings\administrator\desktop\";
    //rasReport.SaveAs("test.rpt", ref path, 0);
    //MessageBox.Show("Done!");
    For more info, see sample apps on the following link:
    http://wiki.sdn.sap.com/wiki/x/IgBmBQ
    Also, consult your 'Report Application Server .NET SDK Developer Guide" and  "Report Application Server .NET API Guide". I'd provide the appropriate links, but you do not mention the version of CR you are using...
    Thread moved to the '.NET - SAP Crystal Reports" forum.
    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]

  • Databases that Crystal Reports 9 can function with

    Hi,
    We are going to purchase Crystal Reports for the use with a new financial program that we will be purchasing.  The financial program that we will purchase allows report customization within the program if using the Crystal Reports 9 engine.  For that reason we are going to purchase Crystal Reports 9.  Otherwise we would have to create custom reports outside of this program if using a more recent version of Crystal like 2008.
    However we need to make sure Crystal Reports will work with our SQL Server 2005 database.  I tried to research a bit on Crystal Reports 9 (of which currently I know nothing about) and came across this document when doing a search https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/202ff507-281f-2b10-78b6-b6bce2668d6b.
    We also need Crystal 9.0 to work with Paradox and BDE databases.  It looks like BDE 5.1 and Paradox 8 & 9 are listed as supported platforms.  I also see SQL Server 2000 but do not see SQL Server 2005.  Will Crystal Reports 9.0 work with a SQL Server 2005 database and also what are the plans for Crystal Reports 9.0 working with future versions of SQL like 2008?
    thanks,
    JW

    According to the supported platforms document for CR9:
    (You should be able to search and fine this document via https://www.sdn.sap.com/ - you may have to create an account and login)
    Database Connectivity
    Clients:
    u2022 DB2 6.1
    u2022 DB2 7.1
    u2022 Holos 8.0
    u2022 Holos 8.5
    u2022 Informix 2000
    u2022 Lotus Notes 4.6
    u2022 Lotus Domino R5
    u2022 Microsoft SQL Server 7.0 SP3
    u2022 Microsoft SQL Server 7.0 OLAP Services (SP1)
    u2022 Microsoft SQL Server 2000 Analysis Services (SP2)
    u2022 Microsoft SQL Server 2000
    u2022 Oracle 8i
    u2022 Oracle 8.06
    u2022 Oracle 9i
    u2022 Sybase 12.5
    u2022 Sybase 12.0
    Servers:
    u2022 DB2 UDB 7.1 (Intel)
    u2022 DB2 (OLAP) 1.1, 7.1 (Fixpac 0)
    u2022 Essbase 5.02 (Patch 13a)
    u2022 Essbase 6.0, 6.1 (Patch 2)
    u2022 Essbase 6.5 (Only available with the updated
    u2022 driver, Essbhapi_650.dll.)
    u2022 Holos 8.0
    u2022 Holos 8.5
    u2022 Informix 9.14 (Intel)
    u2022 Informix 2000 (Intel)
    u2022 Lotus Domino R5 (Intel)
    u2022 Microsoft SQL Server 7.0.699 (Intel)
    u2022 Microsoft SQL Server 2000
    u2022 Oracle Server 8.0.6
    u2022 Oracle Server 9i
    u2022 Sybase Adaptive Server 12.0 7/20/2004 4:59 PM Copyright © 2004 Business Objects. All rights reserved.
    u2022 Sybase Adaptive Server 12.5
    u2022 SAP BW 2.0/Oracle Server 8.0.5 back end
    u2022 SAP BW 3.0/Microsoft SQL Server 2000 back end
    Other:
    u2022 ACT! 4.02 and ACT! 2000
    u2022 BDE 5.1
    u2022 Btrieve Pervasive SQL 7
    u2022 Btrieve Pervasive SQL 2000
    u2022 Microsoft Access 97
    u2022 Microsoft Access 2000
    u2022 Paradox 8
    u2022 Paradox 9
    u2022 Microsoft Outlook 98
    u2022 Microsoft Outlook 2000
    u2022 Microsoft Exchange 5.5

  • Crystal Report Server 2008 integration with java application

    Hi All,
    Any of you having complete document about Crystal Report Server 2008 integration with java application....like source code and what are all the jar files needed? Or tell me that the implementation is same as Crystal Report Server XI R2?
    Thanks

    Have you looked at the BusinessObjects Enterprise XI 3.x Java Developer Guide?
    [http://www.sdn.sap.com/irj/boc/sdklibrary]
    Sincerely,
    Ted Ueda

  • Crystal Report 10 Export Excel (with gridlines)

    Post Author: Angel Tam
    CA Forum: JAVA
    Hi,I am now using Crystal Report 10 with Java to export the report to excel format.  I can do it successfully but all the gridlines (border) are lost.  Is anybody know how to set this feature.  My source code is as follows.<%@ page contentType = "text/html; charset=UTF-8"%><%@ page import = "com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,                   java.util.,                   java.io.,                   javax.servlet.,                   javax.servlet.http.,                   com.crystaldecisions.sdk.occa.report.application.,                   com.crystaldecisions.sdk.occa.report.lib.ByteArray.,                   com.crystaldecisions.sdk.occa.report.exportoptions.,                   com.crystaldecisions.sdk.occa.report.lib." %><%/******************************************************************************************** *                Exporting the report to desired format and destination ********************************************************************************************/// Declare the PrintOutputControllerPrintOutputController poController;try {        // Retrieve the ReportClientDocument object from session        ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute("rptDoc");        // Clear ReportClientDocument object from session cache        session.setAttribute("rptDoc", null);                               // Get the print output controller object    poController = clientDoc.getPrintOutputController();     // Use the report documents PrintOutputController to export the report to a ByteArrayInputStream    // Change the int value to a ReportExportFormat    ByteArrayInputStream byteIS = (ByteArrayInputStream) poController.export(ReportExportFormat.MSExcel);    // Portable Document Format    String strExt = ".xls";                // Exported File Extension    String strMime = "application/vnd.ms-excel";    // Mime Type        // Create a byte&#91;&#93; (same size as the exported ByteArrayInputStream)    byte byteArray&#91;&#93; = new byte&#91;byteIS.available()&#93;;    // Copy the contents of the ByteArrayInputStream into a byteArray&#91;&#93;    int x = byteIS.read(byteArray, 0, byteIS.available());     response.reset();    // Clear out response stream            // Set the browser's mime type    response.setContentType(strMime);    response.addHeader("Content-disposition", "inline; filename=exported" + strExt);    // Use the SevletOutputStream to send the byteArray's data to the browser    response.getOutputStream().write(byteArray); } catch (Exception e) {    out.println("An error has occurred while exporting the report.<BR>" + e.toString());    out.println(e);}%>----
    I think these few lines may be useful to do the setting but I don't really how to use.  Hope somebody can help me.  Thank you.ExcelExportFormatOptions XLExpOpts = new ExcelExportFormatOptions();XLExpOpts.setShowGridlines(true);ExportOptions exOpts = new ExportOptions();exOpts.setFormatOptions(XLExpOpts);exOpts.setExportFormatType(ReportExportFormat.from_int(ReportExportFormat._MSExcel));Angel

    Post Author: Angel Tam
    CA Forum: JAVA
    Hi,I am now using Crystal Report 10 with Java to export the report to excel format.  I can do it successfully but all the gridlines (border) are lost.  Is anybody know how to set this feature.  My source code is as follows.<%@ page contentType = "text/html; charset=UTF-8"%><%@ page import = "com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,                   java.util.,                   java.io.,                   javax.servlet.,                   javax.servlet.http.,                   com.crystaldecisions.sdk.occa.report.application.,                   com.crystaldecisions.sdk.occa.report.lib.ByteArray.,                   com.crystaldecisions.sdk.occa.report.exportoptions.,                   com.crystaldecisions.sdk.occa.report.lib." %><%/******************************************************************************************** *                Exporting the report to desired format and destination ********************************************************************************************/// Declare the PrintOutputControllerPrintOutputController poController;try {        // Retrieve the ReportClientDocument object from session        ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute("rptDoc");        // Clear ReportClientDocument object from session cache        session.setAttribute("rptDoc", null);                               // Get the print output controller object    poController = clientDoc.getPrintOutputController();     // Use the report documents PrintOutputController to export the report to a ByteArrayInputStream    // Change the int value to a ReportExportFormat    ByteArrayInputStream byteIS = (ByteArrayInputStream) poController.export(ReportExportFormat.MSExcel);    // Portable Document Format    String strExt = ".xls";                // Exported File Extension    String strMime = "application/vnd.ms-excel";    // Mime Type        // Create a byte&#91;&#93; (same size as the exported ByteArrayInputStream)    byte byteArray&#91;&#93; = new byte&#91;byteIS.available()&#93;;    // Copy the contents of the ByteArrayInputStream into a byteArray&#91;&#93;    int x = byteIS.read(byteArray, 0, byteIS.available());     response.reset();    // Clear out response stream            // Set the browser's mime type    response.setContentType(strMime);    response.addHeader("Content-disposition", "inline; filename=exported" + strExt);    // Use the SevletOutputStream to send the byteArray's data to the browser    response.getOutputStream().write(byteArray); } catch (Exception e) {    out.println("An error has occurred while exporting the report.<BR>" + e.toString());    out.println(e);}%>----
    I think these few lines may be useful to do the setting but I don't really how to use.  Hope somebody can help me.  Thank you.ExcelExportFormatOptions XLExpOpts = new ExcelExportFormatOptions();XLExpOpts.setShowGridlines(true);ExportOptions exOpts = new ExportOptions();exOpts.setFormatOptions(XLExpOpts);exOpts.setExportFormatType(ReportExportFormat.from_int(ReportExportFormat._MSExcel));Angel

  • Crystal Reports has stopped working with Windows 7 and demo database

    I'm trying to get back up to speed on Crystal Reports after 10 years away. I'm running Crystal Reports 2008 Standard with the just-released Service Pack 3 (same symptom with SP2).
    So I downloaded the demo database and tried creating a new report. No problems creating a simple customer list. When I add the Orders table and link the CustomerID columns and then add the OrderDate column to the report, everything works fine. But as soon as I add the OrderID or OrderDate column, the application crashes.
    Culprit seems to be MSVCR80.dll. Here's the log:
    Faulting application name: crw32.exe, version: 12.3.0.601, time stamp: 0x4bd05d31
    Faulting module name: MSVCR80.dll, version: 8.0.50727.4927, time stamp: 0x4a2752ff
    Exception code: 0xc000000d
    Fault offset: 0x00008aa0
    Faulting process id: 0x1944
    Faulting application start time: 0x01cb0139cfafeb40
    Faulting application path: C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\crw32.exe
    Faulting module path: C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4927_none_d08a205e442db5b5\MSVCR80.dll
    Report Id: 3b28c990-6d2d-11df-b9d8-00080d72c9f2
    Suggestions? Thanks in advance.

    Hello,
    It may be that something was "fixed" and our default xml file falls out of the Standards now.
    Are you wanting to connect to SQL or XML?
    Go to Microsoft's site and search for C++ distribution and download and install the recommended one for windows 7. It may be that part is corrupt or our installer thinks it is there. Try doing a Repair install and custom options to select all of the DB drivers and exports types to see if that resolves the issue.
    Thank you
    Don

  • Crystal Report XI R2 compatablity with SAP Integration kit

    Hi All,
    we have suggested to one of our customer  the Customized pack of BO XI Edge series which include the licensing of Xcelsius , WEBI , Universe designer, SAP Integration kit and Live office...
    He dont want to pay extra for taking the license for cryatal report 2008 as they already using the Crystal Report XI R2 version which they use to do reporting on non SAP data.
    My question is :
    1 - Now they want to do reporting ove SAP data using the existing CR solution they have is it possible ??
    2- Will the integration kit support the CR XI R2 version ??
    3- Can he publish the Crystal Report created by CR XI R2 to the Business Object Edge Series plateform ??
    They just want to use CR to do reporting on data from R/3 side .
    Kindly suggest.
    Regards,
    Mishra,Vibhav.

    Dear Ingo,
    Thanks for the reply.
    Actally we have suggested to our client the latest Edge Series Standard pack solution , excluding the crystal report licensing.
    My question is will the integration kit which comes along with the Edge series will support the existing Crystal Report XI R2 and can the it be integrated with BOE(can he publish the reports created with the earlier version to the Business Object plateform).
    If the above sceanario is not possibe then we have to purchse the older version of integartion and i doubt if we can purchse it stand alone in that case we would be having two integration kits running to solve the purpose.
    Kindly suggest.
    Warm regards,
    Mishra Vibhav

  • Crystal Reports Server Error - Unable to cast object of type

    Hi Everyone,
    Not sure if this is the right place to post this question but couldn't find a Crystal Reports Server section.
    After doing a windows update on my crystal reports server the following error now occurs when trying to log into .Net InfoView -
    An error has occurred: Unable to cast object of type 'CrystalDecisions.Enterprise.InfoObject' to type 'BusinessObjects.Enterprise.Desktop.InfoView'.
    I found the following article which I followed and re-installed the .net components as well as ensured all services are enabled.
    Article: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_boj_bip/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233303335333433323337%7D.do
    The error still occurs.
    I did some further investigation and found that a similar error occurs in the Admin Console when I try and open the Crystal Report DataSources.
    This is the error page that comes up
    Server Error in '/businessobjects/Enterprise11/WebTools' Application.
    Unable to cast object of type 'CrystalDecisions.Enterprise.InfoObject' to type 'CrystalDecisions.Enterprise.Desktop.Report'.
    +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.InvalidCastException:
    Unable to cast object of type 'CrystalDecisions.Enterprise.InfoObject' to type 'CrystalDecisions.Enterprise.Desktop.Report'.+
    Source Error:
    +The source code that generated this unhandled exception can only be shown when compiled in debug mode.
    To enable this, please follow one of the below steps, then request the URL:+
    1. Add a "Debug=true" directive at the top of the file that generated the error. Example:
      <%@ Page Language="C#" Debug="true" %>
    or:
    2) Add the following section to the configuration file of your application:
    <configuration>
       <system.web>
           <compilation debug="true"/>
       </system.web>
    </configuration>
    +Note that this second technique will cause all files within a given application to be compiled in debug mode.
    The first technique will cause only that particular file to be compiled in debug mode.+
    +Important: Running applications in debug mode does incur a memory/performance overhead.
    You should make sure that an application has debugging disabled before deploying into production scenario.+
    Stack Trace:
    InvalidCastException: Unable to cast object of type 'CrystalDecisions.Enterprise.InfoObject' to type 'CrystalDecisions.Enterprise.Desktop.Report'.
       +CrystalDecisions.Enterprise.WebContent.WebSamples.DataSources.Common.datasourceInfoFromReports(ArrayList reports) 226
       +CrystalDecisions.Enterprise.WebContent.WebSamples.DataSources.Datasources.Main() 1821
       +ASP.websamples_datasources_datasources_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) 531
       +System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) 98
       +System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) 20
       +System.Web.UI.Page.Render(HtmlTextWriter writer) 26
       +System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) 25
       +System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) 121
       +System.Web.UI.Control.RenderControl(HtmlTextWriter writer) 22
       +System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 2558
    Version Information: Microsoft .NET Framework Version:2.0.50727.1433; ASP.NET Version:2.0.50727.1433
    Any information on how I can fix this is greatly appreciated.
    Regards
    Paul
    Edited by: Paul Griscti on Sep 3, 2008 2:52 AM

    I'd try creating a new Application Pool just for running businessobjects and crystalreportviewers11 and nothing else. 
    Although the apps are .NET, it uses COM Interop for functionality, so using a common app pool with other versions will collide.
    Beyond that - if you have a SAP Business Objects support contract - you might open a new SAP Incident ticket.
    Sincerely,
    Ted Ueda

  • Crystal report Export/Print issue with Non default websites

    Hello ,
    I have an issue and its driving me nuts.
    My problem i guess with the crystal reports. Might also be with IIS.
    We have developed an website on VS2008. This website is configured on IIS 8.5
    The server on which iis8.5 runs is a virtual server.
    I have configured the website to run as two different virtual directories as mentioned below;
    1) To run under default website (servername/virtualdirectory)
    2) To run under complete separate website (www.abc.com/virtualdirectory)
    if i  run crystal report using the servername/virtualdirectory, then the report is rendered fine and i can export the results also to any format and print successfully.
    But when i run the crystal report using www.abc.com/virtualdirectory, then the report renders fine but i cannot export the results nor print. Nothing happens when i click the export button.
    Any help will be highly appreciated.
    Thanks
    Abdul Aleem

    In addition to Don's suggestion. Remember that almost any action in the viewer will cause a post back - including clicking on the export button. If the report is not in session, the post back may fail and nothing will happen. See the following code on how to place a report object into a session:
    1985571 - How to use sessions in web applications using the Crystal Reports viewer (the complete code)
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Crystal Reports xi r2 integrating with vs2005

    Hi,
    I'm having a problem getting these two integrated and working properly with all the functionality that I need.
    I installed vs2005 and then CRXIR2, and now in vs2005 when I have a report open, I have 2 Crystal Report tabs at the top and in each the options are repeated 4 times for each menu item, makes for a very cluttered menu.
    Also, when I an existing report to a vb2005 asp project in the property pages/web config it adds 2 assemblies for each items, one for version 10.2.3600 and one for 11.5.3700. Is there a way that I can eliminate this.
    And lastly, I use ODBC connections to a database and with the 10.2.3600 assemblies it was disconnecting right away and closing the session after the queries, while the new 11.5.3700 ones do not seem to kill the sessions and fills up the connections until I manually go out and clear them up.
    I know thats a lot to deal with, but I'm sure that they are all related.
    Thank you very much for your help.
    James

    Hi James,
    Microsoft released an update for VS.NET 2005 which broke the integration of Crystal XI R2 with .NET 2005 when applied.  Just do an uninstall/reinstall of Crystal XI R2 and that should fix the multiple tab and drop down issue as well as it putting in both 10.2 and 11.5 assemblies.
    You should probably create a new thread for the 2nd problem if it persists after the uninstall/reinstall.
    Jason

  • Crystal Report 2008  is compatible with Crystal Report 9?

    I'm using VB6 and VS 2003 for application development and using Crystal Report 9 for reporting. Thanks.

    I understand that the question is;
    Can I run reports created in CR 2008 with CR 9?
    Answer is yes - as long as - you do not use any new features of CR 2008;
    cascading params, dynamic params, flash, etc.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Multi pass bursting of a Crystal report on business view with a bex query

    In BO CMC, we have a group with a list of user.
    The idea is to burst (via the multi pass bursting method) a Crystal report for this list of user with the constraint that this report should only contains data of the store linked to the user.
    Our data comes from a SAP BI cube.
    The link between a Store and a User comes from an other system.
    We have build a bex query and use it as a data source of a Crystal Data Foundation.
    In this Data Foundation we have an other table storing the user ID and the Store ID.
    These 2 tables are linked in this Data Foundation on the Store ID.
    Business element and Business View have also been created on top of this Data Foundation.
    We have impletemented a filter in this Data Foundation to filter out data on the user id. This user id will be filled when bursting the report for all requested users thanks to this function :.
    As a user is linked to one store, the data foundation will filter the data coming from the bex query and show only the data of the user's store.
    We have build a crystal report using the business view created above as data source. We have made some test on a small amount of data and it works, data are correctly filter out and the reports shows only the data from one store.
    But the problem is that we have a lot of stores (more than 600) and doing this way implies that the bex query will always return the data for all the stores as the filter will occurs in the data foundation and not on the bex query.
    We need to find a way to make the bex query returning only the data of the store linked to the user for which we burst the report.
    As we have more than 600 stores this was an idea to avoid managing more than 600 under BO groups or more than 600 different filters.
    This solution do not work when the bex query result set is too large.
    Does anyone has an idea on how to implement such "dynamic" filter in the bex query? The parameter is the user ID but the filter to be applied on the bex query is on the store ID.
    We are under BO XI release 2, Crystal XI Release 2 and we have installed the BO release 2 integration kit for SAP

    Hi,
    what about setting up the data level security in BW ?
    Ingo

  • Code39Wide-Regular Fonts in the crystal report cannot be embedded with PDF

    Hello ,
    Good Day!
    We are using Code39Wide-Regular Fonts in the crystal report for bar codes. While converting this report to the PDF format from Crystal viewer, we are getting the following error. It seems like this particular font cannot be embedded with PDF format.
    Error - Failed to Export the report
    Code39Wide-Regular- Font is not allowed to be embeded in document,
    File - F:\Apps\9.40\Crystal\sfc\jobprtx.rpt
    How can we solve this issue permanantly (Not a workaround )?
    Thanks & Regards,
    Philip P Oommen | Consona | 0091-80-40173801 |

    Hi Philip, Due to licensing issues CR cannot embed licensed fonts in a PDF file. Your only work around is to export the report to editable Word format and then open the file in Word 2007 and get the export to PDF plug-in available from Microsoft.
    This will not be fixed in this or upcoming version of CR.
    Thank you
    Don

  • How to show Crystal Reports in BW system to Business Object XI R3 Portal

    Hi All
    I have some Crystal Reports in BW system and want to call them on Business Object XI R3 Portal.
    Lets say that there are x number of reports in the system.
    I need to show them on BO Portal by passing some parameters.
    I am not able to start that how I can show them.
    I followed one tutorial on Cystal Report for Eclipse and I was able to make a Crysral Report for Web Application.That was deployed successfully. I got one URL to run that.
    But now if I want to add this link in my existing BO Portal how can I do that.
    Can anyone help me in that, that how to proceed.
    Thanks & regards

    We don't allow customizing our pages. Any patches installed will over write any changes you do. Create your own user interface.

Maybe you are looking for

  • Chrome PDF Rendering Issue

    Hello all, I've been noticing some odd behavior in Chrome when trying to render a PDF I've exported from InDesign; attached is a screenshot of the symptom, and if you take the following link, you can also see it firsthand (though occasionally it will

  • Premiere pro crashes when opening project

    Premiere pro project crashes when opening. I have an imac running OS 10.7.3 (8GB Ram, AMD Radeon HD 6970 2048mb) and have Premiere Pro 5.5.2. I have had 2 projects that I have worked on for hours and saved numerous times and then when I closed pp and

  • PXE Boot - Installation system files...

    Hi there, I need some clarity on the following please. I am applying the October 2012 ZENworks Imaging Driver Update. Before the update all works fine and it goes through the pxe boot process as follows. Pxe boots fine and I get the pxe menu. Once I

  • Macbook retina 15 partitioning, vital or useless?

    Going to buy rMBP 15" with 512Gb ssd and switch from Linux to Mac. Friend of mine advised to partition hard drive right after buying and create two partitions. One for OS and Applications and second for home folder. Motivating that it would be easy t

  • Birthdays on the 5300

    Is there a way of getting the birthdays in the contacts to show in the calendar on my 5300 ? N96-1 + 8G SD~Software Version 30.033~Software Version Date 18-06-09~Type RM-247~P/C 0543713~T Mobile UK