Crystal Report Windows Forms Viewer Error in 1 Workstation after upgrade of PL

Hi all,
We just upgraded SAP from 8.82 PL02 to 8.82 PL15.
Afterwards, in just 1 workstation, Crystal Reports layouts have Crystal Report Windows Forms Viewer error I attach.
Before the upgrade this error did not happen.
No permissions or authorizations were changed  in the workstation.
The Crystal Reports layouts remain working fine in server and in the other workstations.
In the workstation following are installed:
- Operating System Windows 7;
- Microsoft .NET Framework 4.5;
- SAP Crystal Reports runtime engine for. NET Framework;
- Crystal Report 2008 Runtime SP6;
- Microsoft SQL Server 2008 R2 Native Client.
All, but the operating system, are equal to the other workstations.
User has edit access to SAP folders, temp and access to the attach path.
We already uninstalled SAP client and client agent and re-installed it but with no avail.
Can anyone help me?
Thanks in advance.
Best regards,
Pedro Mariano

Hi San Xu,
Thank you for your input.
However I'm facing problem with each software is suitable.
I installed SAP Crystal Reports for SAP Business One (CR 2011 V14.0.4.738), but with no avail.
Thanks in advance.
Best regards,
Pedro Mariano

Similar Messages

  • Crystal Report Windows Form Viewer - Error in compiling SQL Expression

    I am using C# and the Crystal Reports API to render reports in a windows application. Recently we decided to start using SQL Expressions in our reports. The reports developers are able to use them in development, but as soon as we deploy the reports to production, we are seeing the following error.
    Why does this work when developing forms but not when using the C# API?

    Hi Adam
    I pinged couple of people here, but so far have not got a reply. I'll update this post as soon as I get anything.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Crystal report windows forms viewer - error in file

    I am using visual basic - visual studio 2005 with crystal reports version 11.5 and am getting the following error when deploying to a windows 7 32 bit machine
    Error in file
    c:\users\username\appdata\local\temp\tempmanynumbersandcharacters.rpt
    The request could not be submitted for background processing.
    All six reports for this application give the same error.  There is not a problem when it is deployed to a windows xp machine.  I have three other applications that do not have problems in windows xp or windows 7 32 bit.  I can't see any difference between these three apps and the one have a problem in windows 7.
    Thanks,
    Jay

    You do not mention if you searched the forums and the Kbase for the error... Using the search box in the top right corner of this web page will return KBases, Blogs, Wikis, articles and more. The following article should have been returned with a simple search;
    [Causes of "Background Processing" error|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50a6f5e8-8164-2b10-7ca4-b5089df76b33]
    See if it helps. If not, do a few searches as there may be other reasons not documented in the articles.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Crystal Report Windows Forms Viewer error: "The field name is not known"

    Hi,
    My report runs fine in the Crystal Reports viewer.  When we try to view the crystal report through a piece of 3rd party software, I start to get errors in a few of my formulas indicating that "the field name is not known".  I can clearly see that the field is in my crystal report.  Has anyone else had this problem?  Any ideas on what might be happening?
    Thank you.

    Just to provide some further clarification on my problem:
    The "field name is not known" error seems to be occurring only in a few formulas where I have a statement like this:
    if ISNULL({somefieldfromdatabase}) Then
    I've used this for many other formulas and not had an issue with them.  I've verified that the database and the stored procedure contain this field.

  • Crystal Report Windows Forms Viewer problems - table could not be found

    Hi,
    I installed Crystal Report Viewer in SAP Business One 2007. All the while, I can run the reports without any problem. but when I loaded some of the new report, it gives me the following error message:
    the caption says: "Crystal Reports Windows Forms Viewer"
    the message says: "The table 'paymentVoucher' could not be found.
    Error in file C:\...paymentVoucher.rpt. The table could not be found."
    By the way, I can run the report in another workstation.
    Any help or ideas of why this is happening or how to solve this will be greatly appreciated.
    Thanks in advance.

    The report is not created by me. I just help others to transfer the report from one workstation to another workstation. PaymentVoucher is a view in the database and it is being put at a workstation that can be shared by everyone.
    I've go through other forums and found out that it might be permission issues and now managed to solve the problem already.
    Thanks everyone for the advice.

  • Crystal Report Windows Forms Viewer - No Error Popup

    Similar to this post:  Error message that says "No Error" from CR Viewer, I have just upgraded by Application to .net 4.0 and Crystal Reports 2010. The report viewer works fine the first time a report is loaded, but when I change the parameters on the report, and put the updated report back into the report viewer, I get the message shown above.  The report does not change its parameters and the updated report is not displayed.  The code in question is setting the date parameters for the report.  The user can select new date parameters from the form that encloses the report viewer.  The code subclasses the Report Object code to add additional functions through interfaces.  The IDateRange interface provides a starting and ending date range for the report using a property on the report class as follows:
        Public Property EndingDate() As Date Implements IDateRange.EndingDate
            Get
                Return _endingDate
            End Get
            Set(ByVal value As Date)
                _endingDate = value
                Me.SetParameterValue("EndingDate", value)
            End Set
        End Property
    In addition, the immediate Window shows the following message:
    A first chance exception of type 'System.Runtime.InteropServices.COMException' occurred in CrystalDecisions.CrystalReports.Engine.dll
    The code in the Report Viewer looks like this, see line marked in blue for when pop-up appears:
    ''' <summary>
    ''' Sets the report period and displays it.
    ''' </summary>
    ''' <param name="Report">The Report.</param>
    ''' <param name="Refresh">if set to <c>true</c> force a refresh.</param>
    Private Function PFSetReportPeriod(ByVal Report As Object, Optional ByVal Refresh As Boolean = True) As Boolean
        Dim fld As FormulaFieldDefinition
        Dim bRefresh As Boolean = False
        Dim rpt As ReportClass = CType(Report, ReportClass)
        Try
            If CRV.ReportSource IsNot Nothing Then
                rpt = CType(CRV.ReportSource, ReportClass)
            End If
    If TypeOf rpt Is IDateRange Then
        With DirectCast(rpt, IDateRange)
    .        StartingDate = dtpFromDate.Value
    .        EndingDate = dtpToDate.Value
        End With
        SetTitleLine2(DirectCast(Report, ReportClass), bRefresh)
        bRefresh = True
    Else
        If TypeOf rpt Is ReportClass Then
           fld = rpt.DataDefinition.FormulaFields("FromDate")
           If Not fld Is Nothing Then
                fld.Text = "Date(" & dtpFromDate.Value.Year & "," & dtpFromDate.Value.Month & "," & dtpFromDate.Value.Day & ")"
                bRefresh = True
            End If
            fld = rpt.DataDefinition.FormulaFields("ToDate")
            If Not fld Is Nothing Then
                fld.Text = "Date(" & dtpToDate.Value.Year & "," & dtpToDate.Value.Month & "," & dtpToDate.Value.Day & ")"
                bRefresh = True
            End If
            SetTitleLine2(rpt, bRefresh)
        End If
    End If
        If Refresh And bRefresh Then
            If dtpToDate.Value <> CDate(dtpToDate.Tag) OrElse _
               dtpFromDate.Value <> CDate(dtpFromDate.Tag) Then
                    System.Windows.Forms.Application.DoEvents()
                If CRV.Visible Then CRV.ReportSource = rpt ' The popup appears when this statement is executed.
                If CRV.Visible = True Then CRV.Refresh()
                dtpToDate.Tag = dtpToDate.Value
                dtpFromDate.Tag = dtpFromDate.Value
               Return True
            End If
        End If
    Catch ex As Exception
        DisplayException(ex)
    End Try
    Return False
    End Function

    Problem has been resolved.  I downloaded Support Pack 8 (v.13.0.8.1216) from this location.  I then applied the fix from the entry above:
    With CRV ' Report Viewer Control
        If .Visible Then
            If .ParameterFieldInfo IsNot Nothing Then .ParameterFieldInfo.Clear()
            .ReportSource = rpt
            .Refresh()
        End If
    End With
    And no more annoying "No Error" messages.

  • Error Crystal Report Windows Forms Viewer in Windows 8.1

    As you can see from the picture I get this error when trying to load the report anyone have any suggestions?, This happens with windows 8 on windows 7 I have no problems with the application

    Hi,
    The error is not having connection to the database, the error is that it can not open the temporary file that Crystal Report generates before opening the report but it only gives the error when running on Windows 8, Windows 7 not same program fails.
    It conect to a MySql database using. Net Framework Data Provider for MySQL in a 32 Bits

  • Set a timeout for crystal sessions while using the Windows.Forms.Viewer?

    Hi,
    I am looking for a way to set the timeout for the crystal report sessions when using the Windows.Forms.Viewer in a .NET application. I guess that the default value is 20 minutes (like in the entperprise installations) but we cannot afford to keep many sessions open for that long. Is there a registry entry which can be set? Or even a way to do this programmatically?
    Thank you in advance,
    Stratos

    Hi David,
    we are talking here about a standalone .NET application where the reports are installed locally (like the application itself). We are not retrieving the reports from a server. The whole thing was developed using the crystal report viewer model probably because it was easier to do so. Is there a method in this model to tell the crystal runtime to do the clean-up work either for a report (like the ReportDocument.Close() ) or for the entire runtime instance. Dispose() does not seem to help us. If you say that there is no other way than redesign then we have to consider this option also.
    Cheers
    Stratos
    PS: What I was thinking of (as Plan B instead of using the ReportDocument object model) is to instantiate the crystal report viewer object in a separate process (.exe). Please note that we open a new crystal report viewer windows for each report, which is displayed. Closing the viewer window (ie. terminate the process) will at least then clean up and release the crystal DLLs and hopefully close the database connections. Or am I missing something here?
    Edited by: Efstratios Karaivazoglou on Jul 29, 2008 10:05 PM

  • How to Call a Crystal Report from Form 6i?

    Dear All,
    Can anybody tell me how to call a crystal report, designed using Crystal Report 9, in form 6i? I tried one solution by using the host command but it was not working properly. The code I was tried is like:
         f_name varchar2(240);
         f_name :='C:\Program Files\Crystal Decisions\Crystal Reports 9\crw32.exe D:\Form16\Form16_Rep\bin\Debug\Form_16_character_emp.rpt';
                   host(f_name);
    This open the crystal report in design view. So how we call a report which run automatically like in .Net. How to pass the connection info of the database schema?
    Thanks & Regards
    Sunil

    Hi
    First see the built in run_product function.
    You can create a parameter list, add the
    "MAXIMIZE" paramter in it and then call your
    report with run_product passing your parameter list in it.
    hence the called report will be maximized.
    null

  • Crystal report add on installation error

    Hi ,
    While starting the crystal report addon  following the error is coming--> retrieving the COM class factory component with CLSID{3EBB7859-E4 E3-4D77-B ,our operting system -- windows 2003 server-- 64 bit ,
    Regards
    Naresh K

    Hi Naresh,
    You can find more information on the thread:
    SAP Business One and Crystal Reports
    There are quite few threads in 10 pages for Crystal Reports. You may post it there too.
    Thanks,
    Gordon

  • Crystal Reports XI Release 2:  Error message when trying to install

    I am unable to install Crystal Reports XI Release 2 onto my computer.  After putting CD1 into my computer and clicking install, I get the following error message: 
    "Error applying transforms.  Verify that the specified transform paths are valid."
    A couple members of my companies' I.T. department tried to help, but the error message was foreign to them.  Tthey even built me a new hard drive, but unfortunately it gave me the same error message.
    I am able to install Crystal Reports XI without a problem, but for some reason, Crystal Reports Release 2 will not install.
    Any help you can provide in this matter would be greatly appreciated.

    1.Are you able to neglect the installation window completely.
    Like,can you just open your drive which accepts the cd and copy all the files from the win32 folder to another folder say "test".
    2. If not on this machine, could you please try this on some other machine.
    3.Otherwise you can download it from the following URL:
    http://resources.businessobjects.com/support/additional_downloads/servic
    e_packs/crystal_reports_en.asp#CRXIR2
    Please select the "Service Pack 2 - Full build - ZIP - 1.03 GB -released April 2007" hyperlink.
    Let me know if this helps
    Thanks

  • FAQ: Crystal Reports を使用した Windows フォームアプリケーションが原因でシャットダウンできない

    【タイトル】
    Tip: Crystal Reports を使用した Windows フォームアプリケーションが原因でシャットダウンできない
    【詳細/質問】
    Visual Studio がインストールされた環境にて、Crystal Reports を使用したアプリケーションを閉じる際に次のようなエラーが発生する。
    "Title: Microsoft Visual C++ Runtime Library Runtime Error!
    Program: u2026\TestReport.vshost.exe
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the applicationu2019s support team for more info."
    【対象製品】
    Crystal Rpeorts 2008
    【原因】
    レポートがXMLデータソースへの接続を行う際に crdb_xml.dll を使用します。 このDLLファイルは java.exe を呼び出しバックグランドで使用されます。 Visual Studio はJava Virtual Machine を正常に終了することができないため、反応が無くなるかもしくはエラーを発生をさせます。
    【解決策/回答】 
    レポートの使用時に XMLデータソースへの接続方法として ADO.NET(XML) を選択します。 この接続方法を使用することで、crdb_adoplus.dll が使用され当該現象を回避できます。

    Re: HELP - setting page margins doesn`t work correctly
    上記スレッド内のRASを使う方法で、一応解決致しました。
    【手順】
    参照設定に以下を追加
    CrystalDecisions.ReportAppServer.ClientDoc;
    CrystalDecisions.ReportAppServer.Controllers;
    CrystalDecisions.ReportAppServer.DataDefModel;
    CrystalDecisions.ReportAppServer.ReportDefModel;
    余白の設定を以下に変更
    CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument rcd;
    rcd = report.ReportClientDocument;
    CrystalDecisions.ReportAppServer.Controllers.PrintOutputController poc;
    poc = rcd.PrintOutputController;
    poc.ModifyPageMargins(margins.leftMargin, margins.rightMargin, margins.topMargin, margins.bottomMargin);
    poc.PrintReport(null);
    これで、通常使うプリンタに正しい余白で出力する事ができました。
    過去スレッドの探索不足でした、お騒がせして申し訳ありません。

  • PASSING PARAMETERS TO CRYSTAL REPORTS THRU FORMS!

    Hi! all,
    Is there someone who passed parameters to crystal reports from
    forms 5.0?
    The problem is when I call the report executable from the form,
    its giving a login prompt again which is not desirable as @ this
    stage the user has already logged in once. So is there a way to
    pass this as a parameter to crystal or may be any better way???
    Thanx for the solution,
    Hima
    null

    First make sure you are on SP 3:
    https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
    SP 3 msi     
    https://smpdl.sap-ag.de/~sapidp/012002523100007123592010E/cr2008sp3_redist.zip
    SP 3 msm     
    https://smpdl.sap-ag.de/~sapidp/012002523100007123582010E/cr2008sp3_mm.zip
    Have a look at [Crystal Reports for Visual Studio 2005 Walkthroughs|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23]
    (The above does apply to your version of CR also)
    Have a look at the samples:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    And look at the Developer Help file:
    http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_dg_12_en.chm
    And don't forget to use the search box at the top right corner of this web page. It will bring up KBases, blogs, wikis, articles and more. Searching these forums is also a good idea.
    - Ludek

  • Crystal Reports Active X Viewer 64-Bit

    Hi All,
    I am searching for some information regarding support of the Crystal Reports Active X viewer with 64-Bit Internet Explorer (version 8)
    We use Cyrstal Report 9, 10, 11 and 11.5 on our clients servers and have no issues with the 32 bit version of Internet Explorer (including on 64-bit operating systems). We have one client attempting to use 64 bit Internet Explorer 8 but this is not showing any reports.
    Even when having manually installed the Active X dll's it still does not work.
    Can someone advise if this set up is possible/supported?
    As I understand it, it is not possible.
    Regards
    Matthew Haines

    Hello,
    All of those versions are 32 bit only and I doubt 64 bit IE will support 32 bit ActiveX controls. No solution for you.
    Possibly moving to CR For VS 2010 and the Cr .NET assemblies may work.
    64 bit IE is not very stable and not many people use it. I suggest you recommend staying away from it at this time. Or at lease CR doesn't like it either.
    Good luck
    Don

  • Critical Hard Disk Free Space Error on Lenovo G500 after upgrading from Win8 to Win8.1

    I encountered an error with my harddrive after upgrading my Lenovo G500 from Windows 8 to Windows 8.1. The error is coming up under the Lenovo Solution Center. The error reads "Some partition in your hard drive has less than 9.5% of its capacities. It suggests to click on Fix Options; System; Storage Devices. Then it displays Internal Hard Drive ST1000LM024 HN-M101MBB.The solution center now displays 8 different partitions labled as follows:
    Drive Name: Space:
    W: WINRE_DRV. 694.99 MB free of 999.99 MB
    E... EFI SYSTEM 260 MB
    U.. UNAMED PARTITION. 0.97 GB (THIS IS THE DRIVE PRODUCING THE ERROR)
    M. MICROSOFT RESERVED PARTITION. 128 MB
    C. MICROSOFT RESERVED PARTITION. 850.43 GB FREE OF 890.72 GB
    W. WINDOWS RECOVERY ENVIRONMENT. 155.46 MB OF 449.99 MB
    D: WINDOWS RECOVERY ENVIRONMENT. 22.74 GB FREE OF 24..99 GB
    P...PBR_DRV. 1.8 GB FREE OF 13.01 GB
    I have tried to run disk clean up and optimize drives which were suggestions from the Lenovo Solution Center but neither has been successful in removing the error. Any assistance you guys can provide will help me out a lot
    Thanks,
    Dan

    I got an error when i tried disk repair ("the underlying task reported failure on exit - 1 HFS volume could not be repaired, 1 volume could not be repaired"). Is that the source of my problem?
    Hi and a warm welcome!
    Absolutely, good deduction.
    If DU can't fix it after a couple more tries then, your best bets are DiskWarrior from Alsoft...
    http://www.alsoft.com/DiskWarrior/
    Data Rescue II...
    http://www.prosofteng.com/products/data_rescue.php
    This last one would require another HD with plenty of space to recover to.
    Unfortunately, Disk Utility can't fix all that much, and the only other Apple Options are erasing the HD, or installing OSX to a second drive, then using Migration Assistant to move stuff over to the new HD.

Maybe you are looking for

  • Forecast delivery schdule and JIT delivery schedule difference

    Hi All, What isthe difference between Forecast delivery schdule and JIT delivery schedule in JIT scheduling agreement (LZJ)??  I am doing JIT Inbound process now. Is it necesary to update both the schedule lines(Forecast delivery schedule&JIT deliver

  • BAPI error for mvmt types 201 and 202

    Hi all,   I'm using a bapi BAPI_GOODSMVT_CREATE for the movement type 201 and 202 with the gm_code = '03' for the transaction mb11- Goods movement. But it returns an error u201D Account 400000 requires an assignment to a CO object u201D...I'm unable

  • Xpath in BPEL: How to extract from message type to string

    Hi all, I am currently trying to extract all content from a special message type to a string. The special message is really just simple XML. However, I wish to convert the special domain specific message to a string to send to another partnerlink. I

  • Smart Form Very slow

    Hi, I have a problem when i printing a Invoice Smartform it is taking long time for output. Is the form execution is based on his Conditions? How to speed up the output printing? Pls advise...

  • A Suggestion to add to the next iOS 4 Firmware... "EXIT APP"

    In Settings -> General -> Accessibility, there is a setting that says: "Triple-click Home" - My suggestion is to add "Exit App" option, so that if we want to close the app and not leave it open - We'll just need to press the home button 3 times a row