Cannot run viewer.jsp (crystal report)

Hi,
I'm using eclipse SDK 3.5. I already create report using crystal report, report name "RepCustomer"  but when i run
RepCustomer-viewer.jsp this error come out = com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Could not initialize class com.crystaldecisions.reports.dataengine.DataSourceManager---- Error code:-2147467259 Error code name:failed.
Please help me.

Thanks so much D Pavan K.
It's work now. 

Similar Messages

  • Error message when trying to view/print Crystal reports in B1

    I get the following Error message when trying to view/print crystal reports in SAP B1/Crystal Reports Integration Tool for SAP Business One:   
    " Could not load file or assembly 'Crystal Decisions Windows Forms, version=12.0.2000.0, Culture=neutral, Public Key Token=692fbea551e1304'  or one of its dependencies.  The system cannot find the file specified.  ????

    Hi
    Common issues for this :
    1. Once you install crystall add on ,you need to go to Crystal report Administration >Account setup .
    Put on the user name and password and click on creating ext tables
    Try then running the report .
    If not the case ,
    make sure you install runtime .
    You need :
    1.Crystal report basic from SAP download -(Not necessary if you want only report viewer >
    2.You need to have crystal integration addon (I think service pack is SP1)
    3.Make sure you have runtime install
    When you are installing ,make sure you restart your PC before you do or remove temporary file s
    Hope this solves your issue
    Bishal

  • 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

  • Which is better to use Store Procedure or Views in Crystal Reports ?

    Hi,
    which one is more better to use Store Procedure or Views in Crystal Reports ?
    Thanks.

    It depeneds on the requirement. Well, but from performance point of view as u know that stored procedures are already compiled on DB side, they would be more efficient. Views are handled differently. Here CR has nothing to do with it.
    But if the stored procedure u r using is having 2 Select statements, CR will only display the results from the first select statement. In that case you need to use Views as one can use more than one views in the report and join them.
    Using a Generic view which is created by the DBA for a larger audience will result in performance issues meaning if a View "V" has 25 fields and View is based on 5 tables  and ur report is using only 5 fields which are coming only from 2 tables inside the view,in this case u will end up in joining 3 more tables unnecessarily.
    Hope this helps!

  • Using DB2 views in crystal reports with java

    Post Author: Shikha Tomar
    CA Forum: JAVA
    Hello,
    We have used DB2 views in Crystal Report 11.
    We are able to view the report through crystal report tool but while using this rpt file in java application,the DB2 view is not found.
    It gives an error: "table SCDC.View_report not found."
    SCDC.View_report=Name of the view used in rpt
    Code for calling rpt is as below:
    The line marked as red gives the error:
    private static void switch_tables(DatabaseController databaseController) throws ReportSDKException, IOException {
    final String URI = "!com.ibm.db2.jcc.DB2Driver!jdbc:db2://"SERVERNAME":"PORT"/"DATABASE_NAME"!"+"";
    final String DATABASE_DLL = "crdb_jdbc.dll";
    //Obtain collection of tables from this database controller.
    Tables tables = databaseController.getDatabase().getTables();
    CommandTable commandTable=new CommandTable();
    //Set the datasource for all main report tables.
    for (int i = 0; i < tables.size(); i++) {
    ITable table = tables.getTable(i);
    //Keep existing name and alias.
    table.setName(table.getName());
    table.setAlias(table.getAlias());
    //Change properties that are different from the original datasource.
    table.setQualifiedName(TABLE_NAME_QUALIFIER + table.getName());
    //Change connection information properties.
    IConnectionInfo connectionInfo = table.getConnectionInfo();
    //Set new table connection property attributes.
    PropertyBag propertyBag = new PropertyBag();
    //Overwrite any existing properties with updated values.
    propertyBag.put("Trusted_Connection", "false");
    propertyBag.put("Server Name", SERVERNAME); //Optional property.
    propertyBag.put("Connection String", CONNECTION_STRING);
    propertyBag.put("Database Name", DATABASE_NAME);
    propertyBag.put("Server Type", "JDBC (JNDI)");
    propertyBag.put("URI", URI);
    propertyBag.put("Use JDBC", "true");
    propertyBag.put("Database DLL", DATABASE_DLL);
    connectionInfo.setAttributes(propertyBag);
    //Set database username and pasword.
    //NOTE: Even if these the username and password properties don't change when switching databases, the
    //database password is not saved in the report and must be set at runtime if the database is secured.
    connectionInfo.setUserName(DBUSERNAME);
    connectionInfo.setPassword(DBPASSWORD);
    connectionInfo.setKind(ConnectionInfoKind.SQL);
    //connectionInfo
    table.setConnectionInfo(connectionInfo);
    //Update old table in the report with the new table.
    databaseController.setTableLocation(table, tables.getTable(i));
    Regards,
    Shikha

    Hi,
    Fo business views please reffer to [Business Views Administrator's Guide|http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_bv_admin_en.pdf]
    Yes, Crystal Reports 2008 can consume business views.
    Regards,
    Ramu.

  • How to make tree view in Crystal Reports

    Hi,
    We are using Crystal Reports XI R2.
    In ASP.Net, we are using tree view and same that we need display in Crystal Reports for reporting purpose.
    We have thee levels of records.
    I know the way making group by and sub group by to show in hierarchy level.
    How to achieve exact tree view in Crystal Reports as in ASP.Net
    Please give me some suggestions.
    Thanks and regards,
    Manjunath N. Jogin

    Create the report first.

  • Cannot run/view report

    I am using Crystal Reports Server XI R2.
    Cannot preview a report in CMC or view it in InfoView. Things were working and then got into this state without me or anyone doing anything. I have stopped/started all the servers to no avail.
    Other parts of CMC/InfoView are working fine. The only problem is viewing a report.
    Please help!

    I have a similar problem.
    I am also running XI R2.  Everything works fine internally inside the company network, but on the metaframe servers, users aren't able to view reports.  Most other things works fine.
    I am wondering if it has something to do with java and/or browser settings, but haven't been able to figure it out yet.
    The workspace panel just comes up as blank, without any error message.
    Any tips or ideas is greatly appreciated.

  • Cannot view a Crystal Report in InfoView

    Hi,
    I created a report in Crystal Reports 2008, using connection to SAP tables and Function Modules. The reports contains some parameters and In Crystal Designer it works fine.
    Then I put it into the InfoView. If I try to view it, I get the error:
    "An error has occurred: Servlet execution threw an exception " before promting the database log on information.
    If I remove the parameters from this report, I can start the viewer without errors. Reports with parameters and other connection type work in this InfoView.
    The same report with parameters and SAP connection works fine in another InfoView.
    We upgraded the SAP Integration Kit on the server, but it did not help.
    I really need to find a solution for this problem, because cannot present the reports to the customer.
    Could somebody propose a solution? Probably someone has a similar problem?
    Kind regards,
    Oleksandr

    Hi,
    Thanks for your replies. Sorry for delay with my answer. Yesterday our admin upgraded the server (incl. JCO), the problem with the reports with parameters is resolved. But, now I have another problem with the database connection.
    Locally I use BO XI 3.1, Crystal Reports SP2, BO XI Integration for SAP solutions. On the server :
    BO Enterprise XI 3.1 SP2
    BO XI 3.1 Integration for SAP Solutions FP 2.1 Update
    BO XI 3.1 Integration for SAP Solutions Russian Language Pack
    BO XI 3.1 Integration for SAP Solutions SP2
    SAP BO XI 3.1 Integration, version for SAP solutions applications SP3 Update
    SAP BO XI 3.1 Integration, version for SAP solutions applications Russian Language Pack
    Now I create locally an empty report in Crystal Reports, just select in the database-assistent one SAP table and save without using these fields at all.
    Then, I go to the customer InfoView, there add this report using "Add->Crystal Reports..." from my local folder. If I click "View", I get the error:
    "Error in File Test: Failed to load database information. "
    If I click "View" for a report with parameters, a screen appears for the parameter selection, but after "Execute" I get the same error.
    Yesterday before server upgrade I could start the viewer for the same reports without parameters. All reports can be viewed now in another InfoView.
    I tried to change some options for the report Database Configuration in CMC, but it did not help. Possibly was I wrong with the settings?
    I would appreciate if you give me any idea how this problem can be solved.
    Thanks in advance!
    Oleksandr

  • Cannot Send Email from Crystal Reports Viewer; MAPI:Overflow

    I am trying to send a report via email with crystal reports, but i get the following error message:
    "The following unexpected error occured while trying to send the report to MAPI: Overflow."
    I am using Outlook 2010, Win 7 x64 bit.
    Does anyone have any ideas or thoughts?

    Yes, it is a 3rd party app that opens Crystal Reports Viewer.  Attached are the screen shots I get when try to send the report as an email.
    -Dan

  • Customizing ActiveX Viewer for Crystal Reports 2008

    Here's the scenario.
       We have reports designed in Crystal Reports 2008, that are deployed on Business Objects 3.1 Infoview. All reports have Parameters for users to choose. All reports are expected to refresh on open.Some are dynamic some are standard static ones. There is an application developed in JAVA that is rendering these reports using the ActiveX viewer.
    The users are not comfortable with the way reports look in JAVA viewer. Hence the choices are either HTML viewer or ActiveX viewer.
    The application achieves this by making OpenDoc call to the report and using
    sViewer=actx
    as one of the parameters. Here's the issue that we run into. When users land on the parameter screen, the parameter screen alone Pops Up in a new window. Once all the parameter values are entered and the users clicks OK, the window vanishes and actual report is rendered in the original window.
    If we use HTML viewer by setting
    sViewer=html
    The report Parameter screen is rendered in the main window without popping up. However we do not wish to use HTML viewer because, some of the reports are linked to other reports with OpenDoc calls. i. e. Parent report calls child report with a OpenDoc call. In the HTML viewer, when you click on the link to child report, it opens in same window despite setting
    sWindow=new
    in that opendoc call. Thereby losing parent report and no way to navigate back to it. This problem does not happen in ActivX viewer.There it seems to obey the command to open in new window.
    Lastly you can recreate all this behavior by setting your viewer preferences in Info View settings. 
    So, here's my questions.
    1. Should I use the .Net viewer instead of ActiveX Viewer ? If so, where can I find Syntax for the same ?
    2. Can someone point me to documentation on the ActiveX Viewer ? Specifically making it not to Pop Up the Parameter Screen ?
    3. Should the Java application use a different method other than Open Doc to cal the reports ? If so where can I get the details ?
    Apologies for the long post. I tried to anticipate most of the questions that may arise in your mind. Thanks in advance for the time invested.

    Thank you Adam for the help.
    I already have the Open Document document you mentioned. Can't seem to search for the KB article in Marketplace. No results found.
    Just to clarify, I do not want to avoid the Parameter screen. Its the fact that it Pops Up in ActiveX viewer is the issue. The only thing I want in ActiveX viewer is to make that screen appear in main window just like HTML viewer.
    I understand that there is no difference as far as opendoc is concerned between .Net or JAVA. I am looking for the SDK behind the viewers themselves.
    To my third question, your answer is what I was looking for. But need a bit clarification.
    >
    Adam Stone wrote:
    > If you do not like the functionality that OpenDocument provides, you could use the SDK to view the reports, but you will likely run into the same issue as you are running into when using the html viewer.  The only workaround for that is to set a property on the viewer object in the SDK but it will affect all hyperlinks in the report not just a single one.
    By setting Property in SDK for the viewer Object, are you referring to Meta Tag encapsulation such as
    <a href= http://infoview.server.com/Infoview/opendoc/openDocument.jsp?iDocID=ABZR3Z&sIDType=CUID&&sType=wid&sRefresh=Y&sWindow=new>Report Title</a>
    May be I didn't get your point with setting property. I know there is documentation on Viewer SDK. I just can't seem to find it. I hope it would answer the questions.
    Edited by: SAMEER UPADHYE on Oct 6, 2010 5:46 PM

  • Can not view/schedule Crystal Reports in new BOE XI 3.0 Installation

    Hello,
    I'm having an issue on a brand new installation of BusinessObjects XI 3.0 on AIX 5.2 (using WebSphere 6.0). Installation went smoothly and migration went fine. Can log in, pull up CMC, InfoView (all other apps). But scheduled Crystal Reports (as well as viewing Crystal Report thru InfoView) are failing with the following errors (which to me seem interrelated):
    *(1) Error in File ~cec0c55d91e0e015.rpt: The request could not be submitted for background processing*
    *(2) Error in Report XXX: Failed to load database information*
    *(3) An error occurred while creating a subprocess in the processing server. [RCIRAS0604]*
    These three errors indicate to me that the report engines are having issues opening the files, pulling the data and generating the reports. We've checked to make sure that the account that BOE is running under has all the permissions it needs - and it has.
    I just turned on tracing (-trace) on the report job processing servers and I'm watching the logs as I retrace my steps...
    Any ideas? Would appreciate any feedback...
    Thanks,
    Will

    Turns out this is a pretty nasty issue on Unix environments. Being that the BOE application is developed on Windows then ported to Unix environments, the services (daemons) still end up depending on an emulated registry (MainWin) sort of like in a Windows environment.
    For some reason (we're still trying to figure this out), the BOE registry entries got corrupted and then started preventing the processing servers (which in the case of CR ultimately depend on  CRPE - Crystal Reports Print Engine) from opening up and processing CR files.
    We engaged BusinessObjects/SAP support and have been able to resolve this issue on our test AIX system. The resolution included deleting all the mainwin (mw) tmp directories and files in the root temp directory and also in the
    /bobje/enterprise120/aix_rs6000/crpe>
    directory. Then we stopped all BOE services and reran the MW script to regenerate registry entries. This repair was a pretty intricate multi-step process. The SAP Technical Rep who worked on this case is writing a knowledge base article (an SAP note). Once I get details, I'll update this post.
    The good news about this issue is that the upcoming SP1 of XI 3.0 removes the dependency on the mw registries...
    Will

  • First page appears blank when viewing a Crystal Report in the web viewer

    I have seen threads and KB articles regarding this issue but the suggested solutions do not correct the issue. (KB articles [1423482 and 1439109)
    The issue only started after upgrading from CR 2008 runtime to CR 2008 SP4 runtime.
    When the page containing the viewer control first loads, the report pane is completely blank.
    The viewer toolbars appear as expected, and the report can be exported using the Export button on the viewer toolbar without issue.
    Changing the zoom level causes the first page of the report to appear as expected, and reverting the zoom level does not cause the report pane to become blank again.
    Navigating to the next page of the report works and the second page appears as expected. Returning to the first page shows the first page of the report as expected.
    Our application is installed on dozens of servers but this issue only has occurred on a few installations at this time.
    Steps attempted to resolve the issue:
    1. Uninstall CR 2008 SP4 runtime, confirm the CrystalReportViewers12 folders were removed from the folders C:\Inetpub\wwwroot\aspnet_client\system_web\2_0_50727 and C:\Program Files\Business Objects\Common\4.0, then reinstall CR 2008 SP4 runtime.
    2. Ensure there are no underscores in the server name.
    3. Change the crystalreportsviewers12 Virtual Directory to use the folder C:\Inetpub\wwwroot\aspnet_client\system_web\2_0_50727\CrystalReportViewers12
    4. Remove and recreate the crystalrep[ortviewers12 Virtual Directory.
    5. Replace the C:\Inetpub\wwwroot\aspnet_client\system_web\2_0_50727\CrystalReportViewers12 folder from a server that does not exhibit the issue.
    Any new ideas or suggestions? Thanks

    Moving post to .NET SAP Crystal Reports forum
    Hello Scott
    What browser are you using and what is the version of the browser?
    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]

  • Problem running pform_report.jsp in Report Builder 9i

    I downloaded the .ZIP file from the Examples page on the otn site. I follow the instructions,
    but when I try opening up any of the files, it creates an error window "can not display window" and the
    whole program zapps out. was anyone successful in running the sample in reports builder?
    do you have to use a PC for this?
    My main problem is:
    Im trying to learn how to create a parameter form on the web. not using the "user parameters"
    and the runtime form.
    ANY HELP ON HOW TO DO THIS WOULD BE GREATLY APPRECIATED!!

    hello,
    this example is not quite designed for beeing run in the builder since it calls itself passing parameters. however, you should be able to see the idea behind it by looking at the JSP source code.
    regarding your issue when opening the file, we have never experienced such behaviour but the example was developed on a windows platform. maybe the files get corrupted when getting unzipped. can you open the JSP file in e.g. vi ?
    regards,
    philipp

  • JSP & Crystal Reports Database Problem

    Hi all,
    I hava problem with refreshing the crystal report web viewer if the report retrieves data from DB.
    If I don't refresh the report, it shows the report with default parameters. But when I refresh the report (I mean viewer.refresh()) it gives an error which says it could not found the JNDI.
    Do you have any idea about it ???
    Thanks in advance.
    Ismail TURK.

    So it can't find the JNDI name.
    What JNDI name is it looking for?
    How are you connecting to the database in the Crystal Reports developer.
    How It works on my machine. [long spiel]
    For some reason I was never able to get a JNDI connection throught the CR10 developer. It kept giving me error messages. But I DID manage to connect to Oracle via the standard Oracle TNSNames interface.
    When I tried loading the report in the browser, it looked for a JNDI name the same as the TNSName. Dunno why.
    The issue is that Tomcat stores the JNDI datasources under java:/comp/env/.
    And I couldn't configure the report to look in that initial context.
    My hack of a solution: load the JNDI datasource myself, and then bind it into the place where Crystal Reports looked:
    So I had
    1 - a TNS Name entry called REPORT_DB which the report designer connected to
    2 - a JNDI entry REPORT_DB defined in Tomcat
    <%
    Context initContext = new InitialContext();
    System.out.println("binding");
    try{
    Object obj = initContext.lookup("REPORT_DB");
    catch(NamingException e){
      System.out.println("Naming exception " + e);
      Context envContext  = (Context)initContext.lookup("java:/comp/env");
      DataSource ds = (DataSource)envContext.lookup("REPORT_DB");
      initContext.bind("REPORT_DB", ds);
    System.out.println("bound");
    %>Maybe this might help you, maybe not.
    Cheers,
    evnafets

  • Million+ views - SAP Crystal Reports, developer version for MS VS: Updates & Runtime Downloads

    1,000,000! One million views in just over three years;
    SAP Crystal Reports, developer version for Microsoft Visual Studio Updates & Runtime Downloads;

    Re. runtime distribution limits; WIN apps, free. Web apps used internal to your organization, free. Web apps deployed external to your organization, extra licensing applies. Check with sales: 866-681-3435
    Worldwide Office Locations | SAP
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

Maybe you are looking for

  • Need to run a hardware test on MBP4,1, 17" OS 10.5.8 w/out disc?

    I have a macbook pro with the following specs: - 17inch macbook pro 4,1, 2. 5 GHz - non-unibody (released sometime in 2008) - OS 10.5.8 My battery recently expanded and 'exploded', so i bought a new one (from macsales.com) and replaced it. battery wo

  • HELP! All of my style disapeared- How can I recover it?

    So I have nearly finished my webpage when Dreamweaver just shut down. I reopened Dreamweaver to find that all of my pages are the same except for my homepage. My homepage still contains the text and my spry menu but has completely lost all of the sty

  • Awkward lines in flash video on PC

    I'm encoding DV video to Flash using Sorenson Squeeze. On a Mac, using Firefox the video plays fine, but on a PC, there is an awkward vertical line. It makes it look like the screen is cut in two. Why would this be happening, and only on a PC?

  • Release Strategy for a new material type in PR

    Dear Friends, One of our client require new Release Strategy for a particulat material type PR. Can u pl provide me the steps to configure a new release strategy for PR for a particular Material type. Regards, Ask

  • X-Fi Xtreme Gamer 5.1 configurat

    Hello everyone, I've got SB X-Fi Xtreme Gamer soundcard, I've installed all the applications from CD and newest web drivers and I still don't have sound in my both rear speakers. I've changed speaker configuration in all applications (Windows and Cre