Can JDeveloper work with Crystal Report?

I try to open Crystal Report with Jdeveloper, but I could not. Do anyone know if JDeveloper worked with Crystal Report. If anyone knows how, please show me. Thank you in advance.

For example, I have a report name "report1.rpt" which was saved under "C:\oracle\Jdev9052\jdev\mywork\HR\HR\public_html". Beside that I also have all the required jar files and folder crystalreportviewer added to my project. But everytime I run it, I received "The page cannot be displayed". Please help me to point out the problem. Thanks.
<%@ page import= "com.crystaldecisions.report.web.viewer.*,
com.crystaldecisions.sdk.occa.report.data.*" %>
<%@ page import="com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory,
com.crystaldecisions.sdk.occa.report.reportsource.IReportSourceFactory2,
com.crystaldecisions.sdk.occa.report.reportsource.IReportSource" %>
<%
// This is the database logon section of this report
IReportSourceFactory2 rptSrcFactory = new JPEReportSourceFactory();
String report = "report1.rpt";
IReportSource reportSource = (IReportSource) rptSrcFactory.createReportSource(report, request.getLocale());
CrystalReportViewer viewer = new CrystalReportViewer();
viewer.setName("Test Report");
viewer.setReportSource(reportSource);
// now provide the viewer with the connection information
response.getOutputStream().flush();
viewer.processHttpRequest(request, response, getServletConfig().getServletContext(), out);
viewer.dispose();
%>
-- A part of the config.xml file
<?xml version="1.0" encoding="utf-8"?><CrystalReportEngine-configuration>
<!--<reportlocation>../..</reportlocation>-->
<timeout>10</timeout>
<ExternalFunctionLibraryClassNames>
          <classname></classname>
          <classname></classname>
</ExternalFunctionLibraryClassNames>

Similar Messages

  • How to work with crystal reports and boe3.1

    Hello!!! Forums,
             Please suggest me some tutorials and sample code to work with crystal reports that can be viewed in boe3.1. What software to use to deveelop reports? How to view it in boe3.1?
    Regards,
    grace

    At the top of the forums you will see posts that say read this first, read those first.
    [BOE Enterprise|Read Before Posting - Where to find Business Objects .NET SDK Resources;
    [Crystal Reports .NET|Read Before Posting - Where to find Crystal Reports .NET SDK resources;
    Jason

  • Has any body work with Crystal Report XI and JDeveloper 10.1.3 ?

    Hi All,
    We want to use Crystal Report XI as our reporting tools and integrate it with our jsp/jspx application developed with JDeveloper 10.1.3.
    Has any body succesfully done this kind of integration ?
    Could you please share it with me ?
    Thank you for your info,
    xtanto

    Hi friends,
    I use Crystal Reoprt XI (release 1) with JDev 10.1.3, never try Crystal 10 with JDev.
    Here is what I do :
    1. Install CR XI on the same machine with JDev 10.1.3.
    2. Modify CRConfig.XML on folder : C:\Program Files\Common Files\Business Objects\3.0\java on three places :
    <JavaDir>D:\JDev1013\jdk\bin</JavaDir>
    <Classpath>D:\JDev1013\jdbc\lib\ocrs12.jar;D:\JDev1013\jdbc\lib\ojdbc14.jar;D:\JDev1013\jdbc\lib\ojdbc14dms.jar;D:\JDev1013\jdbc\lib\orai18n.jar; .... [original classpath]
    <JDBCURL>jdbc:oracle:thin:@oracle.sas.co.id:1521:ORCL</JDBCURL>
    <JDBCClassName>oracle.jdbc.driver.OracleDriver</JDBCClassName>
    <JDBCUserName>myuserid</JDBCUserName>     <JNDIURL></JNDIURL>
    3. Create the report using Crystal XI, USE JDBC CONNECTION, and it takes about 12-20 minutes to connect, don'y know why :)
    ( now the integration part )
    4. Create a project for the report in our apps workspace (e.d : ViewController)
    5. Copy these jar files below to D:\..\ViewController\public_html\WEB-INF\lib
    (I got the files from Crystal Installation)
    04/03/2006 09:27 AM 666,774 CrystalCharting.jar
    03/26/2006 12:23 AM 2,163 CrystalCommon.jar
    04/03/2006 09:27 AM 94,137 CrystalContentModels.jar
    04/03/2006 09:30 AM 519,003 CrystalExporters.jar
    04/03/2006 09:27 AM 60,468 CrystalExportingBase.jar
    04/03/2006 09:26 AM 561,021 CrystalFormulas.jar
    04/03/2006 09:26 AM 390,049 CrystalQueryEngine.jar
    04/03/2006 09:28 AM 1,934,849 CrystalReportEngine.jar
    04/03/2006 09:25 AM 413,455 CrystalReportingCommon.jar
    09/08/2003 02:42 PM 3,915,966 icu4j.jar
    04/03/2006 09:29 AM 135,232 jrcerom.jar
    02/10/2006 10:39 AM 698,542 jsf-impl.jar
    03/26/2006 12:23 AM 8,680 keycodeDecoder.jar
    05/11/2004 07:22 PM 352,668 log4j.jar
    03/26/2006 08:33 AM 474,429 MetafileRenderer.jar
    04/03/2006 08:47 AM 369,503 rasapp.jar
    04/03/2006 08:46 AM 784,065 rascore.jar
    03/16/2006 09:35 AM 699,443 ReportViewer.jar
    04/03/2006 09:25 AM 95,381 rpoifs.jar
    04/03/2006 08:46 AM 21,128 serialization.jar
    06/17/2006 01:41 PM 393,259 standard.jar
    10/02/2003 06:29 PM 3,777 URIUtil.jar
    02/28/2006 10:01 AM 48,279 webreporting-jsf.jar
    03/07/2006 08:50 AM 778,348 webreporting.jar
    02/20/2004 02:01 PM 1,010,806 xercesImpl.jar
    02/20/2004 02:01 PM 124,724 xml-apis.jar
    6. Right click the project, project properties, Libraries, Add Jar / Directories,
    Add all the jar files from previous step.
    7. Copy CRConfig.XML to folder D:\..\ViewController (project folder)
    ( this CRConfig.XML is the one that I have not modified, the original one. )
    Please check, you must have this on the file :
    <reportlocation>.</reportlocation>
    8. Then create a Folder e.g : reports under WEB-INF :
    D:\..\ViewController\public_html\WEB-INF\reports, then copy all reports created on step 3 on to this folder.
    9. create a jsp to call the report, here is sample of my JSP :
    <%@ page
    contentType="text/html;charset=windows-1252"
    isELIgnored="true" %>
    <%@page import="com.crystaldecisions.reports.sdk.*"%>
    <%@page import="com.crystaldecisions.sdk.occa.report.lib.*"%>
    <%@page import="com.crystaldecisions.sdk.occa.report.exportoptions.*"%>
    <%@page import="com.crystaldecisions.report.web.viewer.*"%>
    <%@page import="com.crystaldecisions.sdk.occa.report.reportsource.*" %>
    <%@page import="com.crystaldecisions.sdk.occa.report.data.*" %>
    <%@page import = "java.util.*" %>
    <%@page import = "view.util.JSFUtils" %>
    <%@page import = "oracle.jbo.domain.Number" %>
    <%
    //Use the relative path to the report; the physical or full qualified URL cannot be used.
    //String reportName = "D:/DemoCrystal/Project/public_html/WEB-INF/Report/OrderID2.rpt";
    //String reportName = "D:/DemoCrystal/Project/public_html/WEB-INF/Report/test2.rpt";
    //String reportName = "D:/DemoCrystal/Project/public_html/WEB-INF/Report/invoice.rpt";
    String reportName = "../reports/invoice.rpt";
    String userName = "myuserid";
    String password = "mypassword";
    String compId = (String)JSFUtils.getFromSession("compId");
    String docId = (String)JSFUtils.getFromSession("docId");
    Number noDokumen = (Number)JSFUtils.getFromSession("noDokumen");
    String status = (String)JSFUtils.getFromSession("status");
    System.out.println("from rptInvoice.jsp " compIddocId + " " + noDokumen.toString()+status);
    try
    //Open report.
    ReportClientDocument reportClientDoc = new ReportClientDocument();
    reportClientDoc.open(reportName, 0);
         session.setAttribute("reportSource", reportClientDoc.getReportSource());
    // Conn info
    ConnectionInfos oConnectionInfos = new ConnectionInfos();
    ConnectionInfo oConnectionInfo = new ConnectionInfo();
    oConnectionInfo.setUserName(userName); //Set username and password for the report's database
    oConnectionInfo.setPassword(password);
    oConnectionInfos.add(oConnectionInfo); //Add object to collection
    //Create a Fields collection object to store the parameter fields in.
    Fields oFields = new Fields();
    // THE PARAMETERs.
    //Integer numberValue = new Integer(2166);
    //String stringValue = "IV";
    //Set all of the parameter values using the utility function.
    setDiscreteParameterValue(oFields, "Nomor_Invoice", "", new Integer(noDokumen.intValue()));
    setDiscreteParameterValue(oFields, "Kode_Invoice", "", docId);
    setDiscreteParameterValue(oFields, "Compid", "", compId);
    setDiscreteParameterValue(oFields, "Status", "", status);
    //System.out.println("from view-controller report jsp v2.2");
    //Set the export options to export to the format of choice.
    ExportOptions oExportOptions = new ExportOptions();
    oExportOptions.setExportFormatType(ReportExportFormat.PDF);
    ReportExportControl oReportExportControl = new ReportExportControl();
    oReportExportControl.setExportOptions(oExportOptions);
    oReportExportControl.setExportAsAttachment(false);
    Object reportSource = session.getAttribute("reportSource");
    oReportExportControl.setReportSource(reportSource);
    oReportExportControl.setDatabaseLogonInfos(oConnectionInfos);
         oReportExportControl.setParameterFields(oFields);
    //Export the report
    oReportExportControl.processHttpRequest(
    request, response, getServletConfig().getServletContext(), null);
    catch(ReportSDKException e)
    out.print(e);
    %>
    <%!
    * Utility function to set values for the discrete parameters in the report. The report parameter value is set
    * and added to the Fields collection, which can then be passed to the viewer so that the user is not prompted
    * for parameter values.
    private void setDiscreteParameterValue(Fields oFields, String paramName, String reportName, Object value) {     
    //Create a ParameterField object for each field that you wish to set.
    ParameterField oParameterField = new ParameterField();
    //You must set the report name.
    //Set the report name to an empty string if your report does not contain a
    //subreport; otherwise, the report name will be the name of the subreport
    oParameterField.setReportName(reportName);
    //Create a Values object and a ParameterFieldDiscreteValue object for each
    //object for each parameter field you wish to set.
    //If a ranged value is being set, a ParameterFieldRangeValue object should
    //be used instead of the discrete value object.
    Values oValues = new Values();
    ParameterFieldDiscreteValue oParameterFieldDiscreteValue = new ParameterFieldDiscreteValue();
    //Set the name of the parameter. This must match the name of the parameter as defined in the
    //report.
    oParameterField.setName(paramName);
    oParameterFieldDiscreteValue.setValue(value);
    //Add the parameter field values to the Values collection object.
    oValues.add(oParameterFieldDiscreteValue);
    //Set the current Values collection for each parameter field.
    oParameterField.setCurrentValues(oValues);
    //Add parameter field to the Fields collection. This object is then passed to the
    //viewer as the collection of parameter fields values set.
    oFields.add(oParameterField);
    %>
    10. have a try and HTH :)
    xtanto.

  • How can I get Visual Studio 2010 to work with Crystal Reports?

    Hi,
    My office upgraded to Windows 7 and Visual Studio 2010 and now I can no longer write front end programs to Crystal Reports version 10.   Does anybody know if there is a a workaround?   Also, our version of Crystal Reports is 32 bit but the new desktop machine I have is 64 bit so there may be issues accessing the Crystal Reports DLLs which are now located in the Programs (x86) folder.
    It's all such a gigantic mess that I don't even know where to begin.   Visual Studio 2008 had Crystal Reports in it so it was real easy.
    Dave

    Try searching first before posting. CR for Visual Studio 2010 download is available on the OverView tab. It's a free install, we don't ship in VS now, it's still a plug in so you can't use VS 2010 Express version, MS doesn't support plugins in Express versions.
    Runtime files will be version 13 and should update your app without issues.
    Install VS 2010/2012/2013 first and then run the first link in the download page. Don't instlal just the runtime redist MSI, it will not integrate into VS.
    Also, set your Project for x86 and not any CPU and use the full .NET Framework and not the client version.
    Don

  • Does CR 2008 work with Crystal Reports Server 11.5

    I currently have CRS 11.5 and am using CRXI. I would like to upgrade CRXI to CR2008 (visual advantage), but not upgrade CRS at this time. Does CR2008 work with CRS11.5? Any known issues to be aware of?
    Thanks,
    Jsr

    Unfortunately, CR 2008 is compatible with CR Server 2008 only You could refer to the [CR Server 2008 Supported Platforms|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90e0d1a4-ae34-2b10-198c-f309bfa21e91]
    Kindly refer to the [Crystal Reports Server XI Release 2 Info|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/20d9fe63-396c-2b10-e7a8-efddd1a910f6]
    Hope it helps !!

  • Anyone suggests a barcode font paid/free that really works with Crystal Report?

    Hi fellow B1 Users,
    I am having difficulty producing a print of crystal label report that produces barcodes which can be scanned.
    It seems like I have not been lucky getting barcode fonts and its dimensions (size with height and width) right so it can be scanned by simple
    barcode scanners.
    Anyone got their crystal label to be scan-able?
    Please suggest.
    Thank you,
    Syed

    Hi Gordon,
    Good to see you still active in SAP B1 forums.
    I tried fonts such as CCode39.
    However, I got lucky this time, the font IDAutomationHC39M worked for me, size 18.
    Did not have to do much setting on barcode scanner though I have done it before
    Thank you.

  • Why we need ABAP if we can connect With Crystal Reports to SAP R/3

    Hi,
        I am new to Crystal reports.I came to know that we can connect SAP R/3 by using SAP InfoSet,SAP Table Cluster and Function connectivity in Crystal Reports.So we can generate reports for SAP R/3 database with out need of ABAP.So why we need to go ABAP module.Is there any disadvantages if we dont use ABAP to generate reports or we can use always Crystal Reports to generate Reports for R/3 database?

    Hi,
    it is correct that you can built a Crystal Report without the need to use ABAP, but we have lots of customers that have invested over the years into ABAP Routines and Crystal REports is able to leverage those as well. So with Crystal Reports you have the choice to leverage existing ABAP Functions as a source for reporting - which might help to leverage complex processing on the backend - or to use InfoSets and tables.
    regards
    Ingo

  • Report and Field Explorer dont work in Crystal Reports 2008

    Hi
    I am using the following versions of Crystal Reports:
    Crystal Reports 2008  (Service Pack 1)
    CR Developer
    Version 12.1.0.892
    Product Type: Full
    Target environment: .NET 3.5 windows forms and asp.net application
    Since a couple of days, i can no longer access the field explorer nor the report exlorer. Anything else seems to be working fine. I first thought these windows were somewhere hidden behind another window but as much as i searched, i didnt succed in finding them :-(.  Our product has a valid licence and is registered, by the way.
    My question is now, what do i have to do to get my field/report explorer again. Maybe, installing the latest service pack had an influence, but i cannot tell for sure.
    Any help is appreciated
    Thanks in advance

    Please note that this forum is dedicated to topics related to custom application development or deployment with Crystal Reports in .Net. This includes full versions of Crystal Reports as well as those versions of Crystal Reports bundled with Microsoft Visual Studio .Net.
    Your query appears to concern the CR designer. As such, please post your query to the Crystal Reports Design Forum:
    SAP Crystal Reports
    Ludek

  • Print layout different with crystal report 2008 runtime

    Hi,
    I have reports which I print on a pre printed stationary. With Crystal report 11.5 run time it works fine.
    Now I am using Crystal Report 2008 run time and with this I found that layout on the print is different than the actual layout in the design.
    The print with CR 2008 run time is not exactly matching with the pre printed stationary. Whereas it is working fine with the 11.5 run time.
    Can anyone please help?
    Thanks,
    Abhijit Gorhe

    hi,
    you can verify the settings
    File -> Page Setup
    - Printer Options
    - Page Options
    - Margins
    Regards,
    Vamsee

  • Invalid export DLL or export format" with Crystal Reports 2008 to Excel xls

    We are experiencing the same issue as reported in the sticky thread. I answered in that thread, but thought that I woudl open a new thread to keep track of this issue.  I can give you the responses to your questions you have requested in that thread:
    Server Operating System - MS Windows Server 2003 R2 Enterprise Edition SP2
    Version of the .NET Framework - MS .NET Framework 3.5 SP1
    How did you deploy? - Installed CR 2008 SP1 runtime with msi package
    If you deployed with CRRuntime_12_0_mlb.msi - what was the date of the file and its size? CRRuntime_12_1_mlb.msi dated Sept. 16, 2008 12:55:00 PM, size: 56,717,824 bytes
    What is the file version of crpe32.dll on your server? You'll find this in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 directory - File was created 9/13/08 11:21AM, 9451KB File Version: 12.1.0.882
    How many libpng10.dll files are on your system? List all instances. - 1 instance is on the system located in C;\Program Files\Business Objects\Business Objects Enterprise 12.0\win32_x86 directory. It is dated 9/13/08 8:52:26AM 132KB version 1.0.30.1
    Any additional comments - We have tried to export to PDF and this works successfully. However, we can not export to xls or rft formats.
    CRXF_XLS.dll is 905KB 9/13/08 9:38AM Version 12.1.0.882
    CRXF_RTF.dll is 509KB 9/13/08 9:35AM Version 12.1.0.882
    We also have the CR XIR2 server runtime installed side by side on the server as we migrate from CR 2008 to CR XIR2 SP4 ( where this function does work currently).
    Please let me know if you need anything additional.
    Phil
    "Invalid export DLL or export format" with Crystal Reports 2008
    Posted: Sep 27, 2008 12:36 AM       E-mail this message      Reply 
    I've included this sticky because we are seeing many posts in this forum regarding the error Invalid export DLL or export format when exporting to Excel and RTF in .NET applications using the Crystal Reports 2008 .NET SDK.
    Issue
    Exporting a Crystal Report to Excel or RTF format
    .NET application using the Crystal Reports 2008 runtime (version 12.0)
    error Invalid export DLL or export format
    We've been doing some testing in-house and haven't reproduced this behavior. In order to figure this issue out we will need your help. If you are getting this error please reply to this post with the following information:
    Server Operating System
    Version of the .NET Framework
    How did you deploy?
    If you deployed with CRRuntime_12_0_mlb.msi - what was the date of the file and its size?
    What is the file version of crpe32.dll on your server? You'll find this in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 directory
    How many libpng10.dll files are on your system? List all instances.
    Any additional comments
    What We Know
    The error invalid export DLL or export format may occur when exporting to Excel and RTF formats in .NET applications utilizing the Crystal Reports 2008 runtime (v 12.0)
    Other export formats like Adobe PDF, Crystal Reports, CSV all export with no error
    Some customers have resolved this by adding C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 to their environment path variables
    This may have something to do with the file libpng10.dll. Both crxf_xls.dll and crxf_rtf.dll are dependent on it.
    Thanks in advance for your co-operation. We hope to figure out what is causing this issue soon.

    Hi,
    I am also having the same problem, except that I am not using Crystal Report 2008 runtime but the actual Crystal Report 2008 installation on Windows XP SP2 with VS Studio 2005 (VC++). MS .NET Framework 2.0.
    Cyrstal Report XIR2 was installed on the same machine but uninstalled before installing Crystal Report 2008.
    So only one instance of libpng10.dll and found in C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86
    Crpe32.dll        3/1/2008 version 12.0.0.683
    Crxf_xls.dll       3/1/2008 version 12.0.0.683
    Crxf_rtf.dll         3/1/2008 version 12.0.0.683
    crdb_oracle.dll  3/1/2008 version 12.0.0.683
    libpng10.dll       3/1/2008 version 1.0.30.0             122880 bytes
    There is no problem for exporting to pdf, html, word, csv, Crystal Report. If I create a testing report without any data from database, the testing report can then be exported also to rtf and xls.
    Oracle 11.1.0.6 is the DB for the reports.
    Adding C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 to the path did not resolve my problem.
    Any idea to fix this issue?
    Thanks
    Kin H Chan

  • Query Engine report error with Crystal Report 9 And MS SQL SErver 2000

    Hi,
    Currently I m doing a report with Crystal Report 9 and MS SQL as back End.I used a stored procedure to fetch data from DB.The Stored procedure works properly with query analyzer . But when I take report through application
    "Table Not Found" Error is coming.Later I Found that In stored procedure for certain conditions only this error comes.But I cant resolve it.
    Can any One check any pblm with this query
    ELSE IF ISNULL(@intSourceID,0) = 10 Or ISNULL(@intSourceID,0) = 11 Or ISNULL(@intSourceID,0) = 12 Or ISNULL(@intSourceID,0) = 13 Or ISNULL(@intSourceID,0) = 14  
    BEGIN
    IF ISNULL(@intSchemeID,0) <> 0  
    BEGIN
    Select* From table
    END 
    ELSE IF ISNULL(@intSchemeID,0) = 0  
    BEGIN
    Select 
    END 
    END
    When I comment the above codes , report works fine....
    Can any one help me....plz....I m in such a critical situation...

    Hi,
    Currently I m doing a report with Crystal Report 9 and MS SQL as back End.I used a stored procedure to fetch data from DB.The Stored procedure works properly with query analyzer . But when I take report through application
    "Table Not Found" Error is coming.Later I Found that In stored procedure for certain conditions only this error comes.But I cant resolve it.
    Can any One check any pblm with this query
    ELSE IF ISNULL(@intSourceID,0) = 10 Or ISNULL(@intSourceID,0) = 11 Or ISNULL(@intSourceID,0) = 12 Or ISNULL(@intSourceID,0) = 13 Or ISNULL(@intSourceID,0) = 14  
    BEGIN
    IF ISNULL(@intSchemeID,0) <> 0  
    BEGIN
    Select* From table
    END 
    ELSE IF ISNULL(@intSchemeID,0) = 0  
    BEGIN
    Select 
    END 
    END
    When I comment the above codes , report works fine....
    Can any one help me....plz....I m in such a critical situation...
    Refer the above statement highlighted in BOLD. That statement is WRONG. Select what ???? Try any one of the below statement,
    select ''
    --or
    select 0
    --or
    select null
    Regards, RSingh

  • Java Plugin Viewer with Crystal Reports 2008

    Hello,
    I am trying to use the Java Plugin Viewer with Crystal Reports, but I have some problems. The ActiveX Viewer works well, but as I want to use the reports in other browsers, I need the Java viewer.
    I have a Visual Basic 6 application, and, instead of including SmartViewerActiveX.asp, I have included JavaPluginViewer.asp. I have taken this file from an older version of Crystal, and I am changing the values on it (I have done the same with the ActiveX Viewer, without problems). This is the main code of the file:
    <OBJECT
        classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
        width="100%"
        height="100%"
        codebase="/crystalreportviewers11/JavaPlugin/Win32/j2re-1_4_2_04-windows-i586-p.exe#Version=1,4,0,0">
        <param name=type value="application/x-java-applet;version=1.4">
        <param name=code value="com.crystaldecisions.ReportViewer.ReportViewer">
        <param name=codebase value="/crystalreportviewers11/JavaViewer/">
        <param name=archive value="ReportViewer.jar">
        <param name=Language value="en_US">
        <param name=ReportName value="RDCrptserver11.asp">
        <param name=CanDrillDown value="true">
        <param name=HasExportButton value="true">
        <param name=HasGroupTree value="true">
        <param name=ShowGroupTree value="true">
        <param name=HasPrintButton value="true">
        <param name=HasRefreshButton value="true">
        <param name=HasTextSearchControls value="true">
        <param name=HasZoomControl value="true">
        <param name=HasSearchExpert value="false">
        <param name=HasSelectExpert value="false">
        <param name=ShowLogo value="false">
    </OBJECT>
    I know how to change all the values of this object so it works with Crystal2008 except one: the codebase.
    I have gone to IIS, and under the virtual folder "crystalreportviewers12" I don't see any JavaPlugin folder, there's only the JavaViewer folder, and there isn't any .exe inside...
    So, where can I find the .exe for the codebase?
    I have tried searching the web for a tutorial or something, but I haven't seen anything for Crystal 2008.
    Can anyone help me?
    Thank you very much!

    This is so wrong, I don't even know which forum this would belong to ( I think I'll move it to the SAP Crystal Reports, version for Eclipse topic Space...
    Let's start with this:
    I have taken this file from an older version of Crystal,
    Don't mix versions. It will not work. Period
    Next re:
    I don't see any JavaPlugin folder,
    If you want a Java solution, I'd recommend using CR for Eclipse which you can download from here:
    SAP BusinessObjects - SAP Crystal Reports, Version For Eclipse Download
    I would then recommend having a peek here:
    CRJ SDK
    Developer Help File is here:
    https://help.sap.com/javadocs/cr/xi/jrc/en/overview-summary.html
    Finally, I'm not sure what references you are making in your VB 6 app, but there is no SDK in CR 2008 that supports VB 6.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter
    https://twitter.com/SAPCRNetSup

  • Deploying VS 2005 Applications with Crystal Reports

    Using VS 2005 with Crystal Reports bundled, I created a web site that uses Crystal Reports. On my own web server (which I have total control over), I can deploy it using CR merged modules and everything is fine. Ultimately, however, my website is going to be hosted by another company and I am not sure if they are going to be willing to run the setup file that loads the Crystal Report dependencies (like I was able to do on my own web sever). So my question is this, is it possible to upload a website to a host provider and have CR reports work without having the host provider run a CR setup program? If this is not possible, do you know of any host providers that support CR?
    Thanks in advance!

    Hello,
    The Crystal Report .NET runtime files will need to be deployed to the eventual web host.  If your web host won't run the CR.NET deployment package then your Crystal application won't run.
    I know there are web hosts that support deploying Crystal Reports runtime packages, but I don't have any specific names to give you.  You can probably Google for some options.
    Sincerely,
    Dan Kelleher

  • INTERNET CONNECTION NOT DETECTED message with Crystal Reports 2011

    Hello:
         We upgrade from SQL 3008 R2 to SQL 2012 SP1.   Had trouble with Crystal Reports not opening reports.  Information on the internet indicated that you had to reinstall Crystal Reports after upgrading SQL.  We did a repair of Crystal Reports 2011.  I have the box checked to check for updates when Crystal Reports starts.  I am now getting INTERNET CONNECTION NOT DETECTED and the application will not check for updates.  We have tried turning of the firewall and almost everything else we can think of.  I have access to the internet from that server and IE9 works just fine.  Can anyone help, please.
    Thank You,
    Jack G.

    Hello Jack,
    This one helps: INTERNET CONNECTION NOT DETECTED
    Internet Connection failure
    --Dhana

  • Trouble with crystal report viewer - don't show swf file

    hi to evrybody,
    i'm developing an  application with Crystal Report and Xcelsius.
    My scenario is:
    Visual Studio 2008
    Crystal Report 12.1.0.892
    ( for the cliente CRRuntime_12_1_mlb.msi)
    I tried to develop only the kernel of the application a form vb that call another form with
    crystalReportViewer (12.0.2000.0)
    My trouble is that i can't see the flash embed in Crystal Report file.
    (In the Crystal Report preview all wors fine)
    Can someone help me with this ?
    Best regards
    Alessandro

    Unfortunately this functionality is not currently available within .NET windows forms applications.  It will work in ASP.NET applications.

Maybe you are looking for