Crystal Report XI R2 Sp6 - Deploy on Windows 7

i'm trying to deploy CR XI R2 on p.c. with windows 7 32bit/64bit
i'have buil a setup package with contains a reference to "CrystalReports11_5_NET_2005.msm"
i have installade this package on my test machine and i try to use my local web app to print
(i have reference to:
                    <add assembly="CrystalDecisions.CrystalReports.Engine, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                    <add assembly="CrystalDecisions.ReportSource, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                    <add assembly="CrystalDecisions.Shared, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                    <add assembly="CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/></assemblies>
application don't work
it's possible that i can't deploy on windows 7?
tahnk you

It would be really nice to have more than just "application don't work :-("
CR XI SP 6 is supported on WIN 7. But, more info is required;
What error messages are you getting?
What's the behavior?
What do you actually see?
What are the symptoms?
What is the version of crpe32.dll on your development computer and the Win 7 computer?
The more info you give, the more likely it is we will be able to resolve it.
Ludek

Similar Messages

  • Crystal Reports XI R2 SP6 can be not installed?

    I download SP6 via https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/spn/bobj_download/main.htm.
    But  Crystal Reports XI R2  SP6 can be not installed.
    It prompt message:
    Crystal Reports Service Pack 6 is for Crystal Reports XI R2 only, and can not be installed on top of other Business Object XI R2 products.
    I check my Crystal Report developer, and its version is Crystal Reports XI Release 2 sp3.
    Who do anyone know?
    Thanks.

    Hi
    I would recommend to open a case by SAP support (http://service.sap.com/support) about this.
    Regards,
    Stratos

  • Crystal Reports for VS 2008 deployment on a web server

    Hello,
    I have .NET web application created in Visual Studio 2008. It uses built-in Crystal Report Viewer control. The reports are not built into the assembly, they are loaded from report files prepared outside of Visual Studio 2008.
    I would like to deploy Crystal Reports run-time components on a web server (Windows 2008 server with IIS 7).  I have found the article describing what needs to be deployed: https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=56787567
    Can you please let me know what kind of setup (virtual folder(s), permissions) is needed to make Crystal runtime components available for my web application. I have been trying to find instructions in the forums/wikis/articles with no success. I will need this info to communicate with our system administrator.
    Thank you.

    As long as you are deploying your app to a default app pool, you do not need to worry about virtual directories. The process you are running under will need read / write permissions on the win     emp folder as the report print engine uses that extensively.
    If you are using custom app pool you will have to either
    1) create the viewer virtual directory
    2) make the viewer folder part of your app directory structure
    Other than that, keep the following resources close at hand:
    KB 1329630
    KB 1278952
    [Dynamic images appear as red X on Crystal Reports in VS .NET web viewer|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0437ea8-97d2-2b10-2795-c202a76a5e80]
    [Viewer toolbar images appear as red u2018X on Crystal Reports VS .NET web viewer|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a]
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • SAP Crystal Report using SQL Server Authentication and Windows Authenticati

    I'm a SAP Crystal Report, version for Visual Studio 2010 Beginner
    my ingredients are
    1.windows 7 ultimate service pack1
    2.sql server 2008 standard edition
    3.visual studio 2010 pro
    4.SAP Crystal Report, version for visual studio.net
    I was created a report named customersByCity.rpt using OLE DB (ADO) -> Microsoft OLE DB Provider for SQL Server -> I'm supply Server, User ID, Password and Database. I assume me using SQL Server Authentication for my report
    Then, my ASP.NET files as following
    //ASP.NET
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="viewCustomersByCity.aspx.cs" Inherits="viewCustomersByCity" %>
    <%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
        Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <div><asp:Label ID="lblMsg" runat="server" BackColor="Yellow" ForeColor="Black"></asp:Label>
     <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true"></CR:CrystalReportViewer>
        </div>
        </form>
    </body>
    </html>
    //code-behind
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Collections;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    public partial class viewCustomersByCity : System.Web.UI.Page
        private const string PARAMETER_FIELD_NAME = "city";   
        private ReportDocument customersByCityReport;
        private void ConfigureCrystalReports()
            ConnectionInfo connectionInfo = new ConnectionInfo();
            connectionInfo.ServerName = @"WKM1925-PCWKM1925";
            connectionInfo.DatabaseName = "Northwind";
            connectionInfo.UserID = "sa";
            connectionInfo.Password = "sysadmin25";
            SetDBLogonForReport(connectionInfo);
        private void SetDBLogonForReport(ConnectionInfo connectionInfo)
            TableLogOnInfos tableLogOnInfos = CrystalReportViewer1.LogOnInfo;
            foreach (TableLogOnInfo tableLogOnInfo in tableLogOnInfos)
                tableLogOnInfo.ConnectionInfo = connectionInfo;
        private void SetCurrentValuesForParameterField(ReportDocument reportDocument, ArrayList arrayList)
            ParameterValues currentParameterValues = new ParameterValues();
            foreach (object submittedValue in arrayList)
                ParameterDiscreteValue parameterDiscreteValue = new ParameterDiscreteValue();
                parameterDiscreteValue.Value = submittedValue.ToString();
                currentParameterValues.Add(parameterDiscreteValue);
            ParameterFieldDefinitions parameterFieldDefinitions = reportDocument.DataDefinition.ParameterFields;
            ParameterFieldDefinition parameterFieldDefinition = parameterFieldDefinitions[PARAMETER_FIELD_NAME];
            parameterFieldDefinition.ApplyCurrentValues(currentParameterValues);
        protected void Page_Load(object sender, EventArgs e)
            customersByCityReport = new ReportDocument();
            string reportPath = Server.MapPath("customersByCity.rpt");
            customersByCityReport.Load(reportPath);
            ConfigureCrystalReports();
            ArrayList arrayList = new ArrayList();
            arrayList.Add("paris");
            arrayList.Add("Madrid");
            arrayList.Add("Marseille");
            arrayList.Add("Buenos Aires");
            arrayList.Add("Sao Paulo");
            ParameterFields parameterFields = CrystalReportViewer1.ParameterFieldInfo;
            SetCurrentValuesForParameterField(customersByCityReport, arrayList);
            CrystalReportViewer1.ReportSource = customersByCityReport;
    1st scenario
    When in a runtime, it's keep appear a dialog box. This dialog box ask me to suppy Server, User ID, Password and Database. Once all information is supplied, my report display the data as expected
    2nd scenario
    I change my report using OLE DB (ADO) -> Microsoft OLE DB Provider for SQL Server -> checked on Integrated Security. I just choose Server, and Database. I assume me using Windows Authentication
    When in a runtime, there's no dialog box as above. My report display the data as expected. really cool
    Look's like, when report using SQL Server Authentication there's some problem. but, when report using Windows Authentication, it's fine.
    I'm looking for comment. Please help me

    Hello,
    MS SQL Server 2008 requires you to install the MS Client Tools for 2008.
    Once install then update all of your reports to use the SQL Native 10 as the OLE DB driver.
    The try again, if it still fails search, lots of sample log on code in this forum.
    Don

  • Crystal Reports for VS 2010  Deployment

    Hi All, I am having trouble with CR deployment. I get the error Crystal report data base logon failed. when I click the verify database in the field explorer I get the error :the proccess can not access the file <my db file> because it is being used by another proccess.
    some of my reports does succeed with verify DB and I get "DB is up do date ".
    question is what causes that behaviour?
    Hagit

    It sounds like the file is being locked by another process.  You may want to run a utility like [Process Explorer|http://technet.microsoft.com/en-us/sysinternals/bb896653] to see if you can see which process that is.

  • Printing Crystal Reports without calling Adobe Acrobat preview window

    Post Author: akurilin
    CA Forum: General
    Hi, each time a click a Print icon in a Crystal report preview toolbar, it opens a dialog box which opens an Adobe Acrobat preview window. Is it possible to print a Crystal report without calling Adobe Acrobat window?
    Thanks in advance,
    Anatoly Kurilin

    Post Author: lakarne
    CA Forum: General
    I want to know if I useing Crystal Reports xi and want print without calling Adobe Acrobat preview window, how can I do it?

  • Error when use Crystal report Bundled Version with Vs2003 on Windows Vista

    Post Author: MartinoLuccarelli
    CA Forum: .NET
    Hi,  I have developed a software with Vs2003 that uses Crystal report Bundled Version.   I have created a Installation package that include the merge modules,   and i have entered the Licence Key for Crystal_regWiz2003 module.    If i install and use the software in the computer with XP or Windows 2000 I do not have problems.    But when i install the software on the PC with Windows Vista i have this error when the probram show a report "Operazine di Crystal Report non Riuscita perche' non e' stato possibile ottenere una licenza gratuita nel tempo allocato"  Thank's

    Uninstall CRVS2010 that you currently have installed.
    To remove the assemblies from the GAC use gacutil. Google will get you a number of links on how to. Also, see the KB [1535325  - How to remove CRVS2010 Beta 2|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533333335333333323335%7D.do].
    Reinstall CRVS2010 SP1 from here:
    SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads [original link is broken]
    - Ludek

  • Getting an error trying to install Crystal Reports 2008 on a 64 bit Windows

    reformatted my computer and now I'm trying to install Crystal Reports 2008 on 64 bit windows 7 box.  When the "Registering modules" portion of the install comes up, I get a message that a dll has failed to register.  I saw something about not having the Microsoft Visual c++ 2005 redistributable pack (x86) installed but that was not it either.
    The cd label say Crystal Reports to Crystal Reports 2008 Upgrade, but it does not seem like I have to have the older version of Crystal insatlled.
    Any ideas how to fix this ?

    Hello together,
    i've had the same problem. Tried to install CR SP 2 "cr2008win_sp2.exe" onto an existing CR 2008 SP1 installation, and got the above error. After extracting the cr2008win_sp2.exe to an folder using Winzip (or just start Installation, the source would be extracted to "c:\temp" ), navigate to the subfolder "\package" and execute the CrystalReports.msp (in my case: c:\temp\package\CrystalReports.msp). This start's the Installation of SP 2. If you get an version mismatch, use parameter SKIP_PATCH_VERSION_CHECK=1 by typing command in an dos prompt "c:\temp\package\CrystalReports.msp SKIP_PATCH_VERSION_CHECK=1" but remember, you need to have an SP1 installed (somebody said, SP's are incremental).
    Reboot and apply then the  CR 2008 SP2 FixPack 7 "cr2008fp27.exe". Use this Link to Download CR and Xcelsius Stuff:
    [https://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm]
    I would suggest you not to use IE for downloading, use an alternative browser. I got only bad downloads (IE8 on Win7).
    This is the way i did and this works pretty good.
    Good Luck
    Matthias

  • Crystal Report XI R2 - RDC supported on Windows 64-bit

    Hello!
    We are using Crystal Report XI R2 runtime RDC component on Windows 32-bit platform.
    Is the RDC supported on Windows 64-bit platform?
    Best regards,
    A.

    Hi Alessandro,
    The version of Crystal Reports that comes with MS Visual Studio .NET, which is CR version 10.x, is 64 bit but is quite limited in it's functionality. Only some export types and database drivers are supported. It basically only allows you to view reports, no RCAPI functionalty at all.
    I suggest not going that way. RDC is not 64 bit at all, it's old COM engine and will not work in 64 bit mode as I said above. The RDC is not supoorted using .NET also.
    Thank again
    Don

  • SBO Crystal Report 2008 Add-on on 64bit Windows 2008 Server

    Dear Friend,
    Do you have any experience on installing SBO Crystal Report 2008 Add-on with SAP B1 2007 B on 64bit Windows 2008 Server (SBS)? Could you please explain the exact reason for the following error on installation of the add-on on its final stage?
    Retrieving the COM class factory for component with CLSID {3E...} failed due to the the following error: 80040154

    [crystal report integration for SAP Business One|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/707f51b3-0b20-2b10-8daa-d8ee72ace309 [original link is broken]] version v2.0.0.7
    [Run time Download|https://smpdl.sap-ag.de/~sapidp/012002523100009351352008E/crruntime_120_mlb.msi]
    Thanks
    Krish

  • 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

  • Crystal Report XI Release 2 - Deployment Bug on SQL Server

    Post Author: PeterLiebich
    CA Forum: General
    H
    We have a VS 2005 Crystal web app deployed onto a server - not using the RAS but using the Crsytal Report Viewer.
    Nearly Everything is working however we have one slight bug which is driving me mad.
    All of our reports are constructed against a development SQL Server, and then the Application resets the report location at run time to the Appropriate production server.
    Everything works fine when I run the appliction via VS 2005 on my XP machine, the reports repoint successfully etc.
    When I build the App and deploy it to a server, the CrystalReportViewer fails with a "Database logon failed" if (and only if) the name of the database that the report was developent against is the same as the name as the database is being repointed to (on a different server).  If the developement and production databases have different names then the resetting of the location works fine.
    As I said the repointing works fine when I run the App on my development machine which has Crystal Reports XI Release 2 installed.
    On the Server I have installED the Crystal dlls via CrystalReports11_5_NET_2005.msi dated 2007/03/01.
    I have also tried to deploy dlls via a GAC using CrystalReports11_5_NET_2005.msm dated 2006/02/24.
    All to no avail
    Here is the code I use to repoint the report
    Dim crConnectionInfo As New CrystalDecisions.Shared.ConnectionInfo
    crConnectionInfo.IntegratedSecurity = True
    crConnectionInfo.ServerName = v_ServerName
    crConnectionInfo.DatabaseName = v_DatabaseName
    'loop through all the tables and pass in the connection info
    Dim crTableLogOnInfo As CrystalDecisions.Shared.TableLogOnInfo
    For Each crTable As CrystalDecisions.CrystalReports.Engine.Table In  Me.m_ReportDocument.Database.Tables
      crTableLogOnInfo = crTable.LogOnInfo
      crTableLogOnInfo.ConnectionInfo = crConnectionInfo
      crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    'set the crSections object to the current report's sections
    'loop through all the sections to find all the report objects
    Dim crSubreportObject As CrystalDecisions.CrystalReports.Engine.SubreportObject
    Dim crSubreportDocument As CrystalDecisions.CrystalReports.Engine.ReportDocument
    For Each crSection As CrystalDecisions.CrystalReports.Engine.Section In Me.m_ReportDocument.ReportDefinition.Sections
      'loop through all the report objects to find all the subreports
      For Each crReportObject As CrystalDecisions.CrystalReports.Engine.ReportObject In crSection.ReportObjects
        If crReportObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
        ' you will need to typecast the reportobject to a subreport object once you find it
         crSubreportObject = CType(crReportObject, CrystalDecisions.CrystalReports.Engine.SubreportObject)
         'open the subreport object
         crSubreportDocument = crSubreportObject.OpenSubreport(crSubreportObject.SubreportName)
        'loop through all the tables in the subreport and
        'apply the connection set up previously to the subreports
        For Each crTable As CrystalDecisions.CrystalReports.Engine.Table In crSubreportDocument.Database.Tables
          crTableLogOnInfo = crTable.LogOnInfo
          crTableLogOnInfo.ConnectionInfo = crConnectionInfo
          crTable.ApplyLogOnInfo(crTableLogOnInfo)
        Next
        End If
      Next
    Next

    Post Author: jjamcgu
    CA Forum: General
    Don't know if you ever found a solution, but here is how I got it to work.
    1) If it was created pointing to a localhost database, it may be using named pipes to connect, where as production / test uses TCP/IP.  Our CR9 system automatically switched from Named Pipes to TCP/IP but CR11 does not.  Repointing the report to a non local version of the database fixed one problem of runtime switching.  (This includes switching back to localhost).
    2) When you change the server name, CR11 does not update the table object, but clones it and applies the update to the clone.  I needed to update the location apply the update and then apply the login change (I am not using integrated security, so this may not apply to you.).  See the code below.  I call setServerInfo and then setLogonInfo. Sub setLogonInfo(ByRef myReport As ReportDocument)
            Dim logonInfo As New TableLogOnInfo
            Dim table As CrystalDecisions.CrystalReports.Engine.Table
            For Each table In myReport.Database.Tables
                logonInfo = table.LogOnInfo
                logonInfo.ConnectionInfo.UserID = loginName
                logonInfo.ConnectionInfo.Password = loginPassword
                table.ApplyLogOnInfo(logonInfo)
            Next table
        End Sub
        Sub setServerInfo(ByRef myReport As ReportDocument)
            Dim logonInfo As New TableLogOnInfo
            Dim table As CrystalDecisions.CrystalReports.Engine.Table
            For Each table In myReport.Database.Tables
                logonInfo = table.LogOnInfo
                Select Case AppSettings("DataEnvironment")
                     Case "PRODUCTION"
                          logonInfo.ConnectionInfo.ServerName = "productionServer.local"
                     Case "TEST"
                          logonInfo.ConnectionInfo.ServerName = "testServer.local"
                     Case "LOCAL"
                          logonInfo.ConnectionInfo.ServerName = "localhost"
                 End Select
                 table.ApplyLogOnInfo(logonInfo)
            Next table
        End Sub

  • Crystal Reports v10. SP6 install failed. Reinstall product code invalid

    As the title says, I downloaded and installed the SP6 patch for Crystal Reports Professional Edition version 10, and the programme crashed on load up (even after numerous restarts of the computer)
    I tried re-installing the patch to no avail.
    So I loaded the original full installation file, and ran the 'reinstall' option. The prompt box checked that I wanted to uninstall existing version first, which I declined to do on the first pass (this didn't resolve the problem)
    I then re-ran the reinstall and selected 'yes' to uninstall existing, this being the only option left to me.
    I was then prompted to re-enter the product code. I did this using the original code supplied when I bought the software (in 2004) and the code was rejected as it has apparantly 'expired'.
    After about an hour trying to decipher this website, I called a couple of support numbers, both of which insisted the only way to contact support was through this forum.
    Hence this post.
    I would be grateful therefore for any response.

    Spoke too soon.
    Programme is now installed, but prompting me for a registration key, which I do not have.
    Website link embedded within programme is now out of date.
    ..so I'm back to this forum which I understand is my sole source for this information.
    Any help gratefully received.

  • Crystal Reports XI and VB6 Deployment

    Hi,
    I'm new to crystal reports so please be gentle.
    Due to a legacy application I need to use crystal reports with vb6 so I opted for the XI version over 2008.
    So i've knocked up a quick viewer in vb6 that will pass parameters (as required) to the requested .rpt file.
    Now i've got it working - what crystal files do I need to deploy my viewer ??
    Is there a crystal runtime to be installed on users machines ?? and are there additional licensing cost's ??
    Thanks for any and all help.
    Saboteur

    Thanks for the reply Don.
    Unfortunately I have searched the forum and have found nothing but confilcting information and frustration.
    Also, I should have been clearer in my original q, in that I'm using the 30 day trial of CR Xi and not all of the information is included in the download, specificaly the documentation refers to  a vb sample folder that doesn't exist and whilst i found documentation on the rdc model, i found no info on distribution.
    I'm not trying to be difficult, but it's taken me nearly two days of trawliing the internet just to get a simple viewer working in VB6 and even now I think i may be using the wrong / to many references in my code.
    All i wanto to do is build a veiwer that i can enter paramters into - the reports will all be pre defined using CR Xi - but i'm not going to spend the best part of 500gbp to write reports I can't distribute.
    I've managed to get the hang of the report builder in under and hour and have figured out how to do some quite complicated reports very quickly and cannot praise CR enough for it's ease of use. It's just lacking in the final furlong imho.
    Cheers
    Saboteur

  • Crystal Report Runtime start splwow64.exe on windows 64 OS

    Hi,
    We are using the Crystal Reports runtime in our application. We are utilizing the runtime through the COM interface. Recently a client of us installed our application on windows 2003 64-bit. Now whenever a report is created windows starts splwow64.exe. As i understand this is a process started by windows to ensure compatibility with 32-bit. Normally this process is released when the job is done. However in our case the proces is never released and remains exclusively locked. Other application on the same machine also need this splwow64 process and this is now causing a problem.
    When the other applications on the server start splwow64 first it released when the job is done. It is only when creating a report (pdf) using the CR-runtime, it is never released.
    Any help would be very much appriciated!
    TIA
    Ronald

    Hi Ronald,
    XI is past it's end of life so nothing we can do to fix it now. Try CR XI R2 ( 11.5 ) with Service Pack 6, it has a better chance of working on 64 bit OS's.
    Go to this link: http://www.sdn.sap.com/irj/boc and download the trial version of CR XI R2 and use your XI keycode, then apply the patches which you can get to by clicking on the BusinessObjects tab above, then Downloads.
    Direct link to the Trial version: http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    Searching on this dll it appears to be the 32 to 64 bit Thunking spooler that converts 32 bit print jobs into 64 bit jobs ( or the other way around ). CR only supports 32 bit runtime so it may be that your print driver has issues. If you can find one that is 32 bit only but works on 64 bit OS then that will likely resolve the issue.
    Otherwise I suggest you contact the printer manufacture and ask them how to make their 64 bit driver work with a 32 bit app.
    Thank you
    Don

Maybe you are looking for

  • Unable to capture onClick event of htmlb:image in a controller

    Hi, I am trying to capture onClick event of an htmlb:image (which is present in my view) in DO_HANDLE_EVENT method of my controller. Surprisingly, when I click the image, page does refreshes. But the event in not captured in do_handle_event method. C

  • My cd drive won't read the cd's i put into it

    i have an audio book 16 cd's long that im trying to upload into itunes so i can put it on my ipod, but when i insert the disc it opens itunes and gives me a spinning beachball i have to force quit itunes then reopen it to start ripping the cd, it's g

  • AnyConnect Secure Mobility Client with Oracle ESSO 11.1.1.5

    Hello, we are about to implement Oracle SSO for our client whose employees use Cisco AnyConnect Secure Mobility Client 3.0.5080 to access their internal network. The VPN access requires having the correct certificate installed on the client computers

  • Updates iOS on iPad via iTunes.  Update bricked iPad, help please?

    Running latest version of iTunes.  Got a notice to update OS on my iPad 2.  So I followed the instructions.  Halfway through the update bricks my iPad. No computer recognizes the iPad.  iPad screen displays the "plug me into iTunes".  iPad won't turn

  • Problems with HAL policies

    I seem to have HAL policies problem. If I login as user into gnome, volumes aren't auto-mounted. But if I login as root, they are auto-mounted. moreover, If I login as user after logging as root, the volumes are already mounted and are accessible by