Crystal Reports hanging in Enterprise

Just suddenly we are facing issues with some of the crystal reports . they were working fine in Business objects up to yesterday but today they are hanging , even when we try to open/modify parameter they hang. we are using Crystal report 2008 and BO R3.1.
evnthough some reports hangs the others just run fine.
we noticed that , the reports which are stopped working are the ones that have  " Printer Option" unchecked in Crystal Report designer . when we open these reports in designer and check that option on pagesetup and  save them back in enterprise they are working.
I have no luck to find the rootcause of this issue. what have changed that caused this issue.
It is happening on both test and production environments. I read somewhere on forum that it might be  related to printer driver, but we haven't updated any driver and nothing seems to be changed.
any ideas?

In the page setup put the option Microsoft XPS Document Writer in the Printer option before publishing it to BO Server .

Similar Messages

  • Scheduling Crystal Report in BO Enterprise -- running Failed with an error

    Hi all,
           I have scheduled a crystal reprt which is published in BO Enterprise. I have scheduled such that it should run right now. when i choose schedule, in the History screen of that particular Report Document, it  is showing the status as Failed.
           I cecked the Instance Details of that particular instance in History Screen, it is giving me this error message:
    " Error in File ~tmp1f905fddf0fb274.rpt: Unable to connect: incorrect log on parameters ".
           I have choose ' set to null ' to all parameters in the Parameteers Screnn while scheduling, as all the parameters are optional.
    Please suggest how to go ahead with this error. I am new to BO Enterprise, I have to schedule crystal report in the Enterprise.
    Thanks in advance !

    hey i got this error resolved by giving server details in Data Base Configuration screen.

  • Crystal Report Hangs

    Hi,
    Crystal Reports Server 2008 and Crystal Reports Client are installed in two different servers.  Both the serveru2019s operating system is windows 2003 SP 2.  ASP.Net (c#) is used for launching the reports. When I tried to launch the reports it hangs. After some time I got the following message
    COMException (0x80041017): Request timed out because there has been no reply from the server in 600000 ms.  
    CrystalDecisions.ReportAppServer.ClientDoc.ISReportAppFactory.OpenDocument(Object DocID, Int32 Options) +0
       ASP.crystalserver_crystal_report_server_aspx.Page_Load() in d:\TECH\report\Crystal_Report_Server.aspx:53
       System.Web.Util.CalliHelper.ArglessFunctionCaller(IntPtr fp, Object o) +8
       System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +8664819
       System.Web.UI.Control.OnLoad(EventArgs e) +99
       System.Web.UI.Control.LoadRecursive() +50
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
    I got this error when the following statement is executed
    InfoObject infoObject = infoObjects[1];
    ReportClientDocument reportClientDocument = new ReportClientDocumentClass();
    reportClientDocument = reportAppFactory.OpenDocument(infoObject.ID, 0);
    I tried to increase the request timed out (up to 30 minu2019s) in the registry settings but also this fails.  There is no firewall available in both the servers. 
    Can any one provide me the required settings to over come this issue. 
    Please Note : Previously I was not able to login to the CMS server from the client machine.  After providing the server details in the clientu2019s host entries then I am able to connect to the CMS now.

    This still sounds like a firewall issue specificly when dealing with the RAS server.  I would refer you to the [Configuring The Crystal Enterprise SDK to Work With Firewalls|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/0047e5f4-3140-2b10-1bae-de175e4c741c] document.
    The other way to test this is by running the application on the same machine as the enterprise server and see if it still gives that error.  If it does, that means the report is taking that long to run, if it doesn't, then there is some sort of network issue.

  • Web printing crystal report hangs on report.PrintOptions.PrinterName

    Hello,
    I have a report web page that displays a crystal report.  I have added a modal popup to allow them to select their printers.  When I go to print the report is hangs on the line of rpt.PrintOptions.PrinterName = li.Text.  The printer names are added to the list box using a Java applet.
    Here is the Sub it is running.
        Public Sub PrintReports()
            rpt = CType(Session("rpt"), ReportDocument)
            For Each li As ListItem In Me.lbPrinters.Items
                If li.Selected AndAlso li.Text <> "" Then
                    rpt.PrintOptions.PrinterName = li.Text
                    rpt.PrintOptions.PrinterDuplex = CType(Me.cboDuplex.SelectedItem.Value, CrystalDecisions.Shared.PrinterDuplex)
                    rpt.PrintToPrinter(CInt(Me.txtNumOfCopies.Text), True, CInt(Me.txtPageStartRange.Text), CInt(Me.txtPageRangeEnd.Text))
                End If
            Next
            Me.mpePrint.Hide()
        End Sub
    Any help would be greatly appreciated.
    Thanks,
    Patrick

    Sounds like you're trying to implement server side printing in your app. Which is fine, except the CR ActiveX print is client side printing. Just in case you're interested, the way to enable activeX print is to go to the property of the CR viewer and find "PrintMode". It will more than likely be defaulted to PDF. Change that to ActiveX.
    Now, back to the issue. This may still be a matter of permissions - essentially what Adam was after. Probably the easiest way to determine that is to use the [Process Monitor|http://technet.microsoft.com/en-ca/sysinternals/bb896645.aspx] utility. Once you have the log, search it for "Access Denied" messages.
    Ludek

  • Crystal report hangs when calling oracle package

    hi i have a oracle package that calls a proceadure, if i test this package in PLSQL developer it compiles and i get sensible results
    this package has been designed using a ref type cursor to be called from crystal reports. it primary objective when the report is run, is to use File util to output data to an xml file.
    when i run this from crystal reports it locks crystal reports up, and dosent output a file.
    any ideas why crystal is hanging?
    crystal DB call
    {CALL  Enhanced_Pharos_Report.run_report
    (NVL({?a_channel_id},0),{?b_on_date})}
    package
    create or replace package UKTV_PHAROS_EXPORT_RPT
    -- Author : WARDLJ01
    -- Created : 03/04/2006 12:25:03
    -- Purpose : export xml for pharos voiceovers
    -- Public type declarations
    AS
    TYPE result_set_type IS REF CURSOR;
    PROCEDURE run_report
    (main_cursor IN OUT result_set_type,
    V_CHANNEL_ID NUMBER,
    V_ONDATE      DATE);
    end ;--UKTV_PHAROS_EXPORT_RPT;
    package body
    create or replace package body UKTV_PHAROS_EXPORT_RPT AS
    PROCEDURE run_report
    (main_cursor IN OUT result_set_type,
    V_CHANNEL_ID NUMBER,
    V_ONDATE      DATE)
    is
    BEGIN
    OPEN main_cursor FOR
    -- Passess the parameters back to the cursor - which passes them back to the Crystal Report output
    SELECT V_CHANNEL_ID, V_ONDATE from DUAL;
    -- This is a procedure that calls FILE_UTL to export the data.
    UKTV_PHAROS_Export(V_CHANNEL_ID, V_ONDATE);
    END;
    end;
    Proceadure
    create or replace procedure uktv_own.UKTV_Pharos_Export(V_CHANNEL_ID number, V_ONDATE date) is
    l_output utl_file.file_type;
    p_filename varchar2(30);
    V_DETAIL_id varchar2(100);
    V_MEDIA_ID varchar2(150);
    V_REQUIRED varchar2(50);
    V_SCRIPT varchar2(4000);
    V_DEL_DATE varchar2(100);
    V_FULLMEDIA_ID varchar2(500);
    V_START_TIME varchar2(100);
    V_DURATION varchar2(100);
    V_DATE varchar2(100);
    V_CHANNEL varchar2(40);
    V_LOGO_NAME varchar2(250);
    Cursor VO_CURSOR
    IS
    select event_voiceover.detail_id, vo_media_id, vo_required, vo_script, vo_del_date, full_media_id,
    event.start_time, event.duration, event.on_date, event.channel_id, logo.logo_name
    from event_voiceover,
    onair.event, onair.event_technical_data,
    onair.logo
    where event_voiceover.detail_id = event.detail_id
    and event_technical_data.event_technical_data_id = event.event_technical_data_id
    and event_technical_data.content_id = logo.logo_id and
    event.channel_id = V_CHANNEL_ID and
    vo_required = 500004580 and
    event.on_date = V_ONDATE;
    begin
    p_filename :='voice_overs.xml';
    l_output := utl_file.fopen ('PHAROS_DIR', p_filename, 'w' );
    OPEN VO_CURSOR;
    utl_file.put ( l_output,'<Voice_Overs>');
    Loop
    FETCH VO_CURSOR INTO V_DETAIL_id, V_MEDIA_ID, V_REQUIRED,V_SCRIPT, V_DEL_DATE, V_FULLMEDIA_ID, V_START_TIME, V_DURATION, V_DATE, V_CHANNEL, V_LOGO_NAME;
    EXIT WHEN VO_CURSOR%NOTFOUND
    OR VO_CURSOR%ROWCOUNT = 10000;
    utl_file.put( l_output, '<DETAIL_ID>');
    utl_file.put( l_output, V_DETAIL_ID);
    utl_file.put( l_output, '</DETAIL_ID>');
    utl_file.put( l_output, '<MEDIA_ID>');
    utl_file.put( l_output, V_MEDIA_ID);
    utl_file.put( l_output, '</MEDIA_ID>');
    utl_file.put( l_output, '<REQUIRED>');
    utl_file.put( l_output, V_REQUIRED);
    utl_file.put( l_output, '</REQUIRED>');
    utl_file.put( l_output, '<SCRIPT>');
    utl_file.put( l_output, V_SCRIPT);
    utl_file.put( l_output, '</SCRIPT>');
    utl_file.put( l_output, '<DEL_DATE>');
    utl_file.put( l_output, V_DEL_DATE);
    utl_file.put( l_output, '</DEL_DATE>');
    utl_file.put( l_output, '<FULLMEDIA_ID>');
    utl_file.put( l_output, V_FULLMEDIA_ID);
    utl_file.put( l_output, '</FULLMEDIA_ID>');
    utl_file.put( l_output, '<START_TIME>');
    utl_file.put( l_output, V_START_TIME);
    utl_file.put( l_output, '</START_TIME>');
    utl_file.put( l_output, '<DURATION>');
    utl_file.put( l_output, V_DURATION);
    utl_file.put( l_output, '</DURATION>');
    utl_file.put( l_output, '<ONDATE>');
    utl_file.put( l_output, V_DATE);
    utl_file.put( l_output, '</ONDATE>');
    utl_file.put( l_output, '<CHANNEL_ID>');
    utl_file.put( l_output, V_CHANNEL);
    utl_file.put( l_output, '</CHANNEL_ID>');
    utl_file.put( l_output, '<LOGO_NAME>');
    utl_file.put( l_output, V_LOGO_NAME);
    utl_file.put( l_output, '</LOGO_NAME>');
    utl_file.new_line ( l_output);
    end loop;
    utl_file.put ( l_output,'</Voice_Overs>');
    utl_file.fclose(l_output);
    end UKTV_Pharos_Export;

    Hi yes the package uses fileutil to output a file,
    the report user has permission over the file util output directory.
    I have previously used this method to generate rpt, and other output files in parelell.
    thanks
    james

  • Crystal Reports hanging IIS

    Post Author: desiconsultant
    CA Forum: .NET
    Hi All,
    We use crystal reports and looks like every one in a while it hangs IIS 6.0. Running Windows Server 2003. Looking at the WinDbg the following call stands out as the cause of the hang.
    crpe32!EnableDialogsHelp
    Has anyone else seen this? Is there a patch/workaround/fix for this.
    Thanks

    In the page setup put the option Microsoft XPS Document Writer in the Printer option before publishing it to BO Server .

  • Crystal reports 10 and Enterprise sql nolock

    Post Author: Dis1931
    CA Forum: Data Connectivity and SQL
    Occasionally we have an issue where it seems the Crystal Reports Enterprise server causes a lock on one of our databases.  Doesn't happen all the time and we have not been able to narrow it down.  This prevents all users from connecting to the database and working...this is obviously not good.  When we find out we kill the PID in sql that is causing the lock.  Then all is fine. 
    My question is whether there is a way to perform a query using nolock in Crystal Reports 10 or of configuring it on the Enterprise server?  Is this called something else in Crystal? 
    I realize that this could lead to reading uncommitted data or that data may change while I am reading it, etc...but I would rather have a bad report every once in a while than to have it lock up the database every once in a while.  If there are other problems resulting from using nolock or a similar command let me know.  Is this possible? 
    I looked into connection strings as well and couldn't find a way to specify locking or in this case no locking. 
    I would change the SQL query in Crystal Reports but this functionality seems to have been removed since version 8.5.  If there is a way to edit the query directly that would be acceptable as well.
    Any help would be greatly appreciated.  Thanks in advance.

    Post Author: kevans
    CA Forum: Data Connectivity and SQL
    Did you ever find a solution to this?  I just upgraded from Crystal 8 to 10 and of course didn't discover this issue during my testing, never thought of it, but then locks (in sql it shows as blocking) started showing up during production locking people out of the database and bringing production to a hault.  I have searced for two days and cannot find a way to stop this, I was hoping there was a setting in Crystal to preventing blocking, or maybe something I could add to the select statement, someone said I could add 'noblock' but I can't find any info on this.

  • Crystal Report hanged at the 16374 pdf softcopy generated

    To whom it may concern,
    Recently, we have encountered a Crystal Report Problem during generating softcopy in PDF format.
    When the Crystal Report generated 16374 pdf softcopy, the Crystal Report program is hanged and without error.  It is replicable error and we have tried many times.
    Do you have any idea what is the cause of the issue?
    Thanks for your help.

    As you are using VS .NET I moved your post to the SAP Crystal Reports, version for Visual Studio SCN Space
    As I understand the issue, you are exporting report / reports(?) to pdf in some sort of a loop(?).
    You are able to export 16374 times, then the app stops processing and hangs.
    I'd like you to address the above two question marks please as these are assumptions and you need to clear these up.
    Next, provide the version of CR you are using - please be precise.
    Also, version of VS.
    Note that you should be be cleaning up your objects - the reports as well as the dataset - e.g.; use .close and .dispose.
    Check the hard drive - make sure you are not running out of HD space.
    Check the %TEMP% directory and clean that out.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter
    https://twitter.com/SAPCRNetSup

  • Cannot save Crystal Report to BO Enterprise

    I am running Crystal Reports XI R2 and Business Objects XI R2.  I opened a report from the enterprise in Crystal Reports to modify it.  After making changes, I tried to save the modified report back to the Enterprise.  I received the following message:
    "Failed to read data from report file {path of temporary location of .rpt file}.  Reason: Unable to launch C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Report\ReportAdd program to add report to the system."
    I have verified that the reportadd.exe file is in the specified location.
    A co-worker that uses the same computer set-up as I do is able to save to the repository.  We have compared our configurations and have not found anything different in our software versions, etc. as far as BO and CR are concerned.  The only thing that is different between our PC's is that I have Crystal Reports 8 installed also.  This has not been a problem in the past, though, and I did not use CR 8 to modify the report;  I used CR XI R2.
    Can anyone tell me what condition triggers this error?  If I knew that, maybe I would have a better idea of where to look for differences in our systems and, therefore, successfully resolve this issue.
    Edited by: scassibry on Apr 29, 2011 5:03 PM

    The system will not allow me to export the system crystal report....it is grayed out, and it IS a crystal report. HOwever I can open it in crystal, then save it to my desktop, then from INSIDE of SAP in the report and layout manager I import the crystal report I made the changes to from my desktop into SAP and it saves and imports no problems. However when I go to view the report (and this is only the ones I import), it prompts me with the db login for our server to connect, and it is only with that report, once I enter sa credentials it is fine and shows up from there on in, but not if I log out of SAP and back in...then I have to put in my credentials again. Is this something having to do with the report when I make changes to it? I cant have users entering login info each time they run the new aging details report. Please advise what I may be doing wrong when I make changes to a crystal report. It was a very minor change....just moved a feild width.

  • LOV issue for Crystal Report 4.0 ( Enterprise ) using the BICS connection

    Hi Expert,
    I am working for one our client which is using Crystal Report Enterprise 4.0 SP 2 i am facing the following problem with the LOV .
    - I have created the crystal report on top of BEx query using the OLAP connection in CMC .
    I have the variable at BEx query level which have list of value around 100 K and user want to search through that LOV in order to make his selection but as soon as i include that variable in my Query and run my CR my report crashes  and i cannot run the report .
    I gave the user the option of manual input of value to that variable it does not work as it uses the BICS connection and i read somewhere we cannot use the manual input in case of BICS connection for crystal report  you have to select the value from the LOV .
    My Question is is there any workaround if we can restrict our LOV to some extent and let the user to select and search from that any setting if we have at query designer level to restrict the LOV to burst in the report .
    Any input will be appreciated .
    Thanks,
    Vibhav

    Hello,
    Please log a case in Service Market Place and a Rep will call you to discuss your question.
    Thank you
    Don

  • Crystal reports 2011 for enterprise and SAP BW

    Hi guys
    I'm using Crystal reports for enterprise XI 4.0 and I try to connect to a simple query that has 4 key figures on the rows and Calendar year month on the columns.
    I'm connecting to BW through BICS and I manage to see my query.
    My problem is that I need my report to be designed as a crosstab, as BW is showing it and in Crystal I get everything in columns.
    I tried to insert a crosstab but I couldn't make it appear the way I wanted it.
    Any help will be appreciated
    Shlomi

    Hi Abhilash
    Thanks for the answer
    I have the key figures on the rows and I actually managed to create a crosstab after all
    But I couldn't change my main report to crosstab, only to add a crosstab one of the headers of the report.
    Do you have some steps on how to create a manual crosstab?
    Regards
    Shlomi

  • Crystal Reports hangs on Startup

    Hi,
    I'm very new to Crystal but can't find an answer to this.
    Crystal Reports 2008 SP3 (12.3.0.601)
    Interface opens when I click Start...Programs etc., but then hangs.
    I can't click on any on the menus (File...etc)
    The only way to shut it down is by Ending the Process.
    It's like it's trying to do/find something in the background but just not finding it.
    It opened properly for me once since it's been installed and I was able to open, edit and view a report but I can't get it to open again.
    Nothing else has been installed/changed in the meantime (except a reboot).
    Any ideas?
    Thanks,
    Jenny

    Hi Jenny,
    If you are on a 64 bit OS then go to this registry key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Business Objects\Suite 12.0\Crystal Reports
    If on a 32 bit OS then this key:
    HKEY_LOCAL_MACHINE\SOFTWARE\business objects\suite12.0\crystal reports
    and look for DisableCheckForUpdates and change it to a "1".
    Thank you
    Don

  • Crystal Reports Hangs on .Load event

    Hi ,
    We are using CR 2011 on Windows environment (2008 R2) and  run the following workflow.
    1. We have created a rpt with 9 sub reports.
    2. We would like to print the port to a particular printer and hence have set the flag <NO Printer> on the report
    3. The application is a windows based application and not a web based application.
    4. We have tested the report by launching the report and printing it on the desired printer.
    5. We have a windows service that executes the code of reading the report and printing it out as a pdf / printer.
    6. Step 4 is an event based activity that occurs as frequently as every 2 minutes.
    7. The database is Oracle 11g
    PROBLEM:
    1. Generally all runs well, however once / twice a day the report hangs.
    2. We have created a dump file and observed that the hang occurs on .LOAD event.
    3. We are using the .LOAD with a single parameter that of the report name.
    4. We also observed that the spooler service hangs
    5. We are disposing the report immediately after printing it.
    After the problem occurs we are forced to start the windows service and the printer spooler service.
    Solutions tried so far:
    1. Changing the No Printer flag did not give any results.
    2. We have created a job that restarts the windows service and the spooler service after a period of 30 mins. - This has minimized the occurances but not eliminated the problem.
    Pseudo code:
    ReportDocument CR = new ReportDocument()
    CR.Load(<report file name);
    //Set Main data Source
    CR.Database.Tables[0].SetDataSource(ADODB.Recordset)
    //set sub reports
    CR.Subreports[<Index>].Database.Tables[0].SetDataSource(data table)
    //here it prints on default printer or the set printer. (Printer s are UNC printers, however we register them - they are visible as local printers on the given machine -  locally before printing)
    CR.PrintToPrinter(noOfCopies, false, fromPage, toPage);
    CR.Close()
    CR.Dispose()
    IF required we can also provide the rpt file and any other details.
    Our customers are really suffering cause of this and any help would be really appreciated.
    Thanks
    Anil

    Hi Ludek,
    In continuation, please find the stack for the hang.
    As we can see there is a OutOfMemory exception followed by a Stack Overflow exception and then we have the CrstalReports function calls.
    005b99b4   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnPropertyChangedEventHandler
    005b98f8   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnPropertyChangingEventHandler
    005b983c   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnSavedEventHandler
    005b9780   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnSavingEventHandler
    005b96c4   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_PreSavingEventHandler
    005b9608   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnClosedEventHandler
    005b954c   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_OnClosingEventHandler
    005b9490   
    2      
    64 CrystalDecisions.ReportAppServer.ClientDoc._ISCDClientDocumentEvents_PreClosingEventHandler
    79ad78cc   
    1      
    68 System.Diagnostics.Tracing.EventSource+OverideEventProvider
    77eb9860   
    1      
    68 System.Drawing.BufferedGraphicsContext
    5fb97d40   
    1      
    68 System.Configuration.AppSettingsSection
    04028214   
    1      
    68 System.Text.RegularExpressions.Match
    79ae71b8   
    2      
    72 System.Globalization.CompareInfo
    79ae0b30   
    2      
    72 System.Threading.ExecutionContext
    79ae0014   
    3      
    72 System.Guid
    79ad7804   
    1      
    72 System.Collections.Generic.Dictionary`2+Entry[[System.String, mscorlib],[System.Resources.ResourceLocator, mscorlib]][]
    5fb97254   
    3      
    72 System.Configuration.ConfigurationElementCollection+Enumerator
    5fb9715c   
    6      
    72 System.Configuration.ConfigurationValues+ConfigurationElementsCollection
    049d8ff4   
    3      
    72 System.Windows.Forms.Layout.DefaultLayout+AnchorInfo
    049d71dc   
    6      
    72 System.Windows.Forms.ControlEventArgs
    049d70b4   
    3      
    72 System.Windows.Forms.Layout.LayoutUtils+MeasureTextCache
    04059b30   
    1      
    72 System.Diagnostics.FilterElement
    03e04348   
    3      
    72 System.Collections.Generic.List`1[[Microsoft.Win32.SystemEvents+SystemEventInvokeInfo, System]]
    79ae9250   
    1      
    76 System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo
    049d7208   
    1      
    76 System.Windows.Forms.NativeMethods+STARTUPINFO_I
    79ae4468   
    5      
    80 System.Text.DecoderReplacementFallback
    79ae4418   
    5      
    80 System.Text.EncoderReplacementFallback
    79ae01b4   
    5      
    80 System.DateTime
    79ada500   
    2      
    80 System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
    79ad9728   
    1      
    80 System.Resources.ResourceManager
    79ad7268   
    1      
    80 System.Resources.ResourceReader
    79ad5374   
    2      
    80 System.IO.BinaryReader
    77eb942c   
    2      
    80 System.Drawing.SafeNativeMethods+LOGFONT
    77eb8c74   
    2      
    80 System.Drawing.Icon
    0403c604   
    4      
    80 System.Text.RegularExpressions.ExclusiveReference
    040285b4   
    4      
    80 System.Collections.Specialized.HybridDictionary
    040284e0   
    4      
    80 System.Collections.Specialized.ListDictionary+DictionaryNode
    79ae2570   
    1      
    84 System.ExecutionEngineException
    79ae252c   
    1      
    84 System.StackOverflowException
    79ae24e8   
    1      
    84 System.OutOfMemoryException
    79ae2394   
    1      
    84 System.Exception
    79ad7460   
    3      
    84 System.Resources.ResourceFallbackManager+<GetEnumerator>d__0
    051abba4   
    1      
    84 System.Windows.Forms.SaveFileDialog
    049d8aa8   
    7      
    84 System.Windows.Forms.UICuesEventArgs
    049d611c   
    3      
    84 System.Windows.Forms.PropertyStore+PaddingWrapper
    049d53c4   
    3      
    84 System.Windows.Forms.Padding
    04059a1c   
    1      
    84 System.Diagnostics.ListenerElement
    04026734   
    2      
    88 System.Diagnostics.TraceSwitch
    049d643c   
    1      
    92 System.Collections.Generic.KeyValuePair`2[[System.Drawing.Font, System.Drawing],[System.Windows.Forms.Internal.WindowsFont, System.Windows.Forms]][]
    79ae68c8   
    3      
    96 System.Reflection.MemberFilter
    79ad7f34   
    3      
    96 System.Text.UTF8Encoding+UTF8Decoder
    7971adc8   
    4      
    96 System.Collections.Generic.List`1[[System.Reflection.MethodInfo, mscorlib]]
    7971a530   
    2      
    96 System.Collections.Generic.Dictionary`2[[System.Type, mscorlib],[System.Byte[], mscorlib]]
    7971941c   
    4      
    96 System.Collections.Generic.List`1[[System.String, mscorlib]]
    5fb97e10   
    1      
    96 System.Configuration.KeyValueConfigurationCollection
    5fb95c3c   
    2      
    96 System.Configuration.ClientConfigPaths
    05199e20   
    6      
    96 System.Windows.Forms.KeyEventArgs
    049d18fc   
    4      
    96 System.Windows.Forms.NativeMethods+TRACKMOUSEEVENT
    04059794   
    1      
    96 System.Diagnostics.SwitchElementsCollection
    04059710   
    1      
    96 System.Diagnostics.SharedListenerElementsCollection
    04059588   
    1      
    96 System.Diagnostics.SourceElementsCollection
    0403c1dc   
    4      
    96 System.Collections.Generic.List`1[[System.Text.RegularExpressions.RegexOptions, System]]
    03e0411c   
    2      
    96 System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[System.UriParser, System]]
    79ae9154   
    1     
    100 System.Runtime.Serialization.Formatters.Binary.__BinaryWriter
    79ae6af8   
    5     
    100 System.Security.PermissionToken
    79ad7848   
    1     
    100 System.Diagnostics.Tracing.FrameworkEventSource
    04029fd0   
    1     
    100 System.Diagnostics.FileVersionInfo
    049d5984   
    1     
    104 System.Windows.Forms.Application+MarshalingControl
    79ae90dc   
    1     
    108 System.Runtime.Serialization.Formatters.Binary.ObjectWriter
    5fb969ac   
    9     
    108 System.Configuration.ConfigurationPropertyCollection
    79ae26bc   
    1     
    112 System.AppDomain
    5fb96bb8   
    4     
    112 System.Configuration.StreamInfo
    0403c55c   
    4     
    112 System.Text.RegularExpressions.RegexFCD
    04028518   
    4     
    112 System.Collections.Specialized.ListDictionary
    04025bec   
    7     
    112 System.Collections.Specialized.NameObjectCollectionBase+NameObjectEntry
    79ae2d3c   
    3     
    120 System.Security.Policy.Evidence
    797183c0   
    5     
    120 System.Collections.Generic.List`1[[System.Type, mscorlib]]
    049d7190   
    6     
    120 System.Windows.Forms.Control+ControlCollection
    04059890   
    2     
    120 System.Diagnostics.TraceSection
    040593d4   
    2     
    120 System.Diagnostics.AssertSection
    79aed4a4   
    4     
    128 System.Text.UTF8Encoding+UTF8Encoder
    79adec44   
    8     
    128 System.Runtime.InteropServices.HandleRef
    79adb030   
    8     
    128 System.Security.Permissions.UIPermission
    049d54a4   
    8     
    128 System.Windows.Forms.PropertyStore+SizeWrapper
    049d4ecc   
    8     
    128 System.Windows.Forms.PropertyStore
    0403c5cc   
    8     
    128 System.Text.RegularExpressions.RegexPrefix
    0403c594   
    8     
    128 System.Text.RegularExpressions.RegexFC
    0402c194   
    8     
    128 Microsoft.Win32.SystemEvents+SystemEventInvokeInfo
    0402aab4   
    4     
    128 Microsoft.Win32.UserPreferenceChangingEventHandler
    79ad0adc   
    3     
    132 System.Reflection.RtFieldInfo
    77eb82ac   
    3     
    132 System.Drawing.Font
    049d5618   
    1     
    132 System.Windows.Forms.Application+ThreadContext
    005ba0e4   
    2     
    136 CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper
    Regards,
    Anil

  • Publishing crystal report in BO Enterprise

    Hello,
    I  have a following problem - do everything as writing in blog but system does not create a folder with BW role's name.
    any ideas?
    Regards,
    Veronika.

    Hello,
    I've still tried to publish crystal report from BW to Business Object Enetrprise.
    I have installed:
    1. SAP GUI 7.10
    2. Business Objects Enetprise 3.1
    3. Crystal reports 2008 on local machine
    4. SAP BW server
    5. SAP integration kit 3.1 for SAP (on local machine and BW server)
    Do I have to install something else?

  • Crystal Reports Server 8.5/Web Reporting Launch Kit/Crystal Enterprise 8.5

    I have an old IIS 5.0 server which is serving up our company's Crystal 8.5 reports.  The time has come to decommision that server, so I would like to migrate the IIS configuration to a new server.  However, I have been unable to locate the media necessary to install the server side component on the new IIS server.  The first question I have is, what is the product name I should be looking for?  My research has been inconclusive, identifying Crystal Reports Server 8.5, Web Reporting Launch Kit, and Crystal Reports 8.5 Enterprise Edition as possible product names.  My second question is, how can I go about obtaining replacement media for the product?  Thanks in advance for your assistance.

    Hi Peet,
    The software might work on windows 2008 server. However, if there are any error messages or bugs found while using it will not be addressed as the product has not be tested on this platform. (As also the technical support for versions 9.2 and earlier has already ended, so Product Group no longer works on the bugs or supported platform for these products.)
    A better idea would be to install the products CR 10 and higher on Operating Systems which have been tested. That ways you can be sure that the the product is supposed to work correctly on a particular setup.
    Please do let us know your thoughts about it.
    Cheers!

Maybe you are looking for

  • TS4242 since updating and restoring my iphone 3gs it no longer can find my sim itunes cant activate it because no sim inserted can anyone help

    since updating and restoring my iphone 3gs it no longer can find my sim itunes cant activate it because no sim inserted can anyone help

  • How to specify more than Two Tables in NATURAL JOIN

    Hi, I am using Oracle9i R-2. I want help in writing a Query using Two Tables in SQL*PLUS. I am using ANSI/ISO Standrard for table-joins: select col1, col2, descr from tab1 natural join tab2 There are two columns col1 & col2 is common between thse two

  • Which approach is good?

    I don;t know if I am posting this on the right forum. So Please.... The question is with respect to logging. I know using the log4j , we can configure/direct the logs based on the package names. Now I have one package and in the same package, In ever

  • PCH1 Query

    Hi Is there a possibility of doing the following: When selecting a specific GL Account (701120) on Row Level of an AP Invoice (PCH1) it will automatically update the Project field to (Regional = Code 100014). I created the following query then did a

  • Generating Export DataSource

    Greetings Y'all! Can anyone tell me what the purpose for generating Export DataSources are for and what the specific sequence of steps are to generate Export DataSources? Thank you! Philips Manalaysay