Crystal Report MSI Problem

Dear All
i had made an application using Crystal Report 13 and Visual studio 2010 and made an installer for it. but the application generates the Crystal Report Component error on client machine. can any one help me regarding this?
MSIs that were used were downloaded from the following links:
MSI 32 bit
http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_32bit_13_0_1.zip
MSI 64 bit
http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_64bit_13_0_1.zip
Thanks.
Edited by: umeryounas on Jul 11, 2011 6:24 AM

Dear Don
I have situation where i have a desktop application in VS2010 using CR2010. i make an installer for it, to install on the client machine. now when i run the setup to the client machine, i m getting the almost 20 errors and some of them are listed below.
Error 1904.Module C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\crtslv.dll failed to register. HRESULT -2147010895. Contact your support personnel.
Error 1904.Module C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\pageobjectmodel.dll failed to register. HRESULT -2147010895. Contact your support personnel.
Error 1904.Module C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\reportrenderer.dll failed to register. HRESULT -2147010895. Contact your support personnel.
Error 1904.Module C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\saxmlserialize.dll failed to register. HRESULT -2147010895. Contact your support personnel.
Error 1904.Module C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\commonobjmodel.dll failed to register. HRESULT -2147010895. Contact your support personnel.
a lot of more...but from the same directory as  "C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\".
i had got through many of the posts here listed as follows:
Installing CR for VS2010 throws 1904 Exception - fails to register many dll
Crystal Reports for VS2010 Installation issue - Error 1904
but didnt get the answer, because we dont know about the users machine. user just needs to install this windows application using the setup already created using Installshield wizard. The MSI's included in the setup was downloaded from this URL:
http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_32bit_13_0_1.zip
Now wot can i do, so that the user can easily install this software without getting any error.
Thanks a lot
Umer Younas
Edited by: umeryounas on Jul 18, 2011 11:46 AM

Similar Messages

  • 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 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

  • Crystal Report Preview Problem

    Dear All,
    I have done a crystal report for Sales Quote and imported using Administration-->Setup-->General-->Reports and Layouts.
    It shows that the report is imported successfully but when i go and give print preview, it shows an error as "LogOn Failed Please Try Again".
    I dont know why this error occurs.
    But the other reports are working well.
    Help me solving this issue.
    Regards,
    Janani

    hi
    Janani..
    Actually i never Seen This Type of problem..
    I have one Doubt May be u have Developed in ur system n then import it to the client server..
    before importing have u change the login credentials....
    After i search i got below link just have a look on below post If it's not use ful just ignore the mail....
    System asks for SA Password when printing with Crystal Reports

  • Crystal report related problem

    Hello All,
    SELECT
    TOP (100) PERCENT T0.CardCode, T0.CardName, T0.Address, T3.Name, T0.DocDate, T0.DocNum, T0.VatSumFC, T0.U_Suffix, T2.Phone1, T2.Phone2,
    T2.Fax, T4.PymntGroup, T1.Dscription, T1.ItemCode, T1.Quantity, T1.OpenQty, T1.Price, T1.Currency, T1.LineTotal, T1.TotalFrgn, T1.U_Text_Rate,
    T1.Quantity as U_Order_Qty, T1.OpenQty as U_Order_OpenQty, T6.InvntryUom,  T1.U_Order_UoM, T1.Price as U_List_Price, 1 as U_ConvFactor, T1.U_OB_MANU, T1.U_OB_MANUPART, T1.FreeTxt,
    T5.SlpName, T5.Memo, T0.U_RequestedBy, T0.U_Note1, T0.SlpCode, T0.U_Note2, T0.U_Remarks1, T0.U_Remarks2, T0.U_Remarks3,
    T0.U_Remarks4, T0.U_Remarks5, T0.U_Remarks6, T0.U_Remarks7, T0.U_Remarks8, T0.U_Remarks9, T0.U_Remarks10, T0.U_Remarks11,
    T0.U_Remarks12, T0.U_Remarks13, T0.U_Remarks14, T0.U_Remarks15, T0.U_Remarks16, T0.VatSum, T0.DocDueDate, T1.LinManClsd, T0.DiscPrcnt,
    T0.DiscSum, T0.DiscSumFC, T6.SWW, SUM(T7.Quantity) AS RecdOrdrQty, SUM(T7.Quantity) AS RecdQty, T1.LineNum, T1.VisOrder
    FROM    
    dbo.OPOR AS T0 INNER JOIN
    dbo.POR1 AS T1 ON T0.DocEntry = T1.DocEntry INNER JOIN
    dbo.OCRD AS T2 ON T0.CardCode = T2.CardCode INNER JOIN
    dbo.OCPR AS T3 ON T0.CntctCode = T3.CntctCode INNER JOIN
    dbo.OCTG AS T4 ON T0.GroupNum = T4.GroupNum INNER JOIN
    dbo.OSLP AS T5 ON T0.SlpCode = T5.SlpCode INNER JOIN
    dbo.OITM AS T6 ON T1.ItemCode = T6.ItemCode LEFT OUTER JOIN
    dbo.PDN1 AS T7 ON T1.DocEntry = T7.BaseEntry AND T1.LineNum = T7.BaseLine
    Where
        T0.DocEntry = {?Dockey@}
    GROUP BY T0.CardCode, T0.CardName, T0.Address, T3.Name, T0.DocDate, T0.DocNum, T0.VatSumFC, T0.U_Suffix, T2.Phone1, T2.Phone2, T2.Fax,
    T4.PymntGroup, T1.Dscription, T1.ItemCode, T1.Quantity, T1.OpenQty, T1.Price, T1.Currency, T1.LineTotal, T1.TotalFrgn, T1.U_Text_Rate,
    T1.Quantity, T1.OpenQty, T6.InvntryUom, T1.U_Order_UoM, T1.Price, T1.U_OB_MANU, T1.U_OB_MANUPART, T1.FreeTxt,
    T5.SlpName, T5.Memo, T0.U_RequestedBy, T0.U_Note1, T0.SlpCode, T0.U_Note2, T0.U_Remarks1, T0.U_Remarks2, T0.U_Remarks3,
    T0.U_Remarks4, T0.U_Remarks5, T0.U_Remarks6, T0.U_Remarks7, T0.U_Remarks8, T0.U_Remarks9, T0.U_Remarks10, T0.U_Remarks11,
    T0.U_Remarks12, T0.U_Remarks13, T0.U_Remarks14, T0.U_Remarks15, T0.U_Remarks16, T0.VatSum, T0.DocDueDate, T1.LinManClsd, T0.DiscPrcnt,
    T0.DiscSum, T0.DiscSumFC, T6.SWW, T1.LineNum, T1.VisOrder
    ORDER BY T1.VisOrder
    I have wrote above query in crystal reports. Its working fine
    But i am not able to see the Print Preview only for 2 business partners.
    Can anyone check this query and help me to find out the issue.
    Regards,
    Hitul

    HI , 
    This conditions may be problem for that particular BP , 
    dbo.OCPR AS T3 ON T0.CntctCode = T3.CntctCode INNER JOIN  
    dbo.OCTG AS T4 ON T0.GroupNum = T4.GroupNum INNER JOIN  
    you can Change LEFT JOIN instead of INNER JOIN and then check the result.
    -Rajesh N

  • Crystal Report Login Problem

    I am using Visual studio 2008 and crystal report 2008 in a web application.
    I have problem in logging to the database from crystal report by applying the connection info for the runtime (Connect to ODBC DSN).
    I got this error: System.Runtime.InteropServices.COMException: Logon failed.Error
    Dim CrystalReport1 As New ReportDocument*
    CrystalReportSource1.Load(path)*
    Dim conn As ConnectionInfo = New ConnectionInfo*
    conn.UserID = "UserID"*
    conn.Password = "Password"*
    conn.ServerName = "DSN Name"*
    conn.DatabaseName = ""*
    For Each crTable As Table In CrystalReport1.Database.Tables*
    Dim tblLocation As String = crTable.Location*
    Dim tloi As TableLogOnInfo = crTable.LogOnInfo*
    tloi.ConnectionInfo = conn*
    crTable.ApplyLogOnInfo(tloi)*
    crTable.Location = tblLocation*
    Next*
    For i = 0 To fieldName.Count - 1*
    CrystalReport1.SetParameterValue(fieldName(i), Fieldval(i))*
    Next*
    CrystalReportViewer1.ReportSource = CrystalReport1*
    CrystalReportViewer1.DataBind()*
    I am using oracle providers for ASP.net
    *+<membership defaultProvider="MyOracleMembershipProvider">+*
    *+<providers>+*
    *+<add name="MyOracleMembershipProvider" type="Oracle.Web.Security.OracleMembershipProvider,Oracle.Web,Version=2.111.6.20, Culture=neutral,PublicKeyToken=89b483f429c47342" connectionStringName="conn_string" applicationName="AppName" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="true" passwordFormat="Hashed" maxInvalidPasswordAttempts="4" minRequiredPasswordLength="6" passwordAttemptWindow="8"/>+*
    *+</providers>+*
    *+</membership>+*
    *+<roleManager enabled="true" defaultProvider="MyOracleRoleProvider">+*
    *+<providers>+*
    *<add name="MyOracleRoleProvider" type="Oracle.Web.Security.OracleRoleProvider,                Oracle.Web, Version=2.111.6.20, Culture=neutral,                PublicKeyToken=89b483f429c47342" connectionStringName="conn_string" applicationName="AppName"/>*
    *+</providers>+*
    *+</roleManager>+*
    I noticed that when I disable the provider from my project, the reports works fine
    Anybody knows how to solve this?

    If you are looking for a reporting solution that's easy-to-use including connecting with Oracle databases just install the ADO.NET Oracle connector), that's why we created the Windward Report Engine. Companies need a powerful, secure enterprise-level .NET reporting engine to back their critical reporting and document generation systems.
    The Windward Engine installs easily, runs on one or more servers as part of your server-based application, and can easily produce hundreds of thousands of reports per day on a single server. The server is a pure .NET product (and also is available as Java/J2EE).
    Even better news for you guys: When combined with the Windward report design tools AutoTag and AutoTag Max, users design, schedule and run reports from within Microsoft Office. That means you can turn over reporting to the business group and get back to more interesting work.
    You don't have to take my word for it. Check out our [robust .NET reporting engine|http://www.windwardreports.com/dot_net.htm?source=pday909&campaign=pday909&utm_source=everyr&utm_medium=post&utm_campaign=pday909&id=304] for yourself.

  • Crystal report display problem--urgent

    i am trying to display to display crystal report in jsp page..
    i have mentioned the entries in web.xml as below
    <env-entry>
              <env-entry-name>clientSDKOptions</env-entry-name>
              <env-entry-value>C:\ProgramFiles\Common Files\Crystal Decisions\2.0\jars\clientSDKOptions.xml</env-entry-value>
              <env-entry-type>java.lang.String</env-entry-type>
         </env-entry>
         <env-entry>
              <env-entry-name>crystal_image_uri</env-entry-name>
              <env-entry-value>/crystalWeb/crystalreportviewers/</env-entry-value>
              <env-entry-type>java.lang.String</env-entry-type>
         </env-entry>
    crystalWeb is webproject folder.
    waiting for an earlier response.
    thanks to all
    krish..
    [11/05/04 11:01:33:164 GMT+08:00] 41c3089e WebGroup I SRVE0180I: [crystalWeb] [crystalWeb] [Servlet.LOG]: /CrystalReportsInteractiveViewer.jsp: init
    [11/05/04 11:01:40:404 GMT+08:00] 6d40488e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/css/default.css has not been defined
    [11/05/04 11:01:40:444 GMT+08:00] 6d40488e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/js/search.js has not been defined
    [11/05/04 11:01:40:515 GMT+08:00] 6d40488e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/js/fw_menu.js has not been defined
    [11/05/04 11:01:40:525 GMT+08:00] 41c3089e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mlogo.gif has not been defined
    [11/05/04 11:01:40:555 GMT+08:00] 6d40488e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mviewlist.gif has not been defined
    [11/05/04 11:01:40:575 GMT+08:00] 41c3089e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mfirstgrey.gif has not been defined
    [11/05/04 11:01:40:585 GMT+08:00] 6d40488e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mprevgrey.gif has not been defined
    [11/05/04 11:01:40:595 GMT+08:00] 41c3089e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mnextgrey.gif has not been defined
    [11/05/04 11:01:40:655 GMT+08:00] 41c3089e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mprevgrey.gif has not been defined
    [11/05/04 11:01:40:675 GMT+08:00] 41c3089e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mgotopage.gif has not been defined
    [11/05/04 11:01:40:685 GMT+08:00] 41c3089e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mexport.gif has not been defined
    [11/05/04 11:01:40:655 GMT+08:00] 6d40488e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mfirstgrey.gif has not been defined
    [11/05/04 11:01:41:015 GMT+08:00] 6d40488e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/msearch.gif has not been defined
    [11/05/04 11:01:41:045 GMT+08:00] 6d40488e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mprint.gif has not been defined
    [11/05/04 11:01:41:055 GMT+08:00] 6d40488e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mzoom.gif has not been defined
    [11/05/04 11:01:41:065 GMT+08:00] 6d40488e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mhelp.gif has not been defined
    [11/05/04 11:01:41:015 GMT+08:00] 41c3089e OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mlastgrey.gif has not been defined
    [11/05/04 11:02:21:463 GMT+08:00] 20668882 OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mhelpover.gif has not been defined
    [11/05/04 11:02:25:940 GMT+08:00] 20668882 OSEListenerDi E PLGN0021E: Servlet Request Processor Exception: Virtual Host/WebGroup Not Found : The web group /crystalreportviewers/images/toolbar/mhelp.gif has not been defined

    Possibly it's a path problem try to rewrite env-entry-value for clientSDKOptions with either double backslashes or simple slashe.
    Furthermore the blanks in the path migth be a reason for your problem.
    David

  • Crystal report parameter problem while uploading in sap business one

    Hi
    All
    I designed a crystal report using
    stored procedure
    and
    Routemas user defined table
    in sql server with three parameter
    routname,from date,to date
    these parameters are from storedprocedure only but not created in report
    i set the parameter routename  as dynamic and i assigned the routename field from routemas table
    when i run the report in the parameter window it displays the list of routenames
    upto this is k but
    when i upload this report in sap business one 8.81 PL-05  and
    run this report in sap environment First it asks parameters there
    it didnt display the list of routnames
    when the parameter routname is set as static and assign some  routenames manually
    then it shows the list in sap environment
    Can any suggest the answer
    Edited by: madhu ganga raju on Oct 17, 2011 7:06 AM

    Hi Rhaul,
    i don't exactly know why this is a problem, but if your not on latest (881 p10) then upgrade and try again.
    Or as a workaround,
    try saveing from CR to SAP with the CR add-on. That usualy works better then the import.
    Regards,
    D

  • Crystal report printing problem in Malayalam

    Hi,
    I have a printing problem in Malayalam in crystal report.The viewer displays the correct font but the printed output displays the square boxes.I have installed the font.I am using Visual studio 2010 and crystal report 13.0 version.what could be the problem???
    please help me...!!!

    Hi priyashekar,
    I’m afraid that it is not the correct forum about this issue, since this forum is to discuss Visual C#. You can post your question in the
    Crystal report forum: http://scn.sap.com/community/crystal-reports-for-visual-studio/content?filterID=content~objecttype~objecttype[thread]
    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 report authetication problem

    Dear experts,
    I have problem in my one of client regarding Crystal reports. crystal reports working fine in all other client machine but only one client machine system give the database logon failed error. please guide me.
    Thanks In advance

    Hi,
    Please refer thread:
    How could we solve this error "failed to retrieve data from the database"?
    Also check SAP note:
    1533412 - "Failed to login to database" error
    Thanks & Regards,
    Nagarajan

  • Crystal Report Displaying Problem

    Hi Guys,
    i had developed many more reports ie crystal reports 10 successfully in my Pc.But while going to my client place not able see my reports while clicking added reports in B1 module ie Purchase A/p -> purchase reports in that my report is added while clicking that report it displaying following Error ie myaddon.exe is Encountered or Addon Crystal report is Disconnect we are not able to fix this issue what problem but in my PC its displaying all reports this is OS problem or some other issue i am using windows 2000 proffesional in my Client PC ie windows 2003 server sp1.what is this issue can any solve with brief explantion asap.
    Regards
    ANAND

    One question!
    How are you sending the data to the reports?  Are you connecting the reports directly to the SQL Server tables?  If so, I believe you have to take into consideration the fact that connectivity parameters will vary in your client.
    Maybe you have taken this into account already! Just in case
    hope it helps

  • Customized Crystal Report execution problem in Win 7

    Hi Experts,
    I am getting a screen of Server : Database : Userid : Password while attempt to run a customized crystal report from Win 7 based platform. In the screen database selection option is inactive so it is not possible to select the databse.
    The OS of user PC has been formated recently current OS is Win 7 and before that it was XP running fine. Is it a report problem or any other problem please guide??
    SK

    Hi ,
    are you running report from SAP ? if so , Run SAP as administrator(right click on SAP icon and click run as administrator) and run report - it will work fine .
    if ypu are running report directly from crystal report , run crystal report as administrator.
    or change crystal report connection from SAP business one to OLEDB and update datasource.
    Thanks,
    Neetu

  • Crystal Report Chart Problem: No trendlines with regression

    Hi,
    I have a severe problem with chart trendlines in Crystal Reports 2008 (12.3.0.601).
    Trendlines with regression do not work, whereas  average and moving average work on charts with data axis but not with numerical axis.
    Does anyone has an idea, how to solve it.
    Best regards
    Michael

    hi,
    Try to create a bar chart with Year, Quarter as dimensions and Sales revenue as measure.
    Now your chart has legend which shows quarter values.
    Right Click the Legend value Q1 -> Series Options -> Trendline.
    Choose the required regression type: Linear/ Polynomial/ Logarthmic/ exponential/ Moving Average.
    This will show the required trend line.
    Regards,
    Vamsee

  • Crystal report ReportPageViewer problem using Stored Procedure

    Hi,
    I'm using the ReportPageViewer component in my jsf page, to visualize cystal reports on my web application.
    Everything is working fine when my crystal report queries a table. But, for performances issues, we've changed this to use a stored procedure.
    However, when trying to run the report from my jsf pages, I obtained the following error:
    The QE parameter ''{0}'' could not be found.
    The parameters are exactly the same as before. I can see in the Reportsource that I'm passing to the ReportPageviewer that all the parameters are set with the proper values.
    When running the report from crystal report, I obatin the results, using the same database login/password than my web application.
    Any help would be really appreciated!
    Thanks,
    M�lanie

    Hi Andy Hendrickson,
    Let me understand your problem correctly.
    1) When you run the procedure from command prompt the table gets populated. It is clear.
    2)When you run the procedure in before report trigger you get nothing. Let us analyze why but for now it is clear.
    3) What you mean by "I run the procedure from the command line and leave the data, then run the report I get updated data in the table, but nothing returned to the report."
    Can you please explain a bit more and also update code snippets of what you are using ?
    Thanks,
    Vinod
    Oracle Reports Team

  • Crystal Reports setup problem (?)

    Hello,
    I have recently taken over the role of creating/updating our Crystal Reports and have of course installed the software on my PC just as is explained in the installation guide and have set up the ODBC datalink.
    I decided to leave it installed on the old user's PC until I got it working properly just in case I had any problems. Good job I did.
    The reports we create are used by a bespoke software called Access Supply Chain.
    When I create/modify a report on this newly installed instance, save it to our reports folder and reference it in Supply Chain, the report only blinks on-screen for a fraction of a second and then vanishes.
    If I then go to the old machine and open the report there and re-save, it works fine.
    I've checked settings between both machines and can't find anything that differs.; I'm possibly missing something very simple.
    Could anyone give me any clues as to what the problem is?
    Many thanks
    - Chris

    Chris,
    The forum that you have posted your question in is for questions related to the SAP Business One SDK.  Your question is related to the Crystal Report Writer.  You should post these types of questions in the Business Objects Forum here on SDN at
    https://www.sdn.sap.com/irj/boc
    or possibly here ...
    All about Printing & Reporting using ALD, PLD, XLR and Crystal Reports
    These two areas may get you better and faster results.
    Eddy

Maybe you are looking for

  • Delete item from Purchase Order

    Dear All, I want to cancel line item from Purchase Order. But  i am unable to do it as i have already made advance payment against PO/Item. Actually advance payment was against another Item of PO but by mistake selected wrong item while f-47. Now i w

  • I want to know the algorithm of interpolation of 2-D array in LabVIEW.

    I want to know the algorithm of interpolation of 2-D array in LabVIEW.Is there any formation about it?

  • Oracle 9i/Laptop Development Environment Setup

    I am architecting a development environment to run on a single laptop, Sony VAIO running Windows XP Pro. MS IIS is currently installed. I want Oracle 9i as the primary DB in the development (1 user/laptop), and eventually in the production environmen

  • DEAD IN THE WATER--Can't remove email from server-can't receive new emails

    I stopped receiving emails this morning upon startup, steps taken: restarted mail rebooted backed up all inboxes searched how to see message on server, found them and and can see one that says: From: unknown sender Subject: No subject Date Recd: Toda

  • Stutter frames before the cut

    Anyone experience a quick "stutter" in the frames after the cut? Also happens after a text title has been added. What's up with this. Using FCP 7.0.3 on a Mac with 10.7.5 OS.