Crystal Reports license problem

Hi,
My customer's server has Crystal Reports Professional 9 installed. We have application installed on this server also. This application is deployed as a Windows service. This Windows service is calling multiple reports using threads (3 maximum concurrent threads). The reports are querying data from remote database and export to pdf files. However, sometimes we got the following error and cause some reports not generated.
"8/28/2008 12:53:55 AM 2 0 33000 Crystal_RDC N/A FCRS1 A Crystal Reports job failed because a free license could not be obtained in the time allocated. More licenses can be purchased direct from Crystal Decisions or through the Crystal Decisions Online Store."
"8/28/2008 12:53:55 AM 1 0 1 VBRuntime N/A FCRS1 The VB Application identified by the event source logged this Application CRThai: Thread ID: 5540 ,Logged: Thai CR failedA Crystal Reports job failed because a free license could not be obtained in the time allocated."
I wonder how Crystal Reports calculate a concurrent license. Does it mean 1 thread per 1 license? But our license should be enough. How can we check a number of licenses are allowed on the server?
I've read the following post "Re: RDC, Crystal Reports XI, runs out of licenses" which might match our case. If I fall into that case, what edition should I install on the server for Crystal Reports 9?
Best Regards,
Noppadon S.

Same issue as the other posting. The RDC was not designed to be a Server product and is limited to 3 report jobs.
You only option in code is to buld in job limitations. If the number of open report jobs is above 3 then queue the next jobs until one of the open jobs are released. There are no API's in the RDC to get the number available, you have to manage it manually.
Other option is to upgrade to a supported product like CR Server, it has a 20 CPL user license limit but in small installations this is sufficient to run and schedule reports.

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

  • Missing Crystal reports License Key for (CrystalReports11_5_NET_2005.msi)

    Is there any way to retrieve a missing Crystal reports license key from a server install?
    we are currently in the process of relocating a server app that has (CrystalReports11_5_NET_2005.msi) installed and the License key for the product is missing... Any help would be good as the project to relocate "Interplan" the application that uses Crystal reports has halted due to the missing License key...

    Hi,
    As up to my best knowledge it is not possible to get the product key from server install.
    You could get from the development box where the product is installed.
    If you have issue with Crystal reports .Net SDK's.
    Post your question in Crystal Reports .NET SDK forum.
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all .NET SDK queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Amit

  • VS2008's Crystal Report Licensing Information

    hi,
    I'm developing an ASP.Net web application using VS2008(trial version) with Crystal report for reporting Purpose. Its works fine till now.
    While i check the version of that Crystal Report it shows like "CRYSTAL REPORT BASIC RUN TIME FOR VS2008" Version 10.5.1.0 in Control Panel.
    My Question is,
    Am i need to Purchase license for Crystal version 10.5.1.0 ?
    or
    I need to Purchase license for VS2008 ??
    or
    Both
    Because i don't need any licensing Issue on future when my Project is on LIVE....
    Please help me out.
    Edited by: jkarthick89 on Aug 18, 2011 4:08 PM

    HI. Ludek,
    Thanks for the tips. I tried both, but the problem presists.
    On a side note, I did get my hands on yet another "non-development machine". This one ran with Window's Vista appeared to work (even with my original code).
    The "non-development machines" that I've tested on are Windows 7 and Window XP machines. On these machines, when I commented out the reportDocument.SetDatabaseLogon line, when I try to load the report, it still prompts for the Database Logon information, however, it also has the "Database name" empty and disabled.
    Since it worked on a non-development machine with Win Vista. I don't think there is a problem with references or the Crystal runtime packages.
    As far as permission for the report to contact the database, I'm guessing there isn't a problem there either because the application does successfully connect to the database.
    I'm connecting to a SQL2005 database and using the SQL Native connection.
    On a side note: as for the enabling prompting, I just remembered that it was an option available when using Crystal Reports with a web project. Thus I couldn't find it here with a Window's Form project.

  • Crystal Reports Licensing

    I have a question about the various versions of Crystal Reports developer.
    We have a product that uses an older version of Crystal Reports (8.5) and our product will be updating to use Crystal Reports XI, however we have customers that want to create there own reports for use with our product.
    So far not a problem except if our customer wants to purchase a license to use the Crystal Reports 8.5 tools or the Crystal Reports XI tools.
    I have told the customer to purchase a licensed copy of Crystal Reports and they did, however since they did this recently (within the last two weeks) they received the Crystal Reports 2008 product.
    My question is how can I let our customer design custom reports in the older version?
    Can they use an older version tool to do this if they have paid for a proper license in the current version?
    If so, what do I do to allow them to have the tools.
    We are going to run into this for a while until our developers also start using the Crystal Reports 2008 SDK and such to upgrade our product to the latest.
    We have the older tools and proper licensing for them, but our customers can no longer purchase them.
    I do not want to do any thing illegal, but I need to have customers that can design their own reports.
    Thanks.

    No, it does not help.
    Maybe it was my problem in the way I described the question.
    My company has custom applications where the Crystal Reports dll's have been distributed for Crystal 8.5 and the reports that these custom applications use were designed in Crystal 8.5.
    We have licensed copies of this product.
    Our customers want to design with Crystal 8.5 for compatible report file support. (We make them.)
    But they cannot buy the same version product.
    We make them buy the latest product your company sells, so that you get revenue from us distributing our application, but they cannot use the latest product and save it in a backward mode to make it work with our custom application.
    Only reports made with the Crystal 8.5 product work.
    So if they have purchased Crystal Reports 2008.
    Can we give them Crystal Reports 8.5 to use until we update the custom application(s) (about thirty) to use the SDK for Crystal Reports 2008?
    The same goes with Crystal Reports XI. We have licenses for this product for our development.
    We have upgraded our applications to use this newer version, but have not been able to distribute them yet to all our customers.
    We will be doing this soon, but we are already behind again because Crystal Reports XI is no longer sold.
    It is ok that you don't sell the older product. We understand why.
    Our customers have purchased Crystal Reports 2008 because that is what is available.
    Even our newest package uses your design product that you no longer sell (Crystal Reports XI).
    My company needs to have permission for our customers to use the older product until our development can catch up to use your latest product, but only if our customer purchases your latest product.
    My company does not want to do anything illegal and we also want our customers to be able to create their own reports with one or both of your older products until we catch up to your latest product.
    We will always require them to buy your latest product no matter if they will use it yet or not. We also suggest that they upgrade this license or licenses as your products change.
    We will not let them make custom reports without buying your latest product first. That is our requirement and they accept this.
    What do we need to do to allow our customers to install and use the older product?
    Thanks.
    Edited by: Tony Hugel on Oct 22, 2008 4:10 PM
    Edited by: Tony Hugel on Oct 22, 2008 4:19 PM

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

Maybe you are looking for