Error when saving Crystal Report  to SAP BW (via SAP toolbar)

Dear Experts -
Our landscape is:
Backend - SAP BW7.4 with Service pack 5
Crystal Version - Crystal Reports 2013 SP1 Patch 6
Business Objects - SAP BI 4.1 SP1 Patch 6
I'm trying to save a crystal report to SAP BW via the toolbar option, but the attached error is being returned.
Also, if I try to create a new report from BW, an error is thrown.  'An error occurred while generating a new report template; No error'.
Any feedback/pointers would be valuable.
Regards,
Tarun.

I realize this post is a few months old, but did S. B. O. Shell Business One get this issue cleared up by installing the BW transports mentioned in Josh's reply?  I'm interested in knowing whether this was resolved as we are receiving the same error as the one shown in the initial post.
Regards,
Chris

Similar Messages

  • Error when saving Crystal report to BW

    Hi,
    I'm getting an error when save a report to BW (without push to BOE). I received the error messages as following:
    This syntax cannot be used for an object name
    An error occurred while saving and/or publishing. The return code 220 was returned from the server
    c
    Please help!
    Thanks.
    KS

    Hi ingo,
    thanks for your response.
    can you save a report directly to the BOE Server ?
    Yes, I can publish the report by "Save as" to BOE.
    did you can configure all the publishing in transaction /crystal/rptadmin ?
    Yes, I've followed all the steps by links below.. The RPC destination is working.
    Publishing part 1
    /people/ingo.hilgefort/blog/2008/09/23/businessobjects-and-sap--publishing-of-crystal-reports-part-1-of-3
    Publishing part 2
    /people/ingo.hilgefort/blog/2008/09/24/businessobjects-and-sap--publishing-of-crystal-reports-part-2-of-3
    Publishing part 3
    /people/ingo.hilgefort/blog/2008/09/24/businessobjects-and-sap--publishing-of-crystal-reports-part-3-of-3
    Still, I received the error as mentioned.
    Below is the detailed error after attempt to save the report to BW:
    Message no. TK103
    Diagnosis
    The syntax of the transferred objects is incorrect. R3TR XLWB  made this check.
    This could be caused by the following:
    The object type R3TR XLWB is unknown
    The syntax of the object name  is incorrect
    The object is a component of a system object
    System Response
    The function terminates.
    Procedure
    Correct the syntax.
    I am not sure what is going wrong. Please help..
    thanks.

  • Error when saving Crystal Report into BOE

    Hi there,
    I'm having problem on saving rpt (with parameter) into BOE.
    My rpt is working fine in Crystal Report 2008.
    I've tried to Add Crystal Report using Save As, and returned error:
    Error Message: Failed to read data from report file: abc.rpt.
    Reason: Failed to read parameter object.
    However, it working fine when I add crystal report (no parameter) using Save As.
    Would appreciate is there anyone can help on this error.
    Many thanks!

    Hi Yann,
    As you have created a dynamic parameter in the Crystal Reports, the error message occurs because the user or group who created the LOV does not have the appropriate rights in Business View Manager.If you have installed Business Objects Enterprise on the same machine, then please try the following workaround:
    1. Log on to Business View Manager as administrator.
    2. Click View > Repository Explorer.
    3. Right-click Dynamic Cascading Prompts. Click Edit Rights.
    4. Click the appropriate user or group receiving the error.
    5. Click the Granted option for the right to View, Edit & Set Security rights.
    6. Click OK. Close Business View Manager.
    Now try to save the report into Enterprise and see the results.
    Regards
    Arun Sasi

  • Error when publishing crystal report to the BO server

    Hello All:
       Has any one encountered the following error when saving a report to the BO server.
       Unable to launch C:\program files\Business Objects\BusinessObjects Enterprise 11\win32_x86\plugins\desktop\CrystalEnterprise.Report\ReportAdd program to add report to the system .
    ....Would appreciate your help.
    Thanks
    Parmesh

    Hi,
    looks like a Bug here.
    heck SAP Note - 1183390
    Regards
    -Seb.

  • Error when running crystal report

    i saw the error in log file 'Only TrueType fonts are supported. This is not a TrueType font' and 'Error while running Crystal report'
    Help me to fix this problem.Thanks inadvanced.
    I used some software developed in vb6.It changed some system font when running :D.
    i want to run both that soft   and sap.

    Hi,
    Please refer to the link, [Re: CR XI R2, Crystal Report Viewer Opentype Font not supported|Re: CR XI R2, Crystal Report Viewer Opentype Font not supported].
    What is the version of your crystal report, we will try to apply some service packs.
    Regards,
    Clint

  • Duplicate Object Name Error When Publishing Crystal Reports from BW to BOE

    Hi,
    We recently upgraded our systems (all client and server) to SP2.7 in order to solve a problem with saving Crystal Reports to BW.  Now we are experiencing a new error when trying to publish a Crystal Report from BW to BOE (either all in one step from Crystal Reports application or directly from within BW).
    Upon trying to publish a Crystal Report from BW to BOE, we get the following error:
    "An error occurred while saving and / or publishing.  The return code 1 was returned from the server.  Logon to Crystal Enterprise failed.  Unable to commit the changes to Enterprise.  Reason: Failed to commit objects to server : Duplicate object name in the same folder."
    We have repeated this issue numerous time with different reports, users and logon credentials and have verified that there are NOT any duplicate object names.
    Additionally, in some cases, the report ultimately publishes to BOE, but with the above error interruption along the way.
    Any ideas?
    Thanks,
    Josh
    Edited by: Josh Crawford on May 10, 2010 9:46 AM

    Ingo,
    Apologies for the delayed response.  We've spent a few days poking around with this issue, and had even opened a customer message for it (13641).
    In the end, it seems that the problem was somehow associated with the "Prepare this report for translation." flag in the "Save to BW Options" dialog box of Crystal Reports.  If we try to Save & Publish with the Translation flag selected, we get the duplicate entry error.  If we Save & Publish without the Translation flag selected, everything is fine.
    There are still some details we need to look into, but for the time being it looks like we don't have an issue anymore(assuming we ever did) as we're not concerned with Translation capabilities.
    If we come across the problem again, I'll post again.
    Thanks,
    Josh

  • Error when run crystal report viewer page

    Hi I created form using vb 2008 contains crystalreportviewer and in load sub I wrote the following code to show the report:
    Dim r_select As String
        Dim MyReport As New CrystalDecisions.CrystalReports.Engine.ReportDocument
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            r_select = "Select Innovative_Form.* from Innovative_Form"
            Dim da As OleDbDataAdapter = New OleDbDataAdapter(r_select, System.Configuration.ConfigurationManager.ConnectionStrings("ConnectionString").ToString())
            Dim da33 As New System.Data.DataSet
            da.Fill(da33, "DataTable1")
            MyReport.Load(Server.MapPath("CrystalReport.rpt"))
            MyReport.SetDataSource(da33)
            Me.CrystalReportViewer1.ReportSource = MyReport
            Me.CrystalReportViewer1.DisplayGroupTree = False
            Me.CrystalReportViewer1.DataBind()
            Me.CrystalReportViewer1.ShowFirstPage()
        End Sub
    when run I got the following error
    Server Error in '/Innovation Last Version-10-1-10' Application.
    Object reference not set to an instance of an object.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
    Source Error:
    Line 34:
    Line 35:
    Line 36:         Dim da As OleDbDataAdapter = New OleDbDataAdapter(r_select, System.Configuration.ConfigurationManager.ConnectionStrings("ConnectionString").ToString())
    Line 37:
    Line 38:
    Source File: C:\Users\kisruser\Desktop\PROJECTS\Innovate Project\Innovation Last Version-10-1-10\Report.aspx.vb    Line: 36
    Stack Trace:
    [NullReferenceException: Object reference not set to an instance of an object.]
       Report.Page_Load(Object sender, EventArgs e) in C:\Users\kisruser\Desktop\PROJECTS\Innovate Project\Innovation Last Version-10-1-10\Report.aspx.vb:36
       System.Web.UI.Control.OnLoad(EventArgs e) +99
       System.Web.UI.Control.LoadRecursive() +50
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
    Version Information: Microsoft .NET Framework Version:2.0.50727.4200; ASP.NET Version:2.0.50727.4016
    SO WHAT IS THE PROBLEM?????

    What version of CR are you using?
    What CR updates are you using?
    See sample apps here:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    in particular check out vbnet_win_pass_dataset_main_sub.zip
    The [Crystal Reports for Visual Studio 2005 Walkthroughs|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23] will also be good to look at.
    Ludek
    Follow us on Twitter
    http://twitter.com/SAPCRNetSup

  • Error when load Crystal Report

    When I preview a report in Crystal Report Manager, I meet this error as following.
    有关调用实时(JIT)调试而不是此对话框的详细信息,
    请参见此消息的结尾。
    异常文本 **************
    CrystalDecisions.Shared.CrystalReportsException: 加载报表失败。 ---> System.Runtime.InteropServices.COMException (0x80004005): 设备未就绪。   在 CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options)
       在 CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options)
       在 CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       --- 内部异常堆栈跟踪的结尾 ---
       在 CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       在 CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       在 CrystalDecisions.CrystalReports.Engine.ReportDocument.EnsureLoadReport()
       在 CrystalDecisions.CrystalReports.Engine.ReportDocument.get_Database()
       在 SAP_CR.MyForms.frmReportViewer.ConfigureCrystalReports()
       在 SAP_CR.MyForms.frmReportViewer.frmReportViewer_Load(Object sender, EventArgs e)
       在 System.Windows.Forms.Form.OnLoad(EventArgs e)
       在 System.Windows.Forms.Form.OnCreateControl()
       在 System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
       在 System.Windows.Forms.Control.CreateControl()
       在 System.Windows.Forms.Control.WmShowWindow(Message& m)
       在 System.Windows.Forms.Control.WndProc(Message& m)
       在 System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       在 System.Windows.Forms.ContainerControl.WndProc(Message& m)
       在 System.Windows.Forms.Form.WmShowWindow(Message& m)
       在 System.Windows.Forms.Form.WndProc(Message& m)
       在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       在 System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    已加载的程序集 **************
    mscorlib
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3623 (GDR.050727-3600)
        基本代码: file:///D:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    SAP_CR
        程序集版本: 2.0.0.7
        Win32 版本: 2.0.0.7
        基本代码: file:///d:/Program%20Files/SAP/SAP%20Business%20One/AddOns/SAP_CR/SAP_CR.exe
    Interop.SAPbouiCOM
        程序集版本: 8.0.0.0
        Win32 版本: 8.0.0.0
        基本代码: file:///d:/Program%20Files/SAP/SAP%20Business%20One/AddOns/SAP_CR/Interop.SAPbouiCOM.DLL
    System.Windows.Forms
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3623 (GDR.050727-3600)
        基本代码: file:///D:/windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3620 (GDR.050727-3600)
        基本代码: file:///D:/windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    System.Drawing
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3053 (netfxsp.050727-3000)
        基本代码: file:///D:/windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    CustomMarshalers
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3053 (netfxsp.050727-3000)
        基本代码: file:///D:/windows/assembly/GAC_32/CustomMarshalers/2.0.0.0__b03f5f7f11d50a3a/CustomMarshalers.dll
    Interop.CR_Crypto
        程序集版本: 6.0.0.0
        Win32 版本: 6.0.0.0
        基本代码: file:///d:/Program%20Files/SAP/SAP%20Business%20One/AddOns/SAP_CR/Interop.CR_Crypto.DLL
    System.Data
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3053 (netfxsp.050727-3000)
        基本代码: file:///D:/windows/assembly/GAC_32/System.Data/2.0.0.0__b77a5c561934e089/System.Data.dll
    System.Configuration
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3053 (netfxsp.050727-3000)
        基本代码: file:///D:/windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    System.Xml
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3082 (QFE.050727-3000)
        基本代码: file:///D:/windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    System.Transactions
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3053 (netfxsp.050727-3000)
        基本代码: file:///D:/windows/assembly/GAC_32/System.Transactions/2.0.0.0__b77a5c561934e089/System.Transactions.dll
    System.EnterpriseServices
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3053 (netfxsp.050727-3000)
        基本代码: file:///D:/windows/assembly/GAC_32/System.EnterpriseServices/2.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
    CrystalDecisions.Windows.Forms
        程序集版本: 12.0.2000.0
        Win32 版本: 12.1.2000.882
        基本代码: file:///D:/windows/assembly/GAC_MSIL/CrystalDecisions.Windows.Forms/12.0.2000.0__692fbea5521e1304/CrystalDecisions.Windows.Forms.dll
    CrystalDecisions.Shared
        程序集版本: 12.0.2000.0
        Win32 版本: 12.1.2000.882
        基本代码: file:///D:/windows/assembly/GAC_MSIL/CrystalDecisions.Shared/12.0.2000.0__692fbea5521e1304/CrystalDecisions.Shared.dll
    CrystalDecisions.ReportSource
        程序集版本: 12.0.2000.0
        Win32 版本: 12.1.2000.882
        基本代码: file:///D:/windows/assembly/GAC_MSIL/CrystalDecisions.ReportSource/12.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportSource.dll
    CrystalDecisions.CrystalReports.Engine
        程序集版本: 12.0.2000.0
        Win32 版本: 12.1.2000.882
        基本代码: file:///D:/windows/assembly/GAC_MSIL/CrystalDecisions.CrystalReports.Engine/12.0.2000.0__692fbea5521e1304/CrystalDecisions.CrystalReports.Engine.dll
    System.Web
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3618 (GDR.050727-3600)
        基本代码: file:///D:/windows/assembly/GAC_32/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll
    CrystalDecisions.Shared.resources
        程序集版本: 12.0.2000.0
        Win32 版本: 12.1.2000.882
        基本代码: file:///D:/windows/assembly/GAC_MSIL/CrystalDecisions.Shared.resources/12.0.2000.0_zh-CHS_692fbea5521e1304/CrystalDecisions.Shared.resources.dll
    CrystalDecisions.Windows.Forms.resources
        程序集版本: 12.0.2000.0
        Win32 版本: 12.1.2000.882
        基本代码: file:///D:/windows/assembly/GAC_MSIL/CrystalDecisions.Windows.Forms.resources/12.0.2000.0_zh-CHS_692fbea5521e1304/CrystalDecisions.Windows.Forms.resources.dll
    CrystalDecisions.ReportAppServer.CommLayer
        程序集版本: 12.0.1100.0
        Win32 版本: 12.1.1100.882
        基本代码: file:///D:/windows/assembly/GAC/CrystalDecisions.ReportAppServer.CommLayer/12.0.1100.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.CommLayer.dll
    CrystalDecisions.ReportAppServer.ClientDoc
        程序集版本: 12.0.1100.0
        Win32 版本: 12.1.1100.882
        基本代码: file:///D:/windows/assembly/GAC/CrystalDecisions.ReportAppServer.ClientDoc/12.0.1100.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.ClientDoc.dll
    CrystalDecisions.ReportAppServer.DataSetConversion
        程序集版本: 12.0.2000.0
        Win32 版本: 12.1.2000.882
        基本代码: file:///D:/windows/assembly/GAC_MSIL/CrystalDecisions.ReportAppServer.DataSetConversion/12.0.2000.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.DataSetConversion.dll
    CrystalDecisions.ReportAppServer.DataDefModel
        程序集版本: 12.0.1100.0
        Win32 版本: 12.1.1100.882
        基本代码: file:///D:/windows/assembly/GAC/CrystalDecisions.ReportAppServer.DataDefModel/12.0.1100.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.DataDefModel.dll
    CrystalDecisions.ReportAppServer.Controllers
        程序集版本: 12.0.1100.0
        Win32 版本: 12.1.1100.882
        基本代码: file:///D:/windows/assembly/GAC/CrystalDecisions.ReportAppServer.Controllers/12.0.1100.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.Controllers.dll
    CrystalDecisions.ReportAppServer.CubeDefModel
        程序集版本: 12.0.1100.0
        Win32 版本: 12.1.1100.882
        基本代码: file:///D:/windows/assembly/GAC/CrystalDecisions.ReportAppServer.CubeDefModel/12.0.1100.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.CubeDefModel.dll
    CrystalDecisions.ReportAppServer.ReportDefModel
        程序集版本: 12.0.1100.0
        Win32 版本: 12.1.1100.882
        基本代码: file:///D:/windows/assembly/GAC/CrystalDecisions.ReportAppServer.ReportDefModel/12.0.1100.0__692fbea5521e1304/CrystalDecisions.ReportAppServer.ReportDefModel.dll
    BusinessObjects.Licensing.KeycodeDecoder
        程序集版本: 12.0.1100.0
        Win32 版本: 12.1.0.882
        基本代码: file:///D:/windows/assembly/GAC/BusinessObjects.Licensing.KeycodeDecoder/12.0.1100.0__692fbea5521e1304/BusinessObjects.Licensing.KeycodeDecoder.dll
    mscorlib.resources
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3623 (GDR.050727-3600)
        基本代码: file:///D:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    CrystalDecisions.CrystalReports.Engine.resources
        程序集版本: 12.0.2000.0
        Win32 版本: 12.1.2000.882
        基本代码: file:///D:/windows/assembly/GAC_MSIL/CrystalDecisions.CrystalReports.Engine.resources/12.0.2000.0_zh-CHS_692fbea5521e1304/CrystalDecisions.CrystalReports.Engine.resources.dll
    System.Windows.Forms.resources
        程序集版本: 2.0.0.0
        Win32 版本: 2.0.50727.3053 (netfxsp.050727-3000)
        基本代码: file:///D:/windows/assembly/GAC_MSIL/System.Windows.Forms.resources/2.0.0.0_zh-CHS_b77a5c561934e089/System.Windows.Forms.resources.dll
    JIT 调试 **************
    要启用实时(JIT)调试,
    该应用程序或计算机的 .config 文件(machine.config)的 system.windows.forms 节中必须设置
    jitDebugging 值。
    编译应用程序时还必须启用
    调试。
    例如:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    启用 JIT 调试后,任何无法处理的异常
    都将被发送到在此计算机上注册的 JIT 调试器,
    而不是由此对话框处理。
    This error occurred on server side and I changed the report directory to network directory. But still got error. Please advice. Thanks.
    Simon

    Hi Simon.......
    Try this........
    1. Uninstall the Crystal Report Version from Control Panel
    2. Delete all the Temp Files
    3. Go to Program Files--> Business Object Folder and delete this folder so that all the corrupted DLL files will get deleted.
    4. Restart Machine Once again
    5. Then Install Crystal Report freshly........
    This may solve your problem........
    Regards,
    Rahul

  • Error when opening Crystal Report in VS 2010 IDE

    I recently began receiving the following error when I attempt to open a form containing the crystal reports viewer.
    An error has occurred while attempting to load the Crystal Reports runtime.  Either the Crystal Reports registry key permissions are insufficient, or the Crystal Reports runtime is not installed correctly.  Please install the appropriate Crystal Reports redestributable (CRRedist*.msi) containing the correct version of the Crystal Reports runtime (x86, x64, or Itanium) required.  Please go to http://www.businessobjects.com/support for more information.
    I am able to run the reports from within the development environment but cannot open them in the forms editor.  I have installed Crystal Reports for Visual Studio 2010 SP1 and Visual Studio 2010 SP1 hoping that would solve the problem but to no avail.  I have tried to reinstall multiple times and continue to receive the error.
    I am running on Vista (32 bit).  The project target framework is ".NET Framework 4,   The platform target is set to x86.
    I also now receive errors when I try to run reports after deploying to client PCs but I don't know if that is related or not.

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

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

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

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

  • Infoview error when opening crystal report

    Anyone experienced this type of problem and managed to resolve it?
    Kindly assist.
    Thanks

    Sorry I did not provide all the information.
    I get the error message u201CThe database login information for this report is either incomplete or incorrect".  This is when refreshing a crystal report in Infoview.  The data source is SAP and am directly accessing the tables.  Am running IE 8 and crystal reports 2008.  I have checked security options and they look ok.

  • Error when scheduling crystal reports in CMC

    Hi Experts,
    I have  created a crystal report and exported to CMC. when i try to schedule the report i am getting a error "The property with ID SI_DELTA_METAINFO does not exist in the object"  can anyone help me to fix this issue.
    Thanks in Advance.
    Carol

    Hi Carol,
    I think your question is best posted on the Crystal Reports Data Connectivity forum, so I will move it there, and hope you will get the solution you seek.
    Regards,
    Jason

  • Error when run crystal report with store procedure in JSP

    I try to run report which is developed by crystal report XI and store procedure (SQL 2005) with JSP.
    But it occurs error that is "com.crystaldecisions.reports.reportengineinterface.JPEReportSource - failed to process getPage request: No results were returned by the query."
    How can I do for solving this problem? Pls, help me !!!!!
    (In other report which is not used store procedure I can run fine.)
    Message was edited by:
    Bonds_Identity

    What version of CR are you using?
    What CR updates are you using?
    See sample apps here:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    in particular check out vbnet_win_pass_dataset_main_sub.zip
    The [Crystal Reports for Visual Studio 2005 Walkthroughs|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23] will also be good to look at.
    Ludek
    Follow us on Twitter
    http://twitter.com/SAPCRNetSup

  • Error when upload Crystal report files to CMC

    hi All,
    i having an error when trying to upload a Crystal report files to CMC, the msg appears below :
    Unable to find servers in CMS obt-sg-a1mgr.obtechglobal.com:6400 and cluster @obt-sg-a1mgr:6400 with kind fileserver and service FileStoreV2. All such servers could be down or disabled by the administrator. (FWM 01014)
    any help would be appreciated, thanks.
    Regards
    Hariyono

    Hi
    can you please go to the CMC under Servers and check the status of your file repository servers? Are they enabled and in status running ?
    Regards,
    Stratos

  • Error when running Crystal Reports Viewer

    Hello,
    Has anyone come across this error before when opening the crystal report viewer?
    'The CrystalReportsViewer executable launcher was unable to locate its companion launcher jar'
    Any advice would be much appreciated.
    Kind regards,
    Kate

    Moving to Crystal Reports forums - the "Crystal Reports Viewer" desktop application is built on the Crystal Reports Java SDK, but it's not a SDK issue.
    The launcher executable just can't find the internal files it needs for its operation.
    Sincerely,
    Ted Ueda

Maybe you are looking for

  • Does the online function cater for a PDF file created in version 9 to be converted to version 6

    I am running Win98SE on one computer (A) and WindowsXP on another computer (B). On Computer A I am running Adobe Reader 6.06. On Computer B I am running Adobe Reader 9 Is there a methodology (presumably outside of Adobe Reader) to convert a version 9

  • Posting period problem

    Hi all, Can anyone let me know how to resolve the foolowing error, Currently the posting month in MMPV was 4, by mistake it has been changed to 7 i.e from july it has been changed to october. Now it is not possible to make deliveries & billing so let

  • Computer Crashes When Installing Photo Gallery

    Why would my Toshiba Satellite L505D crash when trying to install Windows Live Photo Gallery? This is WIN7 64 Bit; crashes when trying to install Windows Live Essentials any version.

  • Updating CC 14 wil be a new account

    I am already having CC . Can I install CC 14 in same payment plan or it will treated a new ?

  • Open html of sliced images in template

    Hi, I have a pretty ok site with frames and I have finaly decided to change it to a noframe site even though it works great. Everyone is telling me to ! I have created a template from the selection in CS4. In photoshop I sliced an image that I want a