Unhandled Exception in BO 6.5.2 report(.rep) while save as Excel

Post Author: birinder
CA Forum: Desktop Intelligence Reporting
Hi everyone, I have a report created in BO 6.5.1 and i can save the report as excel file. Now I have installed SP2 and while I try to save the same report in excel, its throwing 'Unhandled Exception c000005 EXCEPTION_ACCESS_VIOLATION'. I'm not able to figure out the problem..... Please help me in this regard......
Thanks,
Birinder

Post Author: Wes
CA Forum: Desktop Intelligence Reporting
Hi,There is a fix for excel crashing included in CHF11, or MHF1.  You could try applying that and see if it fixes that error.Regards,Wes

Similar Messages

  • Unhandled Exception: System.TimeoutException: The request channel timed out while waiting for a reply after 00:01:59.9139778.Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding.

    Hi, 
    I created a simple plugin and since i wanted to use Early Binding i added Xrm.cs file to my solution.After i tried registering the plugin (using the Plugin Registration Tool) the plugin does not gets registered and i get the below mentioned Exception.
    Unhandled Exception: System.TimeoutException: The request channel timed out while waiting for a reply after 00:01:59.9139778. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this
    operation may have been a portion of a longer timeout.
    Server stack trace: 
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]: 
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.Xrm.Sdk.IOrganizationService.Update(Entity entity)
       at Microsoft.Xrm.Sdk.Client.OrganizationServiceProxy.UpdateCore(Entity entity)
       at Microsoft.Crm.Tools.PluginRegistration.RegistrationHelper.UpdateAssembly(CrmOrganization org, String pathToAssembly, CrmPluginAssembly assembly, PluginType[] type)
       at Microsoft.Crm.Tools.PluginRegistration.PluginRegistrationForm.btnRegister_Click(Object sender, EventArgs e)
    Inner Exception: System.TimeoutException: The HTTP request to 'https://demoorg172.api.crm.dynamics.com/XRMServices/2011/Organization.svc' has exceeded the allotted timeout of 00:01:59.9430000. The time allotted to this operation may have been a portion of a
    longer timeout.
       at System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
    Inner Exception: System.Net.WebException: The operation has timed out
       at System.Net.HttpWebRequest.GetResponse()
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
    And to my Surprise after i remove the Xrm.cs file from my solution the Plugin got registered!
    Not understanding what exactly is the issue.
    Any Suggestions are highly appreciated.
    Thanks,
    Shradha
      

    Hello Shardha,
                            I really appreciate that you have faced this issue.This is really very strange issue and basically it occurs because of big size of your early bound class and slow internet
    connection.
                            I would strictly recommend you to reduce the file size of your early bound class and then register.By default early bound class is created for all the entities which are
    present in CRM(System entities as well custom entities).Such kind of early bound classes takes lots of time to register on server and hence timeout exception comes.
                            There is some standard define to reduce the size of early bound class.Please follow the link to get rid from big size of early bound class.
    Create a new C# class library project in Visual Studio called SvcUtilFilter.
    In the project, add references to the following:
    CrmSvcUtil.exe(from sdk)   This exe has the interface we will implement.
    Microsoft.Xrm.Sdk.dll  (found in the CRM SDK).
    System.Runtime.Serialization.
      Add the following class to the project:
    using System;
    using System.Collections.Generic;
    using System.Xml.Linq;
    using Microsoft.Crm.Services.Utility;
    using Microsoft.Xrm.Sdk.Metadata;
    namespace SvcUtilFilter
        /// <summary>
        /// CodeWriterFilter for CrmSvcUtil that reads list of entities from an xml file to
        /// determine whether or not the entity class should be generated.
        /// </summary>
        public class CodeWriterFilter : ICodeWriterFilterService
            //list of entity names to generate classes for.
            private HashSet<string> _validEntities = new HashSet<string>();
            //reference to the default service.
            private ICodeWriterFilterService _defaultService = null;
            /// <summary>
            /// constructor
            /// </summary>
            /// <param name="defaultService">default
    implementation</param>
            public CodeWriterFilter( ICodeWriterFilterService defaultService )
                this._defaultService = defaultService;
                LoadFilterData();
            /// <summary>
            /// loads the entity filter data from the filter.xml file
            /// </summary>
            private void LoadFilterData()
                XElement xml = XElement.Load("filter.xml");
                XElement entitiesElement = xml.Element("entities");
                foreach (XElement entityElement in entitiesElement.Elements("entity"))
                    _validEntities.Add(entityElement.Value.ToLowerInvariant());
            /// <summary>
            /// /Use filter entity list to determine if the entity class should be generated.
            /// </summary>
            public bool GenerateEntity(EntityMetadata entityMetadata, IServiceProvider services)
                return (_validEntities.Contains(entityMetadata.LogicalName.ToLowerInvariant()));
            //All other methods just use default implementation:
            public bool GenerateAttribute(AttributeMetadata attributeMetadata, IServiceProvider services)
                return _defaultService.GenerateAttribute(attributeMetadata, services);
            public bool GenerateOption(OptionMetadata optionMetadata, IServiceProvider services)
                return _defaultService.GenerateOption(optionMetadata, services);
            public bool GenerateOptionSet(OptionSetMetadataBase optionSetMetadata, IServiceProvider services)
                return _defaultService.GenerateOptionSet(optionSetMetadata, services);
            public bool GenerateRelationship(RelationshipMetadataBase relationshipMetadata, EntityMetadata otherEntityMetadata, IServiceProviderservices)
                return _defaultService.GenerateRelationship(relationshipMetadata, otherEntityMetadata, services);
            public bool GenerateServiceContext(IServiceProvider services)
                return _defaultService.GenerateServiceContext(services);
    This class implements the ICodeWriterFilterService interface.  This interface is used by the class generation
    utility to determine which entities, attrributes, etc. should actually be generated.  The interface is very simple and just has seven methods that are passed metadata info and return a boolean indicating whether or not the metadata should be included
    in the generated code file.   
    For now I just want to be able to determine which entities are generated, so in the constructor I read from an XML
    file (filter.xml) that holds the list of entities to generate and put the list in a Hashset.  The format of the xml is this:
    <filter>
      <entities>
        <entity>systemuser</entity>
        <entity>team</entity>
        <entity>role</entity>
        <entity>businessunit</entity>
      </entities>
    </filter>
    Take a look at the methods in the class. In the GenerateEntity method, we can simply check the EntityMetadata parameter
    against our list of valid entities and return true if it's an entity that we want to generate.
    For all of the other methods we want to just do whatever the default implementation of the utility is.  Notice
    how the constructor of the class accepts a defaultService parameter.  We can just save a reference to this default service and use it whenever we want to stick with the default behavior.  All of the other methods in the class just call the default
    service.
    To use our extension when running the utility, we just have to make sure the compiled DLL and the filter.xml file
    are in the same folder as CrmSvcUtil.exe, and set the /codewriterfilter command-line argument when running the utility (as described in the SDK):
    crmsvcutil.exe /url:http://<server>/<org>/XrmServices/2011/Organization.svc /out:sdk.cs  /namespace:<namespace> /codewriterfilter:SvcUtilFilter.CodeWriterFilter,SvcUtilFilter
    /username:[email protected] /password:xxxx
    That's it! You now have a generated sdk.cs file that is only a few hundred kilobytes instead of 5MB. 
    One final note:  There is actually a lot more you can do with extensions to the code generation utility. 
    For example: if you return true in the GenerateOptionSet method, it will actually generated Enums for each CRM picklist (which it doesn't normally do by default).
    Also, the source code for this SvcUtilFilter example can be found here. 
    Use at your own risk, no warranties, etc. etc. 
    Please mark as a answer if this post is useful to you.

  • Unhandled exception error when i open the reports in crystal reports 12.0

    Hi All
    When i open Reports in SAP Business one it is showing unhandled exception occured unknown user name and password
    because of this i could not check my reports can any one help me on this?
    Regards
    Boopathi.T

    Hi,
    Have you used CR add-on for B1?  You may search within the forum to find the similar issue.
    Thanks,
    Gordon

  • Crystal Report: Error while Export to Excel

    We are using combination of Crystal Report 10 With
    J2EE, Below source code is working fine While
    exporting to PDF, MSWord, RTF format.
    if(selectedFormat.equals("MSWORD"))
    exportOptions.setExportFormatType(ReportExportFormat.MSWord);
    if(iPageFrom>0 && iPageTo>0)
    RTFWordExportFormatOptions RTFExpOpts=new
    RTFWordExportFormatOptions();
    RTFExpOpts.setStartPageNumber(iPageFrom);
    RTFExpOpts.setEndPageNumber(iPageTo);
    exportOptions.setFormatOptions(RTFExpOpts);
    But am getting following error while exporting report
    to Excel
    com.crystaldecisions.report.web.viewer.ReportExportControl
    Invalid post back event : {0}
    We would like to know, Is SDK feasible for exporting
    to excel or not ?
    If yes! then Please suggest us for same.
    Thanks In advance :)

    I will make sure that I am on the latest patch ie SP4
    https://smpdl.sap-ag.de/~sapidp/012002523100008782452011E/cr2008sp4.exe
    You can find the rumtimes here:
    MSI:
    https://smpdl.sap-ag.de/~sapidp/012002523100008782532011E/cr2008sp4_redist.zip
    MSM:
    https://smpdl.sap-ag.de/~sapidp/012002523100008782522011E/cr2008sp4_mm.zip
    ClickOnce
    https://smpdl.sap-ag.de/~sapidp/012002523100008782442011E/cr2008sp4_clickonce.zip
    Recompile the app and then deploy.
    What is the .NET Framework used by the application?
    Method of deployment?
    OS where app is deployed, x86 or x64?
    Are you able to export the report from designer ie CR2008 Standalone?
    - Saurabh

  • ALV Report Error while downloading to Excel

    Hi All,
    when i downloading to Excel from a alv grid following message has been displayed.
    Template not found in BDS  - Layout: Template-
    Guid:
    please give me any solution to download the report to excel
    Thanks & Regards
    Ramu G

    Hi,
    Standard Function code for Download to Excel Icon used  '&VEXCEL'(Microsoft Excel) instead of '&XXL'(Spreadsheet...) it solved my problem.
    Thanks & Regards
    Ramu Ganji

  • Abap report error while downloading to excel.

    Hello All,
    I have a abap report which displayes the output in frontend and I want to download it to the excel file.
    When i choose from menu bar the options like--
    LIST-> MOVE ->Save to PC File.  some of the negative values get merged into one single value.
    I have two different negative values say 115  10-  in one cell but when I download it to the excel file this value is dispalyed as          -11510         .    Also I ahve noticed that only the values with one negative sign are dispalyed wrongly.
    The values with -115 -10 are dispalyed correctly.
    Could anyone please let me know why this happens?
    Many Thanks,
    Komal.

    Hi Komal  ,
    I have two different negative values say 115 10- in one cell but when I download it to the excel file this value is dispalyed as -11510 . Also I ahve noticed that only the values with one negative sign are dispalyed wrongly.
    as  value 115 10- are in one cell in output  they will be saved as one  -11510 only  .
    But i don't understand  why you are saving  115 and 10- in one cell or one  column  if they are two different  value    .
    regards
    Deepak.
    Edited by: Deepak Dhamat on Aug 10, 2011 11:07 AM

  • Debugger - unhandled exception trapping?

    3.1.681
    Can someone explain to me how to set up a Debugger trap for any unhandled exception?
    I use Debug | Run | Exception Breakpoint (lit) | Unhandled Exception Throw (lit ) but it doesn't seem to save (When I come back it is unlit again)? Is there something more that needs to be done?
    grin Is was fun looking at the documentation like "Step Over to Step Over the method" and then determining that "Step Over==Step" in other debuggers, and I can't find a "Step Over" ( or Skip ) function? sigh If each new town incorporated makes its own vocabulary, changing definitions while using the same words as another town.... well, I guess that's a really common issue in computer application tools.

    You make me smile! Ok, the terms are confusing. I'm not going to lash anyone with a wet noodle, but hopefully the docs will get better, without any tortellini torture.
    Ok, Step Over does execute the method without stopping (unless it encounters a real breakpoint somewhere). What you want is to NOT execute the method. Ok, we have such a feature (starting with JDev 3.1 I think), but it is only available with OJVM, which hopefully you are using! (Unless you specify -classic or -hotspot in the Java VM Parameters field of the Run/Debug tab in the project properties dialog box, then you are probably using OJVM).
    Click in the editor and place the text cursor on the line that you want to skip to. Don't put the text cursor on the line you want to skip over, but do put it on the line where you want to end up. Then go to the main menu and choose Debug -> Set Next Statement. That will move the execution point of the current thread to the line where the text cursor is, without executing any code.
    If the menu item is grayed, check the following:
    1. You are using ojvm. You can verify this by looking in the message view while you are debugging. The message view shows the command which was used to start your program in debug mode. After the "...\jre\bin\java" part, there should be a -XXdebug. Note that there are two Xs. If -XXdebug is present, it means that you are using OJVM. If you see -classic or -hotspot or -Xdebug (only one X), then you are not using OJVM.
    2. The text cursor in the code editor is on a valid and executable line of java code. Make sure it is not on a comment.
    3. The text cursor is within the same method as the execution point. We don't let you "jump" into a different method.
    Be very careful using this feature. We call it a buyer-beware feature. If you skip over initialization of local variables, you are likely to get into trouble very quickly, especially if the uninitialized variable is not a primitive type. If you skip over code which is "necessary" to the rest of you program, you are going to get into trouble.
    You can also use this feature to repeat the execution of a statement. For example, if you pressed Step Over but you meant to Trace Into, you can put the cursor BACK on the line you wanted to trace into, do Set Next Statement, and then do Trace Into. Again, buyer-beware: if the code you are repeating causes side effects, then it may not be safe to repeat it.
    About the exception breakpoint stuff. The problem arises from mixing old and new debugger architectures, which happened when we started supporting JDK 1.2 (new) and continued to support JDK 1.1 (old). The user interface was mostly written when we only supported JDK 1.1, and the UI basically matched the underlying debugging support. However, the debugging support we have in JDK 1.2 is a little different, so we try our best to match an old user interface to the new underlying debugging support.
    Did you happen to go to Oracle Open World and check out JDev 5, which was shown at the "campground"? With JDev 5, we can all look forward to a better product, where the UI can be re-designed (where necessary) to better match the underlying capabilities.
    Liz
    null

  • Crystal Reports PrintToPrinter - The process was terminated due to an unhandled exception

    Hi,
    I am having a real problem with Crystal Reports in an application built using Visual Studio 2013.
    Sometimes (in fact nearly all the time, but not always) whenever I call PrintToPrinter, I get the following error:-
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: exception code c0000005, exception address 37A9D5DC
    I have two projects that wrap the functionality, one a Windows Service and the other a Console application.
    I will attach a sample of my code, but at the moment I am testing using the console application for testing and this error always terminates the application completely. I have added all sorts of exception handling to try and stop it terminating the app, but to deal with the exception gracefully. Nothing however works, it always terminates the application completely.
    The strange thing is that this only happens when calling PrintToPrinter. If I use export functionality such as ExportToStream, everything is absolutely fine and I don't get any errors.
    The application always works fine on my development machine as well printing to an Epson WF-3540, it just falls over when deployed to the live server.
    The application is developed in Visual Studio 2013.
    It uses .NET Framework 4.5.1.
    The printer that we are printing to that causes the issue is an HP LaserJet P3010 Series PCL 6
    All Crystal Reports For Visual Studio are patched to the latest versions on the live server (13.0.5.891)
    I am at a complete loss and any help or guidance would be very much appreciated.
    A sample of my code is attached
    Many thanks in advance.
    Simon

    VS 2013 is not supported until SP 9 due out end of this month
    Don

  • Unhandled exception in crw32.exe when dragging field onto report

    I support a Crystal Reports Designer XI user who is receiving an error:
    Unhandled exception at 0x00891ff3 in crw32.exe: 0xC0000005: Access violation reading location 0x00000020.
    So far, this only appears to happen when she drags a field from Field Explorer onto a new or existing report.  The data connection to the database appears not to be the issue, as she accesses that DB from different applications with no problem.
    DEP is set with Crystal as an exception, I have uninstalled and reinstalled along with deleting temp files and leftover registry keys, I have closed all other applications, I have granted her admin rights, disabled VirusScan, and nothing seems to fix this issue.  She had this issue once before on a different computer (with the same software installed) and we ended up getting her a new computer at around the same time so the issue never needed to be resolved.  On the current computer she was working problem-free for about 3-4 months, and a few days ago it started showing up on her new computer.  I could rebuild her Windows profile but that is a huge hassle and I don't think of that as a permanent fix.
    Thanks for any help... I'm racking my brain on this one!
    Nick H

    Hi Nick,
    CR XI is NOT DEP aware and will never be. Only option is to upgrade to XI R2 and SP 6 for free or disable DEP. DEP was released after XI and XI is past it's end of life so no new patches to fix the problem.
    Go to this link: http://www.sdn.sap.com/irj/boc and download the trial version of CR XI R2 and use your XI keycode, then apply the patches which you can get to by clicking on the BusinessObjects tab above, then Downloads.
    Direct link to the Trial version: http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    Thank you
    Don

  • Passing parameters from Forms to Reports - Unhandled exception error

    Hi there,
    I am passing parammeters to my Reports through Forms. I am using the built-in RUN_REPORT_OBJECT to invoke and run my report.
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    BEGIN
    repid := FIND_REPORT_OBJECT('MY_REPORT');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_OTHER,
    'p1='&#0124; &#0124;to_char(:block.p1_field)&#0124; &#0124;
    ' p2='&#0124; &#0124;to_char(:block.p2_field)&#0124; &#0124;
    ' p3='&#0124; &#0124;to_char(:block.p3_field)&#0124; &#0124;
    ' paramfrom=no');
    v_rep := RUN_REPORT_OBJECT(repid);
    EXIT_FORM;
    END;
    In one of my reports, after the report was invoked on the previewer window and I closed it, an unhandled exception error message appears.
    Are there any restrictions on the length of REPORT_OTHER parameters/value, as in this form, there are quite a number of parameters set to passed into the reports?
    I did not encounter this problem when running the report using the default REPORTS PARAMETER FORM to pass in the parameter. It is only when I pass in through FORMS using SET_REPORT_OBJECT_PROPERTY, then the error appears.
    I did not encounter this error with other reports which have little parameters.
    Regards,
    Hon Koat

    Pang,
    Not sure it this will make the problem go away, but you could try to send the parameters in a parameter list, instead of setting the REPORT_OTHER values.
    The syntax is the same you use to pass parameter list from one form to another:
    declare
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    v_list paramlist;
    c_listname constant varchar2(30) := 'my_list';
    begin
    repid := FIND_REPORT_OBJECT('MY_REPORT');
    v_list := get_parameter_list(c_listname);
    if not id_null(v_list) then
    destroy_parameter_list(v_list);
    end if;
    v_list := create_parameter_list(c_listname);
    add_parameter(v_list, 'P1', text_parameter, to_char(:block.p1_field));
    add_parameter(v_list, 'P2', text_parameter, to_char(:block.p2_field));
    v_rep := RUN_REPORT_OBJECT(repid, v_list);
    end;Hope this solves your problem,
    Pedro

  • Unhandled Exception Error in Crystal Reports

    I am trying to run Crystal Report and I get a error saying "Unhandled Exception has occured in your application. If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close automatically. Load Report failed." Any help to resolve this will be much appreciated. Thanks.

    Hi Mark,
    Check Unhandled exception has occurred in your application thread for solutions.
    Thanks,
    Neetu

  • Xilinx error 59 reported by Translation process, and unhandled exception in ngdbuild

    Hi all,
    Not sure if this is the right forum to post in but I'll try.
    I'm struggeling with compiling my FPGA code on a NI 9074 target with 8 modules. LabView FPGA tells me that it failed due to a xilinx error in the translation process. It looks like the ngdbuild.exe craches (I'm getting questions from CVI to start debugging an unhandled exception. This happens two times every I try to compile the FPGA code. But the exception seems to happen at different places every time. That is at least what I see from the debug window which appears, assuming the number in square bracets means line number in the source. This number seems to shift with every compilation. It shifts from 1864 to 5896.
    The error which is returned to the LabView FPGA is:
    ERROR:ConstraintSystem:59 - Constraint <TIMESPEC "TS_AsynchMite29"= FROM
    PADS(mIoHWord_n) TO PADS(aIoInt*) 0 ns;> [toplevel_gen.ucf(606)]: PADS
    "mIoHWord_n" not found. Please verify that:
    1. The specified design element actually exists in the original design.
    2. The specified object is spelled correctly in the constraint source file.
    ERROR:ConstraintSystem:59 - Constraint <TIMESPEC "TS_AsynchMite30"= FROM
    PADS(mIoHWord_n) TO PADS(mIoDmaReq<*>) 0 ns;> [toplevel_gen.ucf(607)]: PADS
    "mIoHWord_n" not found. Please verify that:
    1. The specified design element actually exists in the original design.
    2. The specified object is spelled correctly in the constraint source file.
    ERROR:ConstraintSystem:59 - Constraint <TIMESPEC "TS_AsynchMite31"= FROM
    PADS(mIoHWord_n) TO PADS(mIoDtack_n) 0 ns;> [toplevel_gen.ucf(608)]: PADS
    "mIoHWord_n" not found. Please verify that:
    1. The specified design element actually exists in the original design.
    2. The specified object is spelled correctly in the constraint source file.
    ERROR:ConstraintSystem:59 - Constraint <TIMESPEC "TS_AsynchMite32"= FROM
    PADS(mIoHWord_n) TO PADS(mIoReady) 0 ns;> [toplevel_gen.ucf(609)]: PADS
    "mIoHWord_n" not found. Please verify that:
    1. The specified design element actually exists in the original design.
    2. The specified object is spelled correctly in the constraint source file.
    ERROR:ConstraintSystem:59 - Constraint <TIMESPEC "TS_AsynchMite33"= FROM
    PADS(mIoHWord_n) TO PADS(mIoData<*>) 0 ns;> [toplevel_gen.ucf(610)]: PADS
    "mIoHWord_n" not found. Please verify that:
    1. The specified design element actually exists in the original design.
    2. The specified object is spelled correctly in the constraint source file.
    Done...
    I'm not familiar with VHDL so I don't know the specifics of what really happens during the compilation. I dont have anything specail timing code in the VI except for loop timers.
    I'm using LabView FPGA 2011, and xilinx 12.4. The code has compiled successfully on earlier LabView versions. There are no errors or warings in my LabView FPGA code that that LabView detects. Is this a bug in LabView FPGA 2011 or Xilinx 12.4? 
    I've attached the log files from the compilation process and the error summary that LabView FPGA gives me.
    Thanks in advance.
    Regards,
    Anders Garmo
    System Architercure Developer
    Attachments:
    FPGA error1.txt ‏26 KB
    FPGA Xilinx Log.txt ‏1316 KB
    fpga error 1.png ‏16 KB

    Peter,
    You are running into bug 1747626. I will send you an email with a fix.
    Regards, Marc We have the same problem here. We have installed the bugfix but it still does not work.

  • Workflow Manager 1.0 (SharePoint 2013): The process was terminated due to an unhandled exception

    I am seeing large numbers of the following errors appearing in the event log of the SharePoint 2013 application server hosting Workflow Manager 1.0:
    Log Name: Application
    Source: Application Error
    Date: [Date/Time]
    Event ID: 1000
    Task Category: (100)
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: [Application Server]
    Description:
    Faulting application name: Microsoft.Workflow.ServiceHost.exe, version: 1.0.20922.0, time stamp: 0x505e1b24
    Faulting module name: KERNELBASE.dll, version: 6.2.9200.16864, time stamp: 0x531d34d8
    Exception code: 0xe0434352
    Fault offset: 0x0000000000047b8c Faulting process id: 0x691c Faulting application start time: 0x01cfc2776b3f0d74
    Faulting application path: C:\Program Files\Workflow Manager\1.0\Workflow\Artifacts\Microsoft.Workflow.ServiceHost.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll Report Id: b8157bf8-2e6a-11e4-9413-00155d38891d Faulting package full name:
    Faulting package-relative application ID: Event Xml:
    Log Name: Application
    Source: .NET Runtime
    Date: [date/time]
    Event ID: 1026
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: [same application server]
    Description:
    Application: Microsoft.Workflow.ServiceHost.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception
    Info: Microsoft.Workflow.Common.FatalException Stack: at Microsoft.Workflow.Common.Fx+<>c__DisplayClass2.<failfast>b__0() at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object,
    Boolean) at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean) at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
    at System.Threading.ThreadHelper.ThreadStart()
    Event Xml:
    Log Name: System
    Source: Service Control Manager
    Date: [date/time]
    Event ID: 7031
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: [Same application server]
    Description:
    The Workflow Manager Backend service terminated unexpectedly. It has done this 895 time(s). The following corrective action will be taken in 30000 milliseconds: Restart the service.
    Event Xml:
    The SharePoint 2013 farm is updated through the September 2014 PU (KB2995902).  Topology: 1 App, 2 WFEs.  Workflow Manager 1.0 installed to the App server.  Workflow Manager 1.0 cumulative updates one
    and two have not been installed.  The Service Bus Gateway and Service Bus Message Broker services are started.  The Workflow Manager Backend service can be started, but then quickly stops.
    Thoughts?  Resolution?  I would be grateful for any assistance.

    Hi Stephan,
    As I understand, you are encountering the issue that Workflow Manager Backend service terminating each time. May I know did you run the update cmdlets after you installed the updates for SharePoint server 2013? Please confirm it per the link below:
    http://technet.microsoft.com/en-us/library/dn133867.aspx
    If you haven’t run the updates cmdlets, I suspect this is an install issue. I’d suggest you re-install workflow manager to resolve the issue:
    1) Leave WFM/SB Farm
    2) Uninstall updates and application in the following order and one at a time:
    Service Bus CU1
    Workflow Manager CU1
    Service Bus 1.0
    Workflow Manager 1.0
    Workflow Manager Client 1.0
    Microsoft Windows Fabric
    3) Log into SQL server and delete Service Bus and Workflow Manager databases.
    SBManagementDB
    SBGatewayDB
    SBMessageContainer01
    WFManagementDB
    WFInstanceManagementDB
    WFResourceManagementDB
    4) Install in the following order one at a time through Web Platforms Installer:
    Workflow Manager 1.0
    Service Bus 1.0 CU1
    Workflow Manager 1.0 CU1
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Unhandled Exception

    Hi I am getting following error while using Import Wizard... error is coming at the last point ..means after selecting all options..when I click on finish to start the import process it throws an error..can any one suggest any solution ?
    1 processor x Family 15 Model 0 Stepping 0
    Windows 2000 Server (Terminal Server) v5.2 build 3790 (S)
    Physical Total/Avail: 3.669.496 Kb / 2.800.920 Kb
    Temp directory C:\DOCUME1\LOCALS1\Temp\3\ (3 Kb available)
    'Unknown' video card
       1024 x 768 with 65536 colors
    Unhandled Exception
      Code: c0000005
      Description: EXCEPTION_ACCESS_VIOLATION
    Call stack:
    Module  at   0x00400000: E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ImportWiz.exe  v 11.5.8.1030 [E]
        address: 0x0045a30e
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x00823102
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x77395f82
        address: 0x77395e22
        address: 0x77395ffa
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739bfce
        address: 0x7739bf74
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x0083abda
        address: 0x0083c6dd
        address: 0x0083b27d
        address: 0x0083b31c
        address: 0x0083b385
        address: 0x0083b3c3
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739c2d3
        address: 0x77388c01
        address: 0x77387910
        address: 0x7739fb5b
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x0082331b
        address: 0x00816e03
    Module  at   0x00400000: E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ImportWiz.exe  v 11.5.8.1030 [E]
        address: 0x00415143
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x008b08d5
        address: 0x0083b27d
        address: 0x0083b31c
        address: 0x0083b385
        address: 0x0083b3c3
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739bfce
        address: 0x7739bf74
    Module  at   0x77530000: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll  v 5.82.3790.3959 [E]
        address: 0x7755721d
        address: 0x7755756f
        address: 0x77557713
        address: 0x7754bd8b
        address: 0x7755756f
        address: 0x77557773
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739c2d3
        address: 0x7739c337
    Module  at   0x77530000: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll  v 5.82.3790.3959 [E]
        address: 0x77537910
        address: 0x7754390c
        address: 0x7754b074
        address: 0x7754e923
        address: 0x7754ee34
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x77395f82
        address: 0x77395e22
        address: 0x77395ffa
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739bfce
        address: 0x7739bf74
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x0083abda
        address: 0x0083b294
        address: 0x0083b31c
        address: 0x0083b385
        address: 0x0083b3c3
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739c2d3
        address: 0x7739c337
        address: 0x773ace63
        address: 0x773ace1c
        address: 0x773ace0f
        address: 0x773ae713
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739bfce
        address: 0x7739bf74
    Module  at   0x77530000: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll  v 5.82.3790.3959 [E]
        address: 0x7755721d
        address: 0x7755756f
        address: 0x77557713
        address: 0x7754af0a
        address: 0x7755756f
        address: 0x77557773
    Module  at   0x77380000: C:\WINDOWS\system32\USER32.dll  v 5.2.3790.4033 [E]
        address: 0x7739b6e3
        address: 0x7739b874
        address: 0x7739ba92
        address: 0x7739bad0
        address: 0x77395d78
    Module  at   0x00810000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [E]
        address: 0x00823449
    Application:
    6680 "
      current thread 0x3A0
    started: Friday, October 31, 2008 at 13:55 PM
    ends:    Friday, October 31, 2008  at 13:57 PM
      User mode: 750 ms   Kernel mode: 1421 ms
    Loaded modules:
        0x00320000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\thread-vc-mt.dll         v 0.0.0.0
        0x00340000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\file-vc-mt.dll         v 0.0.0.0
        0x00360000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\io-vc-mt.dll         v 0.0.0.0
        0x00370000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ldap_connector.dll         v 11.5.8.826         [English (United States)]
        0x003B0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\helper-vc-mt.dll         v 0.0.0.0
        0x003D0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\streaming-vc-mt.dll         v 0.0.0.0
        0x00400000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ImportWiz.exe         v 11.5.8.1030         [English (United States)]
        0x00590000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\btuc320vc71.dll         v 3.2.0.0         [English (United States)]
        0x006C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\libxml2.dll         v 2.6.19.0         [English (United States)]
        0x00780000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\wstkCommon.dll         v 11.5.8.1030         [English (United States)]
        0x00810000        C:\WINDOWS\system32\MFC71U.DLL         v 7.10.3077.0         [English (United States)]
        0x00A10000        C:\Program Files\Citrix\system32\CtxSbxHook.dll         v 4.0.2750.1         [English (United States)]
        0x00AB0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\pdflib.dll         v 6.0.3.0         [English (United States)]
        0x01070000        C:\Program Files\Citrix\system32\Twnhook.dll         v 4.0.2750.1         [English (United States)]
        0x011A0000        C:\Program Files\Citrix\system32\wdmaudhook.dll         v 4.0.2198.1         [English (United States)]
        0x012E0000        C:\Program Files\Citrix\system32\cxinjime.dll         v 4.0.2198.1         [English (United States)]
        0x01960000        C:\WINDOWS\system32\MSCTF.dll         v 5.2.3790.3959         [English (United States)]
        0x01CF0000        C:\Program Files\Citrix\system32\tzhook.dll         v 4.0.2750.1         [English (United States)]
        0x01F30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\log_xn_system.dll         v 11.5.8.826         [English (United States)]
        0x023C0000        C:\WINDOWS\system32\ntshrui.dll         v 6.0.3790.3959         [English (United States)]
        0x02730000        C:\WINDOWS\system32\xpsp2res.dll         v 5.2.3790.3959         [English (United States)]
        0x02DD0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\InfoStor.dll         v 11.5.8.1030         [English (United States)]
        0x03650000        c:\windows\assembly\gac\businessobjects.enterprise.sdk\11.5.3300.0__692fbea5521e1304\businessobjects.enterprise.sdk.dll         v 11.5.8.1030         [English (United States)]
        0x03690000        c:\windows\assembly\gac\businessobjects.enterprise.sdk\11.5.3300.0__692fbea5521e1304\businessobjects.enterprise.sdk.ziplib.netmodule         v 11.5.8.1030         [English (United States)]
        0x036B0000        c:\windows\assembly\gac\crystaldecisions.enterprise.infostore\11.5.3300.0__692fbea5521e1304\crystaldecisions.enterprise.infostore.dll         v 11.5.8.826         [English (United States)]
        0x036E0000        c:\windows\assembly\gac\crystaldecisions.enterprise.framework\11.5.3300.0__692fbea5521e1304\crystaldecisions.enterprise.framework.dll         v 11.5.8.826         [English (United States)]
        0x03910000        c:\windows\assembly\gac\businessobjects.enterprise.sdk\11.5.3300.0__692fbea5521e1304\businessobjects.enterprise.sdk.netmodule         v 11.5.8.1030         [English (United States)]
        0x03C00000        c:\windows\assembly\gac\log4net\1.2.9.0__b32731d11ce58905\log4net.dll         v 1.2.9.0         [Language Neutral]
        0x03C90000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.QaaWS\qaaws.dll         v 11.5.8.826         [English (United States)]
        0x03CD0000        C:\WINDOWS\system32\NSLDAPSSL32V50.dll         v 0.0.0.0
        0x03CE0000        C:\WINDOWS\system32\NSLDAP32V50.dll         v 0.0.0.0
        0x03D10000        C:\WINDOWS\system32\NSLDAPPR32V50.dll         v 0.0.0.0
        0x03D20000        C:\WINDOWS\system32\plds4.dll         v 4.1.2.0         [English (United States)]
        0x03D30000        C:\WINDOWS\system32\ssl3.dll         v 3.3.2.0         [English (United States)]
        0x03F50000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Folder\Folder.dll         v 11.5.8.1030         [English (United States)]
        0x04080000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.User\User.dll         v 11.5.8.1030         [English (United States)]
        0x04240000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.UserGroup\UserGroup.dll         v 11.5.8.1030         [English (United States)]
        0x043D0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.AFDashboardPage\AFDashboardPage.dll         v 11.5.8.1030         [English (United States)]
        0x04540000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Publication\Publication.dll         v 11.5.8.1030         [English (United States)]
        0x04740000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.PDF\PDF.dll         v 11.5.8.1030         [English (United States)]
        0x048A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Powerpoint\Powerpoint.dll         v 11.5.8.1030         [English (United States)]
        0x04A20000        C:\WINDOWS\system32\nss3.dll         v 3.3.2.0         [English (United States)]
        0x04AC0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\network-vc-mt.dll         v 0.0.0.0
        0x06BE0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Excel\Excel.dll         v 11.5.8.1030         [English (United States)]
        0x06D40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Flash\Flash.dll         v 11.5.8.1030         [English (United States)]
        0x06EC0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.FullClient\FullClient.dll         v 11.5.8.1030         [English (United States)]
        0x07380000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Agnostic\Agnostic.dll         v 11.5.8.1030         [English (United States)]
        0x074C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Xcelsius\Xcelsius.dll         v 11.5.8.1030         [English (United States)]
        0x07640000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\dest\CrystalEnterprise.Smtp\CrystalEnterprise_SMTP.dll         v 11.5.8.826         [English (United States)]
        0x07710000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Webi\Webi.dll         v 11.5.8.1030         [English (United States)]
        0x07B30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.RTF\RTF.dll         v 11.5.8.1030         [English (United States)]
        0x07C90000        E:\Program Files\Business Objects\common\3.5\bin\datadefmodel.dll         v 11.5.8.826         [English (United States)]
        0x07E40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.XCelsiusDMTemplate\XCelsiusDMTemplate.dll         v 11.5.8.1030         [English (United States)]
        0x080E0000        C:\WINDOWS\system32\stringres115_en.dll         v 11.5.8.1030         [English (United States)]
        0x08180000        C:\WINDOWS\system32\W03A2409.dll         v 5.2.3790.4043         [English (United States)]
        0x10000000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ent6bridge-2-d.dll         v 11.5.8.1030         [English (United States)]
        0x11000000        c:\windows\assembly\gac\businessobjects.enterprise.biar\11.5.3300.0__692fbea5521e1304\businessobjects.enterprise.biar.dll         v 11.5.8.1030         [Language Neutral]
        0x12000000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\xerces-c_2_1_0.dll         v 2.1.0.0         [English (United States)]
        0x25910000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.MetaData\MetaDataPlugins.dll         v 11.5.8.826         [English (United States)]
        0x29EA0000        C:\WINDOWS\system32\plc4.dll         v 4.1.2.0         [English (United States)]
        0x30000000        C:\WINDOWS\system32\nspr4.dll         v 4.1.2.0         [English (United States)]
        0x45230000        E:\Program Files\Business Objects\Common\3.5\bin\prompt.dll         v 11.5.8.1030         [English (United States)]
        0x47EB0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\importwiz_res_en.dll         v 11.5.8.826         [English (United States)]
        0x48070000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ImportSDK.dll         v 11.5.8.1030         [English (United States)]
        0x480E0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ImportSDK_res_en.dll         v 11.5.8.826         [English (United States)]
        0x49AA0000        C:\WINDOWS\system32\cxlib-3-1.dll         v 11.5.8.826         [English (United States)]
        0x49C00000        C:\WINDOWS\system32\cxlibw-3-1.dll         v 11.5.8.1029         [English (United States)]
        0x4A800000        C:\WINDOWS\system32\icuuc30.dll         v 3.0.0.0         [Language Neutral]
        0x4A900000        C:\WINDOWS\system32\icuin30.dll         v 3.0.0.0         [Language Neutral]
        0x4AD00000        C:\WINDOWS\system32\icudt30.dll         v 3.0.0.1         [Language Neutral]
        0x51A70000        C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\diasymreader.dll         v 7.10.3052.4         [English (United States)]
        0x53000000        C:\WINDOWS\system32\fssl-1-2-1-2.dll         v 1.2.1.2         [English (United States)]
        0x53120000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cs_tools.dll         v 11.5.8.826         [English (United States)]
        0x531B0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ct_xml.dll         v 11.5.8.826         [French (France)]
        0x53390000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cs_helpers.dll         v 11.5.8.826         [English (United States)]
        0x53400000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ct_error.dll         v 11.5.8.826         [French (France)]
        0x53430000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cube.dll         v 11.5.8.1030         [English (United States)]
        0x536D0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\unvtools.dll         v 11.5.8.826         [English (United States)]
        0x537C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\resource_exchange.dll         v 11.5.8.826         [English (United States)]
        0x53A20000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ct_serialize.dll         v 11.5.8.826         [French (France)]
        0x53A40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\drv_sec.dll         v 11.5.8.826         [English (United States)]
        0x53A90000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cdzcl.dll         v 11.5.8.826         [French (France)]
        0x53B90000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ctxmlutils.dll         v 11.5.8.826         [French (France)]
        0x53BD0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cplib.dll         v 11.5.8.826         [English (United States)]
        0x53D80000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\bo_storage.dll         v 11.5.8.1030         [English (United States)]
        0x53F60000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cnxsrv.dll         v 11.5.8.1030         [English (United States)]
        0x54110000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\TraceLog.dll         v 11.5.8.826         [English (United States)]
        0x542C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\sessmgr.dll         v 11.5.8.1030         [English (United States)]
        0x54430000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cpcoll.dll         v 11.5.8.1030         [French (France)]
        0x544F0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\uitools.dll         v 11.5.8.1030         [English (United States)]
        0x546C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\rptdisp.dll         v 11.5.8.1030         [English (United States)]
        0x547A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\drv_res.dll         v 11.5.8.826         [English (United States)]
        0x54810000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\wiReposit.dll         v 11.5.8.826         [English (United States)]
        0x54860000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\dlg1.dll         v 11.5.8.826         [English (United States)]
        0x548F0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\i18n.dll         v 11.5.8.826         [English (United States)]
        0x54960000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\drv_authen.dll         v 11.5.8.826         [English (United States)]
        0x549E0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cpxml.dll         v 11.5.8.826         [English (United States)]
        0x54AB0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\category.dll         v 11.5.8.826         [English (United States)]
        0x54AF0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\dlgdll.dll         v 11.5.8.826         [English (United States)]
        0x54CA0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\legacy_kagtux.dll         v 11.5.8.826         [English (United States)]
        0x54D40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\RepAttr.dll         v 11.5.8.826         [English (United States)]
        0x54E30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\boDeploy.dll         v 11.5.8.1030         [English (United States)]
        0x55030000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\BOCP_1252.dll         v 11.5.8.826         [English (United States)]
        0x55060000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\cpi18n.dll         v 11.5.8.1030         [English (United States)]
        0x55290000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\kquery.dll         v 11.5.8.1030         [English (United States)]
        0x55620000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\msgsrv.dll         v 11.5.8.826         [English (United States)]
        0x55660000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\boconfig.dll         v 11.5.8.826         [English (United States)]
        0x556E0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\vartools.dll         v 11.5.8.1030         [English (United States)]
        0x56970000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\FCRepoProxy.dll         v 11.5.8.1030         [English (United States)]
        0x57620000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\repo_proxy.dll         v 11.5.8.1030         [English (United States)]
        0x57880000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\wqyconv.dll         v 11.5.8.1030         [English (United States)]
        0x59620000        C:\WINDOWS\system32\libOCAHelperw-3-1.dll         v 11.5.8.1029         [English (United States)]
        0x597C0000        C:\WINDOWS\system32\libOCASecurityw-2-0.dll         v 11.5.8.826         [English (United States)]
        0x598A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\EnterpriseFramework.dll         v 11.5.8.826         [English (United States)]
        0x5A280000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\PluginManager.dll         v 11.5.8.826         [English (United States)]
        0x5A650000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.AppFoundation\AppFoundation.dll         v 11.5.8.826         [English (United States)]
        0x5A6A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Calendar\Calendar.dll         v 11.5.8.1030         [English (United States)]
        0x5A870000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Category\CorporateCategory.dll         v 11.5.8.826         [English (United States)]
        0x5A900000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.CMC\CMC.dll         v 11.5.8.826         [English (United States)]
        0x5A950000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Connection\Connection.dll         v 11.5.8.826         [English (United States)]
        0x5A9A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.Designer\Designer.dll         v 11.5.8.826         [English (United States)]
        0x5A9F0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Discussions\Discussions.dll         v 11.5.8.826         [English (United States)]
        0x5AAD0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Event\Event.dll         v 11.5.8.1030         [English (United States)]
        0x5ACB0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Favorites_Folder\Favorites_Folder.dll         v 11.5.8.1030         [English (United States)]
        0x5AED0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.LicenseKey\LicenseKey.dll         v 11.5.8.826         [English (United States)]
        0x5AF30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.ObjectPackage\ObjectPackage.dll         v 11.5.8.826         [English (United States)]
        0x5B220000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Report\Report.dll         v 11.5.8.1030         [English (United States)]
        0x5BB20000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Server\Server.dll         v 11.5.8.1030         [English (United States)]
        0x5BC60000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.ServerGroup\ServerGroup.dll         v 11.5.8.826         [English (United States)]
        0x5BD20000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Shortcut\Shortcut.dll         v 11.5.8.1030         [English (United States)]
        0x5BE30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Txt\Txt.dll         v 11.5.8.1030         [English (United States)]
        0x5C2F0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.WebIntelligence\WebIntelligence.dll         v 11.5.8.826         [English (United States)]
        0x5C340000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Word\Word.dll         v 11.5.8.1030         [English (United States)]
        0x5C5E0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Hyperlink\Hyperlink.dll         v 11.5.8.1030         [English (United States)]
        0x5C9B0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Overload\Overload.dll         v 11.5.8.1030         [English (United States)]
        0x5CAA0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Universe\Universe.dll         v 11.5.8.826         [English (United States)]
        0x5CC30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\PersonalCategory\PersonalCategory.dll         v 11.5.8.1030         [English (United States)]
        0x5CCA0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Inbox\Inbox.dll         v 11.5.8.1030         [English (United States)]
        0x5CE20000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.MyInfoView\MyInfoView.dll         v 11.5.8.1030         [English (United States)]
        0x5CFC0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Program\Program.dll         v 11.5.8.1030         [English (United States)]
        0x5D1E0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Profile\Profile.dll         v 11.5.8.826         [English (United States)]
        0x5D360000        C:\WINDOWS\system32\MFC71ENU.DLL         v 7.10.3077.0         [English (United States)]
        0x5D8A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\dest\CrystalEnterprise.Ftp\ftp.dll         v 11.5.8.826         [English (United States)]
        0x5D950000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\dest\CrystalEnterprise.DiskUnmanaged\DiskUnmanaged.dll         v 11.5.8.826         [English (United States)]
        0x5DA80000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\dest\Managed\Managed.dll         v 11.5.8.826         [English (United States)]
        0x5E880000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\auth\secEnterprise\secEnterprise.dll         v 11.5.8.826         [English (United States)]
        0x5E9B0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\auth\secLDAP\secldap.dll         v 11.5.8.1030         [English (United States)]
        0x5F120000        C:\WINDOWS\System32\ntlanman.dll         v 5.2.3790.3959         [English (United States)]
        0x5F270000        C:\WINDOWS\system32\hnetcfg.dll         v 5.2.3790.3959         [English (United States)]
        0x5F400000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.Analytics\AFDPlugin.dll         v 11.5.8.1030         [English (United States)]
        0x5F860000        C:\WINDOWS\System32\NETUI1.dll         v 5.2.3790.0         [English (United States)]
        0x5F8A0000        C:\WINDOWS\System32\NETUI0.dll         v 5.2.3790.0         [English (United States)]
        0x60420000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\BusinessObjects.InfoView\InfoView.dll         v 11.5.8.826         [English (United States)]
        0x606C0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.Program\Program_res_en.dll         v 11.5.8.826         [English (United States)]
        0x60780000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\security-vc-mt.dll         v 0.0.0.0
        0x60970000        C:\WINDOWS\system32\mslbui.dll         v 5.2.3790.3959         [English (United States)]
        0x61290000        E:\Program Files\Business Objects\common\3.5\bin\rptdefmodel.dll         v 11.5.8.826         [English (United States)]
        0x61C40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Encyclopedia\Encyclopedia.dll         v 11.5.8.826         [English (United States)]
        0x61D30000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Encyclopedia\Encyc.dll         v 11.5.8.826         [English (United States)]
        0x61E40000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.busobjReporter\busobjReporter.dll         v 11.5.8.826         [English (United States)]
        0x62200000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.ReportConvTool\ReportConvTool.dll         v 11.5.8.826         [English (United States)]
        0x622A0000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.FullClientAddin\FullClientAddin.dll         v 11.5.8.1030         [English (United States)]
        0x62660000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.FullClientTemplate\FullClientTemplate.dll         v 11.5.8.1030         [English (United States)]
        0x63000000        C:\WINDOWS\system32\etc-1-0-12-4.dll         v 1.0.12.21         [English (United States)]
        0x63520000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\tools.dll         v 11.5.8.1030         [English (United States)]
        0x64000000        C:\WINDOWS\system32\ebus-3-3-2-5.dll         v 3.3.2.24         [English (United States)]
        0x66AF0000        C:\Program Files\Citrix\System32\sehook20.dll         v 4.20.2750.1         [English (United States)]
        0x66F00000        C:\Program Files\Citrix\system32\mmhook.dll         v 4.0.2750.1         [English (United States)]
        0x67230000        C:\Program Files\Citrix\system32\mfaphook.dll         v 4.0.2198.1         [English (United States)]
        0x67EC0000        C:\Program Files\Citrix\system32\cdmprov.dll         v 4.0.2750.1         [English (United States)]
        0x68000000        C:\WINDOWS\system32\rsaenh.dll         v 5.2.3790.3959         [English (United States)]
        0x6BE00000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\it_ifc5_vc71.dll         v 0.0.0.1         [English (United States)]
        0x6C5B0000        C:\Program Files\Citrix\system32\scardhook.dll         v 4.0.2750.1         [English (United States)]
        0x6CA00000        E:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\it_art5_vc71.dll         v 0.0.0.1         [English (United States)]
        0x6D580000        C:\WINDOWS\system32\dbghelp.dll         v 5.2.3790.3959         [English (United States)]
        0x6E220000        C:\Program Files\Citrix\system32\RMProcessLink.dll         v 4.0.0.0         [English (United States)]
        0x71AE0000        C:\WINDOWS\System32\wshtcpip.dll         v 5.2.3790.3959         [English (United States)]
        0x71B20000        C:\WINDOWS\System32\mswsock.dll         v 5.2.3790.4318         [English (United States)]
        0x71B70000        C:\WINDOWS\system32\UxTheme.dll         v 6.0.3790.3959         [English (United States)]
        0x71BB0000        C:\WINDOWS\system32\WSOCK32.dll         v 5.2.3790.0         [English (United States)]
        0x71BD0000        C:\WINDOWS\system32\MPR.dll         v 5.2.3790.3959         [English (United States)]
        0x71BF0000        C:\WINDOWS\system32\WS2HELP.dll         v 5.2.3790.3959         [English (United States)]
        0x71C00000        C:\WINDOWS\system32\WS2_32.dll         v 5.2.3790.3959         [English (United States)]
        0x71C20000        C:\WINDOWS\system32\tsappcmp.dll         v 5.2.3790.3959         [English (United States)]
        0x71C40000        C:\WINDOWS\system32\NETAPI32.dll         v 5.2.3790.4392         [English (United States)]
        0x73070000        C:\WINDOWS\system32\WINSPOOL.DRV         v 5.2.3790.3959         [English (United States)]
        0x745E0000        C:\WINDOWS\system32\msi.dll         v 3.1.4000.3959         [Language Neutral]
        0x75360000        C:\WINDOWS\system32\CRYPTUI.dll         v 5.131.3790.3959         [English (United States)]
        0x75DA0000        C:\WINDOWS\system32\sxs.dll         v 5.2.3790.3959         [English (United States)]
        0x75E60000        C:\WINDOWS\system32\apphelp.dll         v 5.2.3790.3959         [English (United States)]
        0x75E90000        C:\WINDOWS\System32\drprov.dll         v 5.2.3790.3959         [English (United States)]
        0x75EA0000        C:\WINDOWS\System32\davclnt.dll         v 5.2.3790.3959         [English (United States)]
        0x75EB0000        C:\WINDOWS\ ystem32\browseui.dll

    Hi,
    Generally the unhandled exception comes when you don't have rights set on some folder will suggest to go ahead and try with the administrator login on machine also.
    Also it happens because of some user rights on specific inbox or public folders.
    Are you migrating the document from two different versions like from 6.5 to XIR2.
    You need to check on the security rights of the users on folders you are migrating.
    Regards,
    gaurav

  • Unhandled exception when exporting to EXCEL

    Hello,
    When I am exporting some reports, Desktop Intelligence crashes (error message at the end of this post).
    I work on Window XP SP2.
    My Desktop Intelligence release is 11.5.0.0.
    It happens when I try to save with EXCEL format (no problem with PDF or RTF).
    This does not happen with the same report in Business Object 6.5 (no problem to export to EXCEL on 6.5).
    I tried with Desktop Intelligence (11.5.0.0) on CITRIX Server (Windows 2003 system) and it crashes also.
    I have not seen any solution already posted on forums.
    Thanks for you help.
    Regards
    Benoit MARCESCHE
    1 processor P Family 6 Model 23 Stepping 6
    Windows 2000 Workstation  v5.1 build 2600 (S)
    Physical Total/Avail: 2.097.151 Kb / 2.097.151 Kb
    Temp directory C:\DOCUME1\bmar\LOCALS1\Temp\ (2 Kb available)
    'Unknown' video card
       1440 x 900 in true color
    Unhandled Exception
      Code: c0000005
      Description: EXCEPTION_ACCESS_VIOLATION
    Call stack:
    Module  at   0x7c340000: C:\WINDOWS\system32\MSVCR71.dll  v 7.10.3052.4 [A]
        address: 0x7c3417b5
    Module  at   0x00690000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\tools.dll  v 11.5.0.313 [A]
        address: 0x006d591a
    Module  at   0x55950000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\report.dll  v 1.0.0.1 [A]
        address: 0x55a8dab7
        address: 0x55a8fdca
        address: 0x55a93390
        address: 0x55a93598
        address: 0x55a93a59
        address: 0x55a93bc5
        address: 0x559e8157
        address: 0x55aba849
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x0042c765
        address: 0x00431400
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x00892d41
        address: 0x0082ce71
        address: 0x00833429
        address: 0x00833487
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x00427d61
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x008333af
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x0043dc64
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082d53e
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x004247d2
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x008043d0
    Module  at   0x544f0000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\uitools.dll  v 11.5.0.313 [A]
        address: 0x5451c76f
        address: 0x544f2d85
        address: 0x5451c6cd
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082b27d
        address: 0x0082b31c
    Module  at   0x544f0000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\uitools.dll  v 11.5.0.313 [A]
        address: 0x5451240a
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082b31c
        address: 0x0082b385
        address: 0x0082b3c3
    Module  at   0x77d10000: C:\WINDOWS\system32\USER32.dll  v 5.1.2600.2180 [F]
        address: 0x77d18709
        address: 0x77d187eb
        address: 0x77d189a5
        address: 0x77d189e8
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x00833830
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x00421b36
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082428a
    Module  at   0x7c800000: C:\WINDOWS\system32\kernel32.dll  v 5.1.2600.2180 [F]
        address: 0x7c816d4f
    Application:
    3580 "
      current thread 0x4F4
    started: lundi 1 du00E9cembre 2008 at 10:06
    ends:    lundi 1 du00E9cembre 2008  at 10:07
      User mode: 2015 ms   Kernel mode: 5390 ms
    Loaded modules:
        0x00320000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\thread-vc-mt.dll      v 0.0.0.0
        0x00340000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\file-vc-mt.dll      v 0.0.0.0
        0x00360000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\io-vc-mt.dll      v 0.0.0.0
        0x00370000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\time-vc-mt.dll      v 0.0.0.0
        0x00390000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\network-vc-mt.dll      v 0.0.0.0
        0x003B0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\helper-vc-mt.dll      v 0.0.0.0
        0x003D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\security-vc-mt.dll      v 0.0.0.0
        0x00400000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x00560000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\btuc320vc71.dll      v 3.2.0.0      [Anglais (u00C9tats-Unis)]
        0x00690000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\tools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x00800000     C:\WINDOWS\system32\MFC71U.DLL      v 7.10.3077.0      [Anglais (u00C9tats-Unis)]
        0x00910000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\libxml2.dll      v 2.6.19.0      [Anglais (u00C9tats-Unis)]
        0x009D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\streaming-vc-mt.dll      v 0.0.0.0
        0x00A00000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\pdflib.dll      v 6.0.1.1      [Anglais (u00C9tats-Unis)]
        0x010A0000     C:\WINDOWS\system32\APSHook.dll      v 2.5.0.29      [Anglais (u00C9tats-Unis)]
        0x01830000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\userappfr.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x01890000     C:\WINDOWS\System32\ntlanman.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x018A0000     C:\WINDOWS\System32\NETRAP.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x018B0000     C:\WINDOWS\system32\btmmhook.dll      v 5.1.0.3000      [Anglais (u00C9tats-Unis)]
        0x01900000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\dpvbadlgfr.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x01920000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\dpxmlfr.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x01980000     C:\Program Files\WIDCOMM\Bluetooth Software\btkeyind.dll      v 0.0.0.0
        0x019C0000     C:\Program Files\Fichiers communs\Microsoft Shared\VBA\VBA6\APC62.dll      v 6.1.89.11      [Langue neutre]
        0x01F70000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\PluginManager.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x030A0000     C:\WINDOWS\System32\NETUI0.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x030C0000     C:\WINDOWS\System32\NETUI1.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x03100000     C:\WINDOWS\System32\SAMLIB.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x10000000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\wstkCommon.dll      v 1.0.0.1      [Anglais (u00C9tats-Unis)]
        0x12000000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\xerces-c_2_1_0.dll      v 2.1.0.0      [Anglais (u00C9tats-Unis)]
        0x20000000     C:\WINDOWS\system32\xpsp2res.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x21E80000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\boresfr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x308C0000     C:\Program Files\Microsoft Office\Office\MSO9.DLL      v 9.0.0.3821      [Langue neutre]
        0x49C00000     C:\WINDOWS\system32\cxlibw-3-1.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x4A800000     C:\WINDOWS\system32\icuuc30.dll      v 3.0.0.0      [Langue neutre]
        0x4A900000     C:\WINDOWS\system32\icuin30.dll      v 3.0.0.0      [Langue neutre]
        0x4AD00000     C:\WINDOWS\system32\icudt30.dll      v 3.0.0.1      [Langue neutre]
        0x53000000     C:\WINDOWS\system32\fssl-1-2-1-2.dll      v 1.2.1.2      [Anglais (u00C9tats-Unis)]
        0x530F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_config.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53120000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_tools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x531D0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ics_tracelog.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53230000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_trace.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x532A0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_lib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x532F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_core.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53390000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_helpers.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53430000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cube.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x536D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\unvtools.dll      v 1.0.0.1      [Franu00E7ais (France)]
        0x53BD0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cplib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53F60000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cnxsrv.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54110000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\TraceLog.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x542C0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\sessmgr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54430000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpcoll.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x54480000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpzlib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x544F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\uitools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x546C0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\rptdisp.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54740000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\krptdlg.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x547E0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\BOFCEngine.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54860000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\dlg1.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x548F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\i18n.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x549E0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpxml.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54A10000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpi18nloc.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54AB0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\category.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54AF0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\dlgdll.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54D40000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\RepAttr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54D70000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\bofcui.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54E30000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\boDeploy.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55030000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\BOCP_1252.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55060000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpi18n.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55290000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\kquery.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55620000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\msgsrv.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55640000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\BOFCDialogs.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55660000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\boconfig.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x556E0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\vartools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55950000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\report.dll      v 1.0.0.1      [Anglais (u00C9tats-Unis)]
        0x563D0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ics_lib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x56970000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\FCRepoProxy.dll      v 1.0.0.1      [Franu00E7ais (France)]
        0x569D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\dxmapi.dll      v 60.0.0.0      [Anglais (u00C9tats-Unis)]
        0x56A60000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adavba.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x56CF0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\FCRepoDxImp.dll      v 0.0.0.0
        0x57080000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adpxml.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x57150000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adpvba.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x575A0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adaxml.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x57620000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\repo_proxy.dll      v 0.0.0.0
        0x57A60000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_coretools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x58B50000     C:\WINDOWS\system32\COMCTL32.dll      v 5.82.2900.2180      [Anglais (u00C9tats-Unis)]
        0x59620000     C:\WINDOWS\system32\libOCAHelperw-3-1.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x597C0000     C:\WINDOWS\system32\libOCASecurityw-2-0.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x598A0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\EnterpriseFramework.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x59C60000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\InfoStor.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5B090000     C:\WINDOWS\system32\uxtheme.dll      v 6.0.2900.2180      [Franu00E7ais (France)]
        0x5BDF0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.User\User.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5BFC0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.UserGroup\UserGroup.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5CB10000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Inbox\Inbox.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5D360000     C:\WINDOWS\system32\MFC71FRA.DLL      v 7.10.3077.0      [Franu00E7ais (France)]
        0x5D3F0000     C:\WINDOWS\system32\dbghelp.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x5E010000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\auth\secEnterprise\secEnterprise.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5F350000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\log_xn_system.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5FFD0000     C:\WINDOWS\system32\stringres115_fr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x60CA0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.busobjReporter\busobjReporter.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x62E40000     C:\WINDOWS\system32\hnetcfg.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x63000000     C:\WINDOWS\system32\etc-1-0-12-4.dll      v 1.0.12.21      [Anglais (u00C9tats-Unis)]
        0x64000000     C:\WINDOWS\system32\ebus-3-3-2-5.dll      v 3.3.2.24      [Anglais (u00C9tats-Unis)]
        0x65000000     C:\PROGRA1\FICHIE1\MICROS~1\VBA\VBA6\VBE6.DLL      v 6.0.87.14      [Langue neutre]
        0x65300000     C:\PROGRA1\FICHIE1\MICROS~1\VBA\VBA6\1036\VBE6INTL.DLL      v 6.0.86.67      [Franu00E7ais (France)]
        0x6A900000     C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\Cnp50MUI_D9F20.DLL      v 0.3.0.0      [Anglais (u00C9tats-Unis)]
        0x6FEE0000     C:\WINDOWS\system32\NETAPI32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x71990000     C:\WINDOWS\System32\mswsock.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x719D0000     C:\WINDOWS\System32\wshtcpip.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x719E0000     C:\WINDOWS\system32\WS2HELP.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x719F0000     C:\WINDOWS\system32\WS2_32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x71A10000     C:\WINDOWS\system32\WSOCK32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x71A60000     C:\WINDOWS\system32\MPR.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x71B00000     C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\Cnp50M_D9F20.DLL      v 0.3.0.0      [Anglais (u00C9tats-Unis)]
        0x72F50000     C:\WINDOWS\system32\WINSPOOL.DRV      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x73A80000     C:\WINDOWS\system32\mscms.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x745E0000     C:\WINDOWS\system32\msi.dll      v 3.1.4000.2435      [Langue neutre]
        0x74BF0000     C:\WINDOWS\system32\OLEACC.dll      v 4.2.5406.0      [Langue neutre]
        0x75EF0000     C:\WINDOWS\System32\drprov.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x75F00000     C:\WINDOWS\System32\davclnt.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x75F10000     C:\WINDOWS\system32\browseui.dll      v 6.0.2900.2853      [Franu00E7ais (France)]
        0x76010000     C:\WINDOWS\system32\MSVCP60.dll      v 6.2.3104.0      [Anglais (u00C9tats-Unis)]
        0x76320000     C:\WINDOWS\system32\IMM32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76340000     C:\WINDOWS\system32\comdlg32.dll      v 6.0.2900.2180      [Franu00E7ais (France)]
        0x76590000     C:\WINDOWS\System32\CSCDLL.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x765B0000     C:\WINDOWS\System32\cscui.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76610000     C:\WINDOWS\system32\CRYPTUI.dll      v 5.131.2600.2180      [Franu00E7ais (France)]
        0x767C0000     C:\WINDOWS\system32\hlink.dll      v 5.0.0.4513      [Franu00E7ais (France)]
        0x76930000     C:\WINDOWS\system32\ntshrui.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76960000     C:\WINDOWS\system32\USERENV.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76AC0000     C:\WINDOWS\system32\ATL.DLL      v 3.5.2284.0      [Anglais (u00C9tats-Unis)]
        0x76BE0000     C:\WINDOWS\system32\WINTRUST.dll      v 5.131.2600.2180      [Franu00E7ais (France)]
        0x76C40000     C:\WINDOWS\system32\IMAGEHLP.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76ED0000     C:\WINDOWS\system32\DNSAPI.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76F10000     C:\WINDOWS\system32\WLDAP32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76F60000     C:\WINDOWS\System32\winrnr.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76F70000     C:\WINDOWS\system32\rasadhlp.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76F80000     C:\WINDOWS\system32\CLBCATQ.DLL      v 2001.12.4414.258      [Anglais (u00C9tats-Unis)]
        0x77000000     C:\WINDOWS\system32\COMRes.dll      v 2001.12.4414.258      [Franu00E7ais (France)]
        0x770E0000     C:\WINDOWS\system32\OLEAUT32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77170000     C:\WINDOWS\system32\urlmon.dll      v 6.0.2900.2823      [Franu00E7ais (France)]
        0x77210000     C:\WINDOWS\system32\SXS.DLL      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77390000     C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll      v 6.0.2900.2180      [Anglais (u00C9tats-Unis)]
        0x774A0000     C:\WINDOWS\system32\ole32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77720000     C:\WINDOWS\system32\shdocvw.dll      v 6.0.2900.2853      [Franu00E7ais (France)]
        0x778E0000     C:\WINDOWS\system32\SETUPAPI.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x779E0000     C:\WINDOWS\system32\CRYPT32.dll      v 5.131.2600.2180      [Franu00E7ais (France)]
        0x77A80000     C:\WINDOWS\system32\MSASN1.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77AA0000     C:\WINDOWS\system32\WININET.dll      v 6.0.2900.2180      [Franu00E7ais (France)]
        0x77B50000     C:\WINDOWS\system32\appHelp.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77BD0000     C:\WINDOWS\system32\VERSION.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77BE0000     C:\WINDOWS\system32\msvcrt.dll      v 7.0.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77D10000     C:\WINDOWS\system32\USER32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77DA0000     C:\WINDOWS\system32\ADVAPI32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77E50000     C:\WINDOWS\system32\RPCRT4.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77EF0000     C:\WINDOWS\system32\GDI32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77F40000     C:\WINDOWS\system32\SHLWAPI.dll      v 6.0.2900.2833      [Franu00E7ais (France)]
        0x7C120000     C:\WINDOWS\system32\ATL71.DLL      v 7.10.3077.0      [Anglais (u00C9tats-Unis)]
        0x7C340000     C:\WINDOWS\system32\MSVCR71.dll      v 7.10.3052.4      [Anglais (u00C9tats-Unis)]
        0x7C3A0000     C:\WINDOWS\system32\MSVCP71.dll      v 7.10.3077.0      [Anglais (u00C9tats-Unis)]
        0x7C800000     C:\WINDOWS\system32\kernel32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x7C910000     C:\WINDOWS\system32\ntdll.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x7C9D0000     C:\WINDOWS\system32\SHELL32.dll      v 6.0.2900.2180      [Franu00E7ais (France)]

    Hi Laurent,
    Following information might help you to resolve the issue.
    1. Delete some temp files from the temp file folder.
    2. Ensure that you are using the supported Microsoft office version with BOXIR2 SP2.
      Following are the supported versions of BOXIR2 according to the PAR.
    u2022      Windows Office 2000
    u2022      Windows Office 2000 SP3
    u2022      Windows Office 2000 SR1
    u2022      Windows Office 2003
    u2022      Windows Office 2003 SP1
    u2022      Windows Office 2003 SP2
    u2022      Windows Office XP
    u2022      Windows Office XP SP1
    u2022      Windows Office XP SP2
    u2022      Windows Office XP SP3
    u2022      Windows Office 2007*
    Office 2007 support is for Business Objects Live Office and as an export destination for Crystal Reports.
    3. Ensure that the server and client should be on same patch levels.
    4. Might be there is some formatting changes which are not compatible with the excel DAO properties could you please test the following solution.
    1. Apply standard styles in the report and save it as excel.
    2. Reset the report from slice and dice panel and try to save it as excel.
    3. Rebuild the data cube by editing the data providers in the report.
    4. Test the issue by deleting the tabs one by one in the report and saving it as excel.
    Regards,
    Sarbhjeet Kaur

Maybe you are looking for

  • How to Connect My Printer to The Network

    My printer is LaserJet M1212nf.  According to the brief introduction I should connect the printer to the network first in order to enable its e-printing function.  I'm working at home.  I don't share information with other computers.  Does "network"

  • Windows 8 Elements 11 Problem with DNG and CR2 files

    Have a Windows 8 machine with Elements 11 which has Camera Raw 7.4 installed and showing correctly in the editor. The Browser shows thumbnails of the DNG and CR2 files, but when an attempt is made to edit them, the editor opens but does not open the

  • My company is investing into shares, how to handle this in sap?

    Hi Gurus, How share market investments can be handled in SAP Asset Accounting module? thanks, Ganesh.

  • IPhone vol control doesn't function when on cradle

    Is this a BUG? When on the cradle and playing music, the volume control ceases to work as soon as a stereo output plug (3.5mm) is attached to outboard sound.

  • Trouble with Nokia 6680 and iSync

    I have a Nokia 6680 and an iMac. Recently I wanted to clean up my contact list but I'm having problems in this. Contacts created in the phone get transfered to my computer with iSync easy, but I can't transfer all my contacts created in my iMac to th