Crystal Reports 2008 Viewer Syntax error number: -2146827286

I have CrystalReportViewer12 installed on Apache/Tomcat 6. I have configured all components as necessary: installed jars and setup web.xml/CRConfig.xml. I can get the report to display appropriately in my jsp page. But when I try to use the Go To Next Page button I receive the following error:
name: SyntaxError
message: Syntax error
number: -2146827286
description: Syntax error
Any assistance will be appreciated.
Thanks.

Translating the error message on bablefish I get:
Mistake with the store of the data bank information. Mistake in the file Report {C6512421-348A-4621-B1ED-895D28646A0A} .rpt
Which I'm sure is not 100% accurate, but it gives a good hint. As well, because of this:
"Do I need to install an additional / diffrent runtime than 2008 Runtime"
I wonder how you installed the CR 12 runtime on that computer? For more info on CR runtimes, see [this|https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsforVisualStudio.NETRuntimeDistribution-Versions9.1to12.0] wiki.
If my suggestion above does not help, make sure the Win\temp directory can be accessed buy the application. Crystal Reports runtime needs to write and read files from the temp directory.
Ludek

Similar Messages

  • Crystal Reports 2008 viewer, print function, Comunication error

    I installed cr2008 on a web server and isntalled sp0
    if I bring up a reprot in smartviewer from a client it works and I can print
    once I installed sp1, sp2 and or sp3 for crystal reports 2008 the print button in crystal reports viewer gives an error when I click the print button.
    If I remove and re-isntall cr2008 and just installed sp0 the print button works again
    Is there a fix to make the print button work in crystal reports smart viewer once sp1 or above have been installed
    thank you
    ted

    Translating the error message on bablefish I get:
    Mistake with the store of the data bank information. Mistake in the file Report {C6512421-348A-4621-B1ED-895D28646A0A} .rpt
    Which I'm sure is not 100% accurate, but it gives a good hint. As well, because of this:
    "Do I need to install an additional / diffrent runtime than 2008 Runtime"
    I wonder how you installed the CR 12 runtime on that computer? For more info on CR runtimes, see [this|https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsforVisualStudio.NETRuntimeDistribution-Versions9.1to12.0] wiki.
    If my suggestion above does not help, make sure the Win\temp directory can be accessed buy the application. Crystal Reports runtime needs to write and read files from the temp directory.
    Ludek

  • Crystal reports 2008 sp3 : An error has occurred while attempting to load t

    Hello,
    Please forgive me for posting in the CR .NET forum because we are using the full Crystal Reports 2008 product and I did not see a category for it.  If there is a better forum for this question, please let me know or feel free to move it.
    We are having trouble deploying our crystal reports 2008 reports to a Windows Server 2008 R2 server in an aspx application...
    I have been working on this issue for 4-days and cannot seem to make any progress, so I would really appreciate your help.
    Our Environment:
    Development Computer (32-bit, WinXP)
      VS2008 (fully updated, was not installed with its Crystal Reports feature)
      Crystal Reports 2008 SP3 (downloaded and installed "cr2008_sp3_fullbuild")
    Database Server (64-bit)
      "SERVER2" is a Microsoft SQL Server 2008 server, fully updated
    Web Server (64-bit)
      "SERVER3" is a Microsoft Server 2008 R2 Web server.
    We have an application that is installed on the Web server and it pulls data from the database server.
    The webpages are accessing the database properly.  There is a ShowReport.aspx webpage that has the
    CrystalReportsViewer on it.  We send parameters and logon information to ShowReport.aspx.  ShowReport
    works properly on our development computer and the report looks good, but it fails on the web server.
    We downloaded CRRuntime_12_3_mlb.msi (X86) from SAP/CR and installed it on the web server without any issues.
    Our application pool on the web server for this application is set to 32-bit mode.  When I launch the
    application, it works properly with the database and displays data on web pages, but when I try to
    view a report on ShowReport, I get the following error message:
    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) that contains the version of the Crystal Reports runtime (x86, x64, or Itanium)  that is required.
    According to everything that I have read, I have properly matched the DLLs: On the development computer, "cr2008_sp3_fullbuild" was installed; On
    the web server, "CRRuntime_12_3_mlb.msi (X86)" was installed.  They are both Crystal Reports 2008 and not .NET.  CR.NET was not installed on our development computer, so our application was built with full Crystal Reports 2008 SP3.  On our development computer, .ENGINE is 12.0.2000.0 and
    the same version is on the web server.
    So, I am completely at a loss as to why we are encountering this error.  Help, Please!!!
    Thank you in advance,
    Mike

    Hi Mike,
    Did you set your project for X86 mode only? If not do so and rebuild and deploy your app.
    Thank you
    Don

  • Export from Crystal Reports 2008 viewer fails if run on separate thread

    I have a windows desktop application written in Visual Basic using Visual Studio 2008.  I have installed and am trying Crystal Reports 2008 to run a report.  Everything seems to work well except that when I preview a report (using the viewer control) and click the export button found in the upper left corner of that control, I get the following message:
    Error 5: Current thread must be set to single thread apartment (STA) mode before OLE calls can be made.  Ensure that your Main function has STAThreadAttribute marked on it.  This exception is only raised if a debugger is attached to the process.
    I am a little confused on what to do exactly.  Is the problem because I am running in the Visual Studio 2008 IDE?  It says this exception is only raise if a debugger is attached to the process.  No, I tried running it outside the IDE.  The exception wasn't generated but the application hung when the button was clicked.
    It says the current thread must be set to single thread apartment (STA) mode.  If the report is run on its own thread, is the "current" thread the thread the report is running on or is the main application's UI thread?  I don't think I want to set my main application to single thread apartment mode because it is a multi-threaded application (although I really don't know for sure because I am new to multi-threaded programming). 
    My objective is to allow reports to run asynchronously so that the user can do other things while it is being generated.  Here is the code I use to do this:
        ' Previews the report using a new thread (asynchronously)
        Public Sub PreviewReportAsynch(ByVal sourceDatabase As clsMainApplicationDatabase)
            Dim backgroundProcess As System.ComponentModel.BackgroundWorker
            ' Start a new thread to run this report.
            backgroundProcess = New System.ComponentModel.BackgroundWorker
            Using (backgroundProcess)
                ' Wire the function we want to run to the 'do work' event.
                AddHandler backgroundProcess.DoWork, AddressOf PreviewReportAsynch_Start
                ' Kick off the report asynchronously and return control to the calling process
                backgroundProcess.RunWorkerAsync(sourceDatabase)
            End Using
        End Sub
        Private Sub PreviewReportAsynch_Start(ByVal sender As Object, ByVal e As System.ComponentModel.DoWorkEventArgs)
            ' The source database needed to call preview report was passed as the only argument
            Call PreviewReport(CType(e.Argument, clsMainApplicationDatabase))
        End Sub
        ' Previews the report.  From the preview window, the user can print it.
        Public Function PreviewReport(ByVal sourceDatabase As clsMainApplicationDatabase) As FunctionEndedResult
            Dim errorBoxTitle As String
            Dim frmPreview As frmReportPreview
            ' Setup error handling
            errorBoxTitle = "Preview " & Name & " Report"
            PreviewReport = FunctionEndedResult.FAILURE
            On Error GoTo PreviewError
            ' Set up the crxReport object
            If InitializeReportProcess(sourceDatabase) <> FunctionEndedResult.SUCCESS Then
                GoTo PreviewExit
            End If
            ' Use the preview form to preview the report
            frmPreview = New frmReportPreview
            frmPreview.Report = crxReport
            frmPreview.ShowDialog()
            ' Save any settings that should persist from one run to the next
            Call SavePersistentSettings()
            ' If we got this far everything is OK.
            PreviewReport = FunctionEndedResult.SUCCESS
    PreviewExit:
            ' Do any cleanup work
            Call CleanupReportProcess(sourceDatabase)
            Exit Function
    PreviewError:
            ' Report error then exit gracefully
            ErrorBox(errorBoxTitle)
            Resume PreviewExit
        End Function
    The variable crxReport is of type ReportDocument and the windows form called 'frmPreview' has only 1 control, the crystal reports viewer. 
    The print button on the viewer works fine.  Just the export button is failing.  Any ideas?

    Hi Trevor.
    Thank you for the reply.  The report document is create on the main UI thread of my application.  The preview form is created and destroyed on the separate thread.  For reasons I won't get into, restructuring the code to move all the initialization stuff inside the preview form is not an option (OK, if you a really curious, I don't always preview a report, sometimes I print and/or export it directly which means the preview form isn't used).
    What I learned through some other research is that there are some things (like COM calls and evidently some OLE automation stuff) that cannot be run on a thread that uses the MTA threading model.   The export button probably uses some of this technology, thus the message stating that an STA threading model is required.  I restructured the code as follows to accomodate this requirement.  Here is a sample:
    ' Previews the report using a new thread (asynchronously)
        Public Sub PreviewReportAsynch(ByVal sourceDatabase As clsMainApplicationDatabase)
            Dim staThread As System.Threading.Thread
            ' Start the preview report function on a new thread
            staThread = New System.Threading.Thread(AddressOf PreviewReportAsynchStep1)
            staThread.SetApartmentState(System.Threading.ApartmentState.MTA)
            staThread.Start(sourceDatabase)
        End Sub
        Private Sub PreviewReportAsynchStep1(ByVal sourceDatabase As Object)
            Dim staThread As System.Threading.Thread
            ' Initialize report preview.  This includes staging any data and configuring the
            ' crystal report document object for use by the crystal report viewer control.
            If InitializeReportProcess(DirectCast(sourceDatabase, clsMainApplicationDatabase)) = FunctionEndedResult.SUCCESS Then
                ' Show the report to the user.  This must be done on an STA thread so we will
                ' start another of that type.  See description of PreviewReportAsynchStep2()
                staThread = New System.Threading.Thread(AddressOf PreviewReportAsynchStep2)
                staThread.SetApartmentState(System.Threading.ApartmentState.STA)
                staThread.Start(mcrxReport)
                ' Wait for step 2 to finish.  This blocks the current thread, but this thread
                ' isn't the main UI thread and this thread has no UI anymore (the progress
                ' form was closed) so it won't matter that is it blocked.
                staThread.Join()
                ' Save any settings that should persist from one successful run to the next
                Call SavePersistentSettings()
            End If
            ' Release the crystal report
            Call CleanupReportProcess(DirectCast(sourceDatabase, clsMainApplicationDatabase))
        End Sub
        ' The preview form must be launched on a thread that use the single-threaded apartment (STA) model.
        ' Threads use the multi-threaded apartment (MTA) model by default.  This is necessary to make the
        ' export and print buttons on the preview form work.  They do not work when running on a
        ' thread using MTA.
        Public Sub PreviewReportAsynchStep2(ByVal crxInitializedReport As Object)
            Dim frmPreview As frmReportPreview
            ' Use the preview form to preview the report.  The preview form contains the crystal reports viewer control.
            frmPreview = New frmReportPreview
            frmPreview.Report = DirectCast(crxInitializedReport, ReportDocument)
            frmPreview.ShowDialog()
        End Sub
    Thanks for your help!
    Andy

  • Crystal Reports 2008 SP2 Install Error

    When I try to install Crystal Reports 2008 SP2 I receive the following error...
    The feature you are trying to use is on a CD-ROM or other removable disk that is not available.
    Insert the 'Crystal Reports 2008 SP1' disk and click OK.
    SP1 was installed via the upgrade utility that launches with the software.  I found the package folder in C:\Documents and Settings\%username%\Local Settings\Temp but it did not contain the MSI SP2 is looking for.
    I've tried installing SP2 by both letting the update utility attempt to automatically install it and by just downloading it from the update utility and running the installation manually.
    Anyone experience this issue?
    -Chris
    Edited by: chris.murphy on Oct 20, 2009 10:18 PM

    Hi Chris,
    This is not a support site but a public place for all users to help each other. If you would like to talk to a support Engineer then please purchase a case.
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551
    Try downloading SP1 and installing it from your local hard driver and then install SP2. I'll mention this issue to the install team and see what they say about your issue.
    Thank you
    Don

  • Crystal Reports 2008 - on Vista error  (Oracle db)

    I have problem when i try launch one report on Vista,
    when i'm using Oracle connection.(the report worked fine on SQL).
    - Using : Visual basic .net(Framework: 2.0 )
    - Windows Vista SP1
    - Crystal Reports 2008
        - CrystalDecisions.CrystalReports.Engine.ReportDocument
        - CrystalDecisions.Shared.ConnectionInfo
    Code:(details)
    'Oracle provider
    dbAttributes.Collection.Set("Server", "ORCL")
    dbAttributes.Collection.Set("Trusted_Connection", False)
    con.ServerName = odbConfig.DataSource
    con.DatabaseName = ""
    con.UserID = odbConfig.UserId
    con.Password =  odbConfig.Password
    con.Attributes.Collection.Set("Database DLL", "crdb_oracle.dll")
    con.Attributes.Collection.Set("QE_DatabaseName", "")
    con.Attributes.Collection.Set("QE_DatabaseType", "Servidor de Oracle")
    con.Attributes.Collection.Set("QE_ServerDescription", "ORCL") con.Attributes.Collection.Set("QE_SQLDB", True)
    con.Attributes.Collection.Set("SSO Enabled", False)
    con.Attributes.Collection.Set("QE_LogonProperties", dbAttributes)
    ..crTableLogOnInfo.ConnectionInfo = con
    crTable.ApplyLogOnInfo(crTableLogOnInfo)..
    After..CRViewer.Show()
    Error :
    (Crystal error) : "Failed to retrieve data from the database"
    Details : [Código de proveedor de base de datos: 942.
    RAS
    Using usar Report App Server, i have problems too,
    using Oracle connection.
    - Using : Visual basic .net(Framework : 2.0 )
    - Windows Vista SP1
    - Crystal Reports 2008
    - CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo
    - CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag
    - CrystalDecisions.ReportAppServer.DataDefModel.Controllers
    Code :
    .. boAttributesPropertyBag("QE_DatabaseType") =
    "Oracle Server"..
    ..boLogonPropertyBag.Add("Provider", "MSDAORA")
    boLogonPropertyBag.Add("Server", odbConfig.DataSource) 'Service name
    boLogonPropertyBag.Add("Trusted_Connection", False)...
    Error on : ..boDatabaseController.SetTableLocation(boTable, boTableNew)..
    Error details (RAS) :Failed to retrieve data from the database. xxxxxxx.rpt: StackTrace: CrystalDecisions.ReportAppServer.Controllers.DatabaseControllerClass.SetTableLocation(u2026.
    I haven`t problem when i launch the report from Crystal Reports designer.(on Oracle, the same server and DB).
    Regards
    Ismael
    Edited by: Ismael Ramirez Rodriguez on Oct 14, 2008 5:20 PM

    Ismael, a few suggestions;
    1) Remeber that Oracle is case sensitive, so ensure that is in order.
    2) Have a look at the following threads and see if they help:
    https://forums.sdn.sap.com/click.jspa?searchID=17494545&messageID=6325240
    https://forums.sdn.sap.com/click.jspa?searchID=17494545&messageID=5919267
    https://forums.sdn.sap.com/click.jspa?searchID=17494765&messageID=6023461
    3) As a test, comment out the logon code, let the report prompt and fill in the logon parameters when prompted. Does that work?
    4) You do not mention if this is a web or a win app. If this is a web app, try a simple win app. If the win app works, you are looking at permissions issue
    5) Ensure that you have SP 0 for CR 2008 applied. SP 0 is here:
    https://smpdl.sap-ag.de/~sapidp/012002523100007528552008E/cr2008_sp0.zip
    6) When you say he report works inthe designer, is this designer on the same Vista box as where you get the runtime error?
    Ludek

  • Crystal Reports 2008 Web Application Error

    Post Author: Jeff Clark
    CA Forum: .NET
    Hello,
    I am using Crystal Reports 2008 and Visual Studio 2005 to create and deploy CR web applications. These applications are installed on a Windows 2003 R2 server with .Net 3.0. I have previously used CR XIR2 for this purpose but upgraded to 2008 because I needed the added functionality in cross-tab reports.
    Some of the reports in the web application are pulling from a MySQL database. I am using a JDBC driver (version 5.1.5) to connect Crystal to the database. When I was using CR XIR2, all I needed to do was add the path for the JDBC driver in the CRConfig.xml in "C:\Program Files\Business Objects\common\3.5\java" directory and everything worked great.
    The runtime files for CR2008 create a "C:\Program Files\Business Objects\common\4.0" directory, but there is no "java" subfolder and no CRConfig.xml. When I attempt to load one of the MySQL reports I get the following error.
    "Error in File %Report Name%.rpt: Failed to load database information. "
    Is there a way to load JDBC drivers in the CR2008 runtime files?

    Post Author: Argan
    CA Forum: .NET
    I do not believe any java dlls are packaged in the runtimes for .net (same goes for the crdb_xml.dll, which is a java dll). I do not have a cr 2008 deployed server at the moment so I can not verify this.
       If you want to use java based db connectivity you will probably need to deploy them with your application.

  • Crystal reports 2008 drilldown javascript error

    hi, i'm programing with visual studio 2003 and crystal reports 2008 in visual basic.
    when i run my drilldown report show me this javascript error : "Loweboundtype is null or not is a object"
    and the drilldown don't work.
    mi os is windows XP, and my browser is Internet Explorer 6.
    anybody know how can i fix this problem???
    Edited by: Juan Antonio Flores Zaher on Jan 9, 2009 12:53 AM

    Hi Juan
    As per the issue description, you are using Visual Studio 2003 and Crystal Reports 2008 in Visual Basic. You get JavaScript error when you try to drill down the report.
    We would like to know the following details:
    - Does the report work fine with Standalone Crystal Reports Designer?
    - Exact version of Crystal Reports Designer. (To get this information, open Crystal Designer and go to Help> About Crystal Reports)
    - If you get the error while refreshing the report through application, then I would suggest you to post this query on the Java forum to get better assistance.
    The link of Java related queries is as follows:
    SAP Crystal Reports, version for Eclipse
    Hope this helps!
    Thanks

  • Crystal Reports 2008 SP1 Install Error 1402 on Vista 64

    I just downloaded and tried to install the Crystal Reports 2008 SP1 and when I try to run the setup I get a error 1402, could not open key error and the service pack rolls back.  I also tried to reinstall from my original CD and I not get the same error.  I have tried to  run the install using the run as administrator and with Norton 360  disabled and I still get the error.  How do I correct this problem so I can update and correct my version of Crystal Reports 2008 Pro?

    Hi David,
    The link above seems to only refer to deploying runtime. I suggest you un-install Crystal Reports, go into the registry and delete all of our keys. Assuming you only have CR 2008 installed and the usual warnings about backing up or exporting your registry before making any changes:
    HKEY_CURRENT_USER\Software\Business Objects
    And
    HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects
    And then download a full build of SP1 from this link:
    https://smpdl.sap-ag.de/~sapidp/012002523100006556612009E/cr2008v1win_rf.exe
    Make sure you do have full Admin rights and check with your IT department to confirm they have not modified the local Administrator profile.
    SP1 is DEP aware so it's not required to disable it.
    Before you do all of the above You may also want to copy the SP to your local PC rather than running it from a network share point. Network delays can also cause issues like this.
    Thank you
    Don

  • Crystal Reports 2008 Loading Failed Error in Windows 7

    Hi,
    We are using Crystal Reports 2008 in our application. These are working fine in XP Professional OS. But the Same code is not working in Windows 7 operating system. When I debug, I found report Load is failing. Error is at below line of code.
    CR.Load( "D:\Sample_Win7.rpt", OpenReportMethod.OpenReportByTempCopy)  ' CR is Report Document
    Can any one suggest me, what settings are required in Win 7 OS to get out of this issue.
    Thanks inadvance,
    Kiran

    Hi,
    Thanks for the reply. Here is the exact issue description.
    CrystalDecisions.Shared.CrystalReportsException was caught
      Message="Load report failed."
      Source="CrystalDecisions.CrystalReports.Engine"
      StackTrace:
           at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()    at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)    at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod)    at SampleReportInWin7.Form1.Button1_Click(Object sender, EventArgs e) in D:\Brookledge SW\SampleReportInWin7\Form1.vb:line 22
      InnerException: System.Runtime.InteropServices.COMException
           ErrorCode=-2147467259
           Message="The system cannot find the path specified. "
           Source="Analysis Server"
           StackTrace:
                at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options)    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options)    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
           InnerException:
    Thanks for your time,
    Kiran

  • Geographical Map does not show up in Crystal Reports 2008 Viewer

    Hi,
    I'm facing a problem by creating maps with CR2008 SP2. If I export the report directly to an pdf or html file the map is shown properly. If I'm using the CR 2008 Viewer to open the .rtp file there's an error message like 'not supported object: geographical map'.
    Anyone else facing such problems?
    Thanks for help,
    Carsten

    Hi,
    Welcome to MSDN.
    I am afraid that this issue is related to third-party, and it is not supported in these forums.
    You could consider posting this issue in website of the publisher of that tool: http://scn.sap.com/community/crystal-reports.
    Thanks for your understanding.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Crystal Reports Web Viewer Control Error

    I have a very odd problem that I am trying to solve.  I was able to dumb the problem down to the Crystal Report Viewer control.  I am using the control in an web user control and using that control in a web page.  The problem is that when I use the control inside a web user control I get the following error:
    A string is required here. Details: errorKind Error in File Client_Info {D911348D-2CAA-49F8-B77D-1288E7D5ABA2}.rpt: Error in formula Project_Labor_Multiplier: 'if ' A string is required here. Details: errorKind
    However, when I use the control in the page itself I do not get that error.  I have tested the report via the design/preview in the VS IDE and it works fine.  I have about 30 reports and they all fail like this if they have a formula.  If they do not have a formula, they work fine.  They do not fail on my personal development machine, but they do fail on our test server.  So this is VERY hard to identify and fix. 
    All that I know is that the formula's are causing this.  They do not occur on my development machine (win7 64-bit) and they do occur on the the test server (winServer 64-bit)... but NOT when I put the Report Viewer control directly in a page and not in a user control.   
    Odd stuff.  Not sure what is going on here.  Why would nesting the viewer control in a web user control cause this?  This was migrated from an application written in 2005.  So maybe the RPT files from 2005 are causing this?
    Any thoughts as to what might cause such an odd effect on Windows Server?  
    Any suggestions or thoughts would be very much appreciated.  This one has me stumped.
    Best regards, 
    Jon

    Hello Jon
    Some thoughts on the issue:
    The error is thrown with a 64 bit runtime, but not 32bit.  Iu2019m guessing that on your development computer, you may be testing \ running from the .NET IDE. E.g.; Cassini, which runs in 32bit process. On the server we're running in a 64bit process.
    Since it is a formula throwing the error, I wonder if you are using any Crystal Reports User Function Libraries (UFL)? If these are compiled as 32 bit, they will fail when run in a 64 bit process. Or, these libraries must be deployed in addition to the normal CR runtime. Failing that will also cause formula errors.
    Are you able to run this app from IIS on your development computer as a 64 bit process (e.g.; HTTP, not Cassini or file system)?
    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]

  • Crystal Reports 2008 SP2 Installation Error

    Howdy Folks...
    I have been trying to install the SP2 for Crystal Reports.
    I get the following error...
    "The installaion source for this product is not available.  Verify that the source exists and that you can access it."
    Running the downloaded file, unpacks the contents, starts the installer, then the error message is displayed.
    System is with Windows Vista SP2
    Your help and advice is needed...
    Thanks,
    Jim

    Yes, mapping the network drive on the install PC works, technically.  Unfortunately, it doesn't resolve my core problem for two reasons.
    1.  I'm trying to make the install procedure as touchless as possible for an install base of potentially hundreds of users.  Having them all map a network drive would defeat the purpose.
    2.  I oversimplified the explanation of my situation to make the question easier to ask.  We actually have a home-grown, web-based client software distribution tool from which I'm trying to setup the installation.  The network drive, and generally all details of the installation are transparent to the installer, so that's another strike against mapping the network drive.
    Here's the command line script (nothing fancy) and the code of the supplemental .ini file that I'm using.  (This assumes that the self-extracting Crystal SP2 file has already been extracted and that I'm working directly with the setup.exe, setup.ini, and package files.)
    And to reiterate, this scripting procedure has worked like a charm for Xcelsius SP3 and Crystal SP1.  It just falls flat on its face for Crystal SP2
    Batch Script:
    setup.exe -r Crystal2008SP2.ini
    Crystal2008SP2.ini:
    [OTHER]
    QUIET=/qb+
    [INSTALL]
    CLIENTLANGUAGE="EN"
    DISABLEWEBUPDATE="1"
    ENABLELOGFILE="1"
    INSTALLDIR="C:\Program Files\Business Objects\"
    REINSTALL="ALL"
    [FEATURES]
    REMOVE=""
    ADDLOCAL=""
    ADDSOURCE=""
    ADVERTISE=""
    Thanks,
    Josh
    Edited by: Josh Crawford on Jan 20, 2010 8:44 AM

  • Crystal Reports 2008 Trial Version Runtime Error

    Hello
    Yesterday I've downloaded Crystal Reports 2008 (Trial Version). The installation was successful. I've got no error.
    Anyway, I'm unable to start Crystal Reports. I get the following error:
    Microsoft Visual C++ Runtime LIbrary
    Runtime Error!
    Program: ...ects\BusinessObjects Enterprise 12.0\win32x86\crw32.exe
    Abnormal Program Termination
    I've already tried all "solutions" mentioned in Re: Crystal Reports 2008 trial version ERROR (DEP, HW acceleration, etc.) but without success (I'm running Windows XP with SP2). I've also updated Microsoft Visual C++ 2005 resp. 2008 redistributables...
    Can someone help me?
    Thank you!

    Hi Patrick,
    Nothing Strange about it. You need local Admin rights to access registry and other parts and CR needs the same.
    Check anti-virus or possibly firewall settings. When you installed did the installer ask you to allow All users to run CR?
    You may want to check with your IT guys, they may have modified your local user group to not allow some rights.
    Bottom kine is your PC security is blocking access that CR needs under your local user account.
    When you do try to run it does UAC pop up a message to allow you to run CR Designer? If not then it may be you have customer settings for that also.
    Search Microsofts site on more info on user rights.
    Thanks
    Don

  • Need alternative for activex print control using Crystal reports 2008

    I have created a .Net web application (2.0/3.5 .Net framework) with crystal reports 2008.
    Reports are viewed using Crystal reports 2008 activex viewer.
    On click of PRINT icon in activex viewer, activex print control download prompt will be displayed on client machine.
    I need to avoid downloading of activex print control on client machine. Is there any other alternative or option to use print functionality in viewer without downloading activex print control on client machine?
    Or Is there any other workaround for print functionality in Crystal reports 2008 Viewer without downloading activex print control?
    Note: Activex print control download prompt will not be displayed when using Crystal reprots XI Release 2 version.
    Thanks,
    Jagannath

    Does anyone know which files need to be registered for the ActiveX print control?  We occasionally have users who somehow break their Crystal ActiveX controls, and they can no longer see the print options.  In Crystal 10, I was able to fix these issues by pushing a package which registered several files on the user's computer.

Maybe you are looking for

  • Preview and Print Form before submitting

    I have created a form. The client would like the person who just filled it out to be able to preview and print it prior to submitting or even after submitting. Would this be part of the form mail script? Does anyone know the PHP scripting code? Thank

  • Shift Org unit to another Org unit

    Hi Experts, I am trying to move one orgnaizational unit to another Org unit. The case is given below: Orgniazational Unit : "Stb Std" > under source : "INJ"  org unit. and also I want to make it with effect from 01/07/2011. Cost Center is not inherit

  • How to retrieve unique records with more than one column

    I have a table sps_prod as described below - POGNAME VARCHAR2(1500) INDEX#VERSION VARCHAR2(200) POG_MODEL_STATUS VARCHAR2(100) POG_LAYOUT_TYPE VARCHAR2(500) POG_MARKET_SPECIFIC VARCHAR2(500) POG_CONTACT_NUMBER VARCHAR2(100) AREA_SUPPORTED VARCHAR2(50

  • K220 Blu-ray player locking up

    I just picked up a k220 from a retailer with a bluray player built in. It runs Intervideo win dvd 8.0. When the movie starts to play the machine locks up and gives me an error message WINDVD MFC Application is not responding. I updated the intel G45/

  • How can I find the Webjournals created in iPhone on my iPad in the iCloud ?

    In iPhoto on an iPad it is possible to create "webjounals", containing photos, videos, text and more in the form of "projects". I can then allow others by email to view them on their macs, computers, iPads etc. But I can find the original webjournals