Crystal report installation problem in windows azure.

Hi Everyone,
Good day!.
I have purchased standard version of web site in windows azure server,i'm converting existing normal asp.net application into widows azure project as web role project.In my existing project they have used crystal report tool to generate the reports.
The issue has been arrived when i published the project into azure server.When i did some R&D people have suggested some tool to install the tool name called "CRRuntime.MSI".We tried and install this msi file both 64 bit and 32 bit,but the
problem we couldn't even know whether the .MSI file got installed or not.
Still we are having same issues in server.Please give your good ideas to short this issue in server.
I'm using VS 2012
Thanks in advance !
Regards,
Ranjithkumar.

Hi,
Please make sure that you are enabling remote connection to the web role while deploying from visual studio 2012. Then get remote connectivity RDP file for the VM and connect to it. Install your tool manually and check if the problem getting resolved. If
this manual installation works then you can schedule installation as start up task in Azure web role.
[Although I don't know if your tool can be installed automatically by .cmd or .bat or powershell script file]
You can add installations as start up task in Azure Web Role service definition file. Here is the link and sample XML tags-
http://msdn.microsoft.com/en-us/library/gg456327.aspx
<ServiceDefinition name="MyService" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition">
<WebRole name="WebRole1">
<Startup>
<Task commandLine="Startup.cmd" executionContext="limited" taskType="simple">
</Task>
</Startup>
</WebRole>
</ServiceDefinition>
Mark As Answer if it helps you |
My Blog

Similar Messages

  • Regarding crystal report runninv problem in windows server 2008

    My name raja gupta.i want to clarify my issue.I used crystal reports 2005(10.0 version).I am accesing that reports in windows server 2008(64 bit) operating system.But i am unable to see the reports,reports was not working and not opened.Give me reply asap.
    Thanks & Regards,
    Raja.

    I would advise to check if windows server 2008(64 bit) is listed as a supported platform.
    If you need urgent support, you can always contact Customer Interaction Center (CIC) and purchase a Single Support Case.
    The CIC contact information you can find in the following SAP note:  
    Note 560499 - Global Support Customer Interaction: Telephone/fax/e-mail
    u2026.
    Business Objects customers:
    Contact information for Business Objects # new support telephone numbers, all numbers available 24 hours 7 days a week
    If the toll-free telephone number listed below is not available for your Customer Interaction Center or Support Advisory Center, call the following emergency numbers:
    - EMEA Region:                                  +353 91 404395
    - North and Latin America Region:               +54 11 5129 3717
    - China, Hong Kong, Japan, South Korea
      Singapore, Taiwan:                              +86 411 3963 1129
    - Malaysia, Philippines, Thailand:               +91 80 4139 9216
    - Australia, New Zealand:                        +61 2 9935 4660
    America
    CIC & SAC Center     Contact information
    USA     T: 1 866 8907686 (toll-free)
         E: [email protected]
    Canada     T: 1,866 6603577 (toll-free)      
         E: [email protected]     
    APJ
    CIC & SAC Center     Contact information
    Australia     T: 1800 081 923 (toll-free)      
         E: [email protected]     
    China CNC     T: 10800 7490097 (toll-free)      
         E: [email protected]     
    China Telekom     T: 10800 4900088 (toll-free)      
         E: [email protected]     
    Hong Kong     T: 800 964 865(toll-free) or +852 25391948           
         E: [email protected]          
    India     T: + 91 80 4139 9217           
         E: [email protected]          
    u2026

  • CRVS2010 Beta - Crystal Report Installation problem

    Hello,
    I have visual studio 2010 professionnal edition (Version 2010 10.0.30319.1RTMrel). (French edition)
    I would like to install and use Crystal Report, so:
    - I dowloaded the Crystal report setup (cr4vs2010.exe).
    - After installing the setup, I want to create my first report in my asp application (Add\New item\Reporting\Crystal report) and each time I do that I am prompted for downloading the crystal report suite.
    Help appreciated, thanks.
    Edited by: Don Williams on Aug 16, 2010 9:50 AM

    Hello Stef,
    I updated the subject line to indicate you are using Beta.
    Currently it's only supported on English builds of VS 2010.
    Read the link at the beginnign of this forum for more info.
    Thank you
    Don

  • APPCRASH - "Crystal Reports has stopped working"- windows message

    Hi,
    I had installed Crystal reports 2008 using valid license keycode on Windows Server 2008 machine ( crystal software not registered it in Sap portal for additional support)  This was used for crystal reports development in .Net for few days, After 1 month or little more , the crystal reports stopped working and when launched from Start -> Programs -> Crystal Reports 2008 displayed a windows error message " Crystal Reports has stopped working ".
    Following is the details about Problem from windows message
    Problem Event name: APPCRASH
    Application name: crw32.exe
    Application version : 12.0.0.683
    Fault Module Name: x2rpclB5.dll
    Exception Code : c0000005
    OS Version : 6.0.6001.2.1.0.274.10
    I Uninstalled and reinstalled the application with valid license keycode and registered as well, but still the error remains same when the application is started.
    Kindly suggest on how to resolve this issue.

    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.
    Reports design, Crystal Reports (exe) installation and other issues should be posted to the [Report Design forum|SAP Crystal Reports;
    Now, looking up the DLL,(x2rpclB5.dll) it appears to be a Xerox printer driver(?). You mention that this started to happen recently, so the question would be; was a Xerox printer driver installed? Also, see if either uninstalling the printer driver or installing any available updates fomr Xerox will resolve the issue.
    Ludek

  • Hi Expert , crystal report export problem. system not responding

    Hi,
    crystal report export problem. system not responding.
    Thanks
    Rajkumar Gupta

    Dear Raj,
    Please try this
              Try
                Dim oSubReport As CrystalDecisions.CrystalReports.Engine.SubreportObject
                Dim rptSubReportDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim rptView As New CrystalDecisions.Windows.Forms.CrystalReportViewer
                Dim rptPath As String = System.Windows.Forms.Application.StartupPath & "\" & rptName
                Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDoc.Load(rptPath)
                rptView.ShowExportButton = True
                rptView.ReportSource = rptDoc
                For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
                    oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                Next
                For Each rptSection As CrystalDecisions.CrystalReports.Engine.Section In rptDoc.ReportDefinition.Sections
                    For Each rptObject As CrystalDecisions.CrystalReports.Engine.ReportObject In rptSection.ReportObjects
                        If rptObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
                            oSubReport = rptObject
                            rptSubReportDoc = oSubReport.OpenSubreport(oSubReport.SubreportName)
                            For Each oSubTable As CrystalDecisions.CrystalReports.Engine.Table In rptSubReportDoc.Database.Tables
                                oSubTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                            Next
                        End If
                    Next
                Next
                'Setting Paper
                Dim rawKind As Integer = 0
                Dim printSet As New System.Drawing.Printing.PrinterSettings
                For i As Integer = 0 To printSet.PaperSizes.Count - 1
                    If printSet.PaperSizes.Item(i).PaperName.ToUpper = PaperName.ToUpper Then
                        rawKind = CInt(printSet.PaperSizes.Item(i).RawKind)
                        Exit For
                    End If
                Next
                Dim MyTest As New SaveFileDialog
                rptDoc.PrintOptions.PaperSize = CType(rawKind, CrystalDecisions.Shared.PaperSize)
                rptDoc.ExportToStream(ExportFormatType.Excel)
                'rptDoc.SaveAs("C:\TBKING.xls", True)
                '''How to export the report
                Try
                    Dim CrExportOptions As ExportOptions
                    Dim CrDiskFileDestinationOptions As New _
                    DiskFileDestinationOptions()
                    Dim rename As String
                    rename = rptName.Replace(".rpt", "")
                    Dim CrFormatTypeOptions As New ExcelFormatOptions
                    CrDiskFileDestinationOptions.DiskFileName = _
                                                "c:\Report\" & rename & "_Export_File.xls"
                    CrExportOptions = rptDoc.ExportOptions
                    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.Excel
                        .DestinationOptions = CrDiskFileDestinationOptions
                        .FormatOptions = CrFormatTypeOptions
                    End With
                    rptDoc.Export()
                Catch ex As Exception
                    MsgBox(ex.ToString)
                End Try
                '' end by kevin shah
                rptView.Show()
                rptView.ShowExportButton = True
                Dim oFrm As New System.Windows.Forms.Form
                rptView.DisplayGroupTree = True
                rptView.Dock = System.Windows.Forms.DockStyle.Fill
                rptView.Location = New System.Drawing.Point(0, 0)
                oFrm.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
                oFrm.Controls.Add(rptView)
                oFrm.Name = "Report Viewer"
                oFrm.Text = "Report Viewer11"
                oFrm.ResumeLayout(True)
                oFrm.WindowState = System.Windows.Forms.FormWindowState.Maximized
                oFrm.TopMost = True
                oFrm.ShowDialog()
            Catch ex As Exception
                objMain.objApplication.MessageBox(ex.Message)
            End Try
    By pressing this button XLS file be generated on C:\report\
    Hope this will resolved the issue
    Thanks
    Kevin

  • Crystal 10 deployment problems to Windows 7

    Hi,
    I'm struggling with deployment to Windows 7 32bit and 64bit machines.
    Problem started with the release of new version of the software. Previous release was working on WIndows 7 32bit.
    New version has no changes in crystal functionality however its now failing on Windows 7 32bit.
    My suspicion is that project references on the build machine have changed and set of crystal dll's is not the same as in working (previous) version.
    Lets start with versions:
    1. .NET 2005 (Framework 2.0) C# Windows Forms
    2. Crystal Reports 10
    Development Machine - Windows XP where project is being build for deployment.
    Visual Studio Configuration Manager is set to x86 Platform
    Deployed to Windows 7 64 bit machine.
    Exception I'm getting is this:
    Load report failed.
    Exception Type: System.AccessViolationException
    Message: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
    I have installed Visual Studio 2005 on this WIndows 7 86bit machine and able to run project in the debug mode.
    Surprisingly no errors - report is displayed. If I run it without debugging report throws same error as listed above.
    I'm puzzled
    Can anyone help?
    Thanks in advance.

    Don,
    Installed process monitor and filtered events by my application - here what I can see:
    However I'm not sure if this gives me enough information to understand an issue. Definitely no "acess denied" errors
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer
    TID:     10068
    Duration:     0.0000013
    Index:     29
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer\ReportDocument
    TID:     10068
    Duration:     0.0000013
    Index:     12
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer\RptDirMgrProgIDs
    TID:     10068
    Duration:     0.0000013
    Index:     3
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer
    TID:     10068
    Duration:     0.0000013
    Index:     29
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer\ReportDocument
    TID:     10068
    Duration:     0.0000012
    Index:     12
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer\RptDirMgrProgIDs
    TID:     10068
    Duration:     0.0000013
    Index:     3
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer
    TID:     10068
    Duration:     0.0000013
    Index:     29
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer\ReportDocument
    TID:     10068
    Duration:     0.0000013
    Index:     12
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer\RptDirMgrProgIDs
    TID:     10068
    Duration:     0.0000013
    Index:     3
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer
    TID:     10068
    Duration:     0.0000013
    Index:     29
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer\ReportDocument
    TID:     10068
    Duration:     0.0000013
    Index:     12
    Length:     48,900
    Date & Time:     1/29/2012 8:29:52 PM
    Event Class:     Registry
    Operation:     RegEnumValue
    Result:     NO MORE ENTRIES
    Path:     HKLM\SOFTWARE\Wow6432Node\Crystal Decisions\10.0\Report Application Server\InprocServer\RptDirMgrProgIDs
    TID:     10068
    Duration:     0.0000017
    Index:     3
    Length:     48,900

  • Oracle database 11g release 2 installation problem on windows 7 (64-bit)

    First of all my windows is not genuine, but on my friend's desktop oracle download and installation  worked fine, he chose "create and configure database" options, and it works very well on his desktop, though his windows is also illegitimate. In my case, when I select "Create and configure database" option and pressed 'next",
    (Go to my blog to see it with snapshots: Computer Science: Oracle database 11g release 2 installation problem on windows 7 (64-bit))
    it asks to select class, I select "Desktop class" and pressed "next". The moment I pressed "next", the whole setup thing disappeared like it was never started. I searched for all possible reasons for why its not getting installed on my laptop, I used registry cleaner s/w,  deleted 25 GB of data to create free space if it were the problem, increased the virtual memory to increase the space for RAM, I did almost everything to get this setup working, but I found no success with the "Create and Configure database" option
    and
    then
    I chose a "database software only" option and chose to store in a folder w/o spaces. This way, I got database s/w only and then later I found "Database configuration Assistant (DBCA)"  from windows START button and clicked to create and configure database manually. The steps are pretty much interactive and doesn't involve much brainstorming.
    The values I filled for
    1) Global Database Name :  orcl
    2) System Identifier : orcl
    3) I chose common password for both SYS and SYSTEM
    4) while on Enterprise Manager Configuration step, It asked me to create and configure listener in oracle home, so for that too, I typed "netca" in windows START menu and clicked it. There I added a listener.
    5) I chose a Storage area which was the Oracle-home itself i.e. where our installation files goes , in my case it is : C:\oracle_base\product\11.2.0\dbhome_1\oradata
    6) Then after few more nitty-gritty clicks, we are set to go !
    Finally to write SQL code and to create your first TABLE , type "sqlplus" in windows "START" menu and click it when it appears. A command-prompt like window appears , which will ask you for username and password, so here they are :
    Username : sys/ as sysdba
    Password : (its the one you created in step 3 stated above )
    After this you are ready to write your first SQL command.

    Is this your solution to your original post at Oracle database 11g release 2 installation on windows 7 (64-bit) ?
    Pl be aware that you should not create any custom objects in SYS or SYSTEM schema - you should create any such objects in a separate custom schema.
    About Database Administrator Security and Privileges

  • Lightroom 3.2 Installation Problem on Windows 7 64-bit

    Lightroom 3.2 Installation Problem on Windows 7 64-bit
    I can't install Lightroom 3.2 (German) on my computer (Windows 7 Professional 64-bit).
    While copying the extracted program files the following error message appears:
    An error occurred during the installation of assembly component {6435B7C0-E0C8-3EA2-91AE-7640034EAFCE}. HRESULT: 0x80070002.
    I found out that other users had the same problem, and couldn't find a solution.
    Perhaps it is a Microsoft .NET Framework related problem. But after installing .NET Framework 4 nothing changed.
    Thanks for ideas to solve the problem.

    Thanks for your advice, Mr. McLion.
    I downloaded the 3.4.1 version and started the installation as administrator. Unfortunately the same error message occured again.
    Then I tried to install the 32-bit version (although I prefer a 64-bit program on a 64-bit operating system). A similar error message appeared at the same point of installation progress, but with another combination of numbers and letters in brackets.

  • Crystal Report Installation File

    Hi All,
    My client has SAP B1 2004A   PL32 installed and i am looking for a crystal reporter installation file. can any one help me on this please.....
    If anyone has this file please help...
    Regards
    Satish

    Dear Chandstish,
    Following is the link to download crystal report add-on installation file for B1 as well as crystal report developer (Evaluation).
    https://www.sdn.sap.com/irj/scn/downloads?rid=/library/uuid/d0a0c14b-0e20-2b10-939b-e93a19f14c12
    Cheers,
    Ashish Tambe

  • Cannot see System DSN in Crystal Reports 2008 on Vista/Windows 2008

    I've been making quite a bit of progress in switching migrating our Crystal Reports 8.0 reports and apps to Crystal Reports 2008 on our Windows 2008 server, but am currently stuck on a DSN issue that I hope someone here can help me out with.
    When I go to select a new ODBC data source in Crystal Reports 2008, the only ODBC data sources that show up in the list are User DSNs.  These reports will be served via our intranet website, so I need to use System DSNs.  The same is true on both my development computer running 64-bit Vista and the production server running Windows Server 2008.
    I'm using Visual Studio 2008 (C#) for development along with Crystal Reports 2008 (not the Crystal Reports Basic that comes with Visual Studio).
    How can I use a System DSN?  Any help or advice will be much appreciated!

    Hi, Paul;
    The first thing to check is to ensure you are creating a 32 bit ODBC DSN, and not a 64 bit one. Crystal Reports 2008 is 32 bit only.
    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=381384&SiteID=1
    Best Regards,
    Jonathan

  • Problem installing Crystal Reports 2013 on a Windows 2012 R2 server

    Sheesh.  One of my users needs crystal reports and still uses it weekly.  It's time to update off of an old 2003 server so I setup a new Windows 2012 R2 server so that she and others can RDP into it and use the application and reports (it's a payroll thing so they want limited access).
    So - totally plain vanilla Windows 2012 R2 install.  Then make sure I have all the .net stuff installed in the windows features.
    But, whenever I run the setup.exe from the downloaded ZIP file from the sap store I get:
    (1) "Assertion failure: A fatal error has occured which has caused the installer to quit.  Please gather any %TEMP% and installer logs to present to your support personnel."
    (2) Then followed by the message:
    Microsoft Visual C++ Runtime Library -- Runtime Error!  Programs: C:\install\CrystalReports\setup.engine\SetupEngine.exe  This application has requested the Runtime to terminate in an unusual way.  Please contact the application's support team for more information.
    (3) Then:
    Problem signature:
      Problem Event Name: APPCRASH
      Application Name: SetupEngine.exe
      Application Version: 60.0.0.62
      Application Timestamp: 543416b3
      Fault Module Name: SetupEngine.exe
      Fault Module Version: 60.0.0.62
      Fault Module Timestamp: 543416b3
      Exception Code: 40000015
      Exception Offset: 00131ee9
      OS Version: 6.3.9600.2.0.0.272.7
      Locale ID: 1033
      Additional Information 1: ee59
      Additional Information 2: ee59ff165b01a7b873dafe8afa2598dc
      Additional Information 3: f1a8
      Additional Information 4: f1a876ca1cb1cf9f6541ac072dd70f88
    I can't find any information on this!  I have found a similar message that refers to a 2011 install that was fixed with a SP9?  But this machine has no current install.  I did buy the full version two days ago online from the sap store.

    There is an older C++ library that you need that is not available by default on Win 2012.  You can get the install for this here:
    Download Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package MFC Security Update from Official Microsoft Do…
    Also, be sure you're logged in with Administrator rights, the right-click and "Run as Administrator" when you run setup.  You might also have to turn off the Windows Firewall when you run the install (you can turn it back on again after the install is complete.)
    -Dell
    Message was edited by: Dell Stinnett-Christy

  • Problems installing Crystal Reports 2008 Server on Windows Server 2008 serv

    I attempted to install the Crystal Reports 2008 product on one of our Windows Server 2008 servers.
    After installing disk 1
    Crystal Reports 2008 Server attempts to open up in IE...... but opens up to a blank page
    http://bmlfileserver:8080/CmcApp/
    anyone have any idea why? why does it not prompt for the second CD?
    Is this a compatibility with Windows Server 2008?

    I'm attempting to install CRS 2008 on Windows Server 2008 as well, and I'm running into a few issues.  Did you ever get yours resolved?  I started by trying to use IIS, but I'm uninstalling it completely now and will try Tomcat instead.  Which route did you go?

  • Crystal Report XI R2 and Windows Vista

    Hi to all,
    I'm working on an application written in Visual C++ 6.0 that print reports using the Crystal Report XI R2 SP4 engine.
    One of my report contain a dynamic image: is a OLE object dynamically linked inside the report.
    My application generate a new image and after that the report is printed.
    Everything works well on Windows 2000 and Windows XP but with Windows Vista the image is stored inside the Virtual Store folder under my user profile and the reports seems to be unable to find/load the modified image.
    So the report is printed with the image that is present in the standard software installation folder (under c:\Program Files\....)
    Anyone have an idea how to solve this problem?
    Thanks in advance,
    Enrico

    Hi Enrico,
    Can you let us know what is the format of the image you are using.
    Thanks,
    Naveen.

  • Crystal Reports Installation Issue (Error 1904/ HRESULT -2147024769)

    Hi,
    While installing Crystal Reports 2008 -trial version on Windows-xp I am getting the following error:
    "Error 1904. Module C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\ReportSourceBridge.dll failed to register. HRESULT -2147024769. Contact your support personnel."
    Integration Kit for SAP has not yet been installed. But Business Objects XI3.1 Client Tools are installed.
    Crystal Reports version is 12.0.0.86.
    Is it an compatibility issue or other problem? What is the resolution? Are there any Fix Pack available? Any alternative approach that works?
    Any suggestions on this are welcome.
    Regards,
    Amogh

    Hello,
    Download Crystal Reports 3.1. It should be version 12.1.0.xxx. It may be the order you are installing also, Install CR first and then the other parts.
    1904 is a MSIExec error code. Typically it's due to outdated Microsoft installer or permissions and/or network speed or.... Be sure you are logged in as the local PC administrator or have the same rights as. Copy the installer to your local hard drive and run the setup.exe by right clicking on it and selecting Run as Administrator...
    Here's a link for the full build of SP1: https://smpdl.sap-ag.de/~sapidp/012002523100006556612009E/cr2008v1win_rf.exe
    Thank you
    Don

  • Crystal Reports 2008 install on Windows Server 2008

    I am trying to do a typical install of Crystal Reports 2008 on Windows Server 2003 and I keep getting an error that says "ReportConvTool.dll failed to register" and then the same error for other dll's, Myinfoview.dll, Encyclopedia.dll, etc.. What can be the problem?
    I installed on a Vista machine with no problems.
    Any and all help is greatly appreciated.
    Thanks,
    Ken

    Hi,
    I will not be able to provide the 'why' of this issue but per my research, these are how other users have done to get through this issue:
    Please ensure that your Windows Server 2003 version is supported in your version of CR 2008 by going through the platform support document in our SMP
    First scenario:
    Continue with your installion ignoring the error message and manually register those DLLs afterwards
    Second scenario
    Continue with your installation ignoring the error message. Go to Add/remove programs and uninstall CR 2008 and reinstall it anew
    Third scenario
    Those DLLs indicates you have other BO products installed in that Windows server 2003. If it is just a test box, remove those products and reinstall them.
    I've listed the steps from easy to complex and hopefully one resolves your issue.
    Worst scenario, please log a ticket to Support through our Service Market Place (SMP)

Maybe you are looking for

  • Is it possible to change the colour of box in script from black to blue

    Hi, Is it possible to change the colour of box in script from black to blue  or some other colour and background colour also...if so how.... Thanks.

  • Ink cartridges life span in Photosmart Pro B8850

    I have an HP Photosmart Pro B8850 Printer that we bought so I could print high quality pictures and also on 12x12 cardstock for scrapbooking.  We don't use our printer very often (maybe once a month), however the ink cartridges seem to run out really

  • Duplicate Function Modules

    This is quite a complicated problem and Iu2019ve tried to simplify a bit. I created a custom FM (Z_FM_1) in a custom function group. When I try to activate it, I get a syntax error u201CINCLUDE  LZRB1$11 - A function already exists with the name Z_FM

  • Problem Iif formula. MDX dimension formula

    Hi experts, I have a quite problem with tolerance in validation rules. When user tries to change Workstatus, system don't let it, because it detect that validation account is not equal to zero, however value of this account seems to be zero. I know t

  • Custom Workflow - Any Idea ?

    Gurus, Need to develop a custom WF for customer credit limit through FD32. Using FD32 if the user change customer credit limit(KNKK-KLIMK), a work item need to triggered to an agent for it's approval. Did any one work or have a idea on this scenario