Error: Data may have been lost

Hi All,
I have a typically issue with the crystal reports 8.5.
Below is details :
I have application which is built using ms access and crystal reports 8.5
When i run the application and download the reports in the form of excel,  i get a error saying that data may have been lost when i open the excel file. This happens only when i open the excel file in excel 2003 service pack 3, when contacted microsoft they said that this is a issue with the crystal report and not with the excel.
So does any one have a idea how this issue can me resolved.
Thanks in advance.

How many records (rows) and columns are you exporting to Excel?
Excel does have limits on both.....AND if you check the supported platforms document for CR8.5 you will notice that Excel 2003 is not supported.  May be time to move up to a newer version of CR.

Similar Messages

  • "File error: data may have been lost" in Exporting to Excel with CR 8.5

    I just started getting this error and I have applied the CR SP3. What else can I do, I need to resolve this ASAP. Thanks!

    Try updating u2fxls.dll

  • "There has been a network or file permission error. The network connection may have been lost

    Hi,
    While trying to save an Excel or (less frequently) Word document, employees at my company have been seeing the error, "There has been a network or
    file permission error. The network connection may have been lost."  This is more common when they are connected through the VPN, but it also occurs locally.
    The employees all have Win 7 Pro laptops and the file server is Win Server 2008 R2.  I have found suggestions that a Windows update is the cause, but the articles on that all limit it to Server 2003.  Others have suggested setting the program to
    save a local copy of remote files; however, while the setting exists in Word, it does not exist in Excel.
    If anybody has any advice, it would be greatly appreciated.
    Thank you

    This is a known issue, might try the workaround is a better chooses .
    http://support.microsoft.com/kb/291156
    KR

  • HT5824 Is there a way to restore contacts that may have been lost?

    I lost my contacts on my iphone. I backed up my mother's contacts to icloud and my contacts synced into her phone. I deleted my contacts from her phone. Now her contacts are on my phone and my contacts are GONE!! I am so upset!!! Many VIP contacts lost!! Is there a way to go back in icloud to restore information? I am so frustrated right now!!

    Welcome to the Apple Community.
    To restore from a back up made through iTunes, follow these instructions.
    To restore from a back up made through iCloud, try the following:
    The difficulty in restoring iCloud data from a back up is that the back up is older than the current version on iCloud and anything that is restored gets removed again when an iCloud sync occurs.
    Ensure the device is connected to your local network.
    Start the restore from iCloud back up.
    Allow the devices settings to restore (watch for the confirmation of completion).
    As the apps begin to restore pull the connection to your router WAN port (the one that goes to the telephone point).
    Wait for the time out confirmation.
    Navigate to settings > iCloud and turn off contact syncing (keep contacts when prompted).
    Reconnect the router to the internet and let the restore process complete.
    Delete any iCloud contacts from iCloud.com on a computer.
    Navigate to settings > iCloud and turn on contact syncing (merge contacts when prompted).
    May I suggest that you carry out a back up to iTunes before you try anything, that way should things become even worse, you can at least restore back to where you are now.

  • An error occurred during local report processing.The definition of the report '' is invalid.The definition of this report is not valid or supported by this version of Reporting Services. he report definition may have been created with a later version of R

    Hi,
    I am trying to create rdlc file programmatically. Using Memory Table as dataset. Here is my code
    ' For each field in the resultset, add the name to an array listDim m_fields AsArrayList
      m_fields = NewArrayList()
      Dim i AsIntegerFor i = 0 To tbdataset.Tables(0).Columns.Count - 1
          m_fields.Add(tbdataset.Tables(0).Columns(i).ColumnName.ToString)
      Next i
      'Create Report 'http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition'http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition' Open a new RDL file stream for writingDim stream AsFileStream
      stream = File.OpenWrite("D:\MyTestReport2.rdlc")
      Dim writer AsNewXmlTextWriter(stream, Encoding.UTF8)
      ' Causes child elements to be indented
      writer.Formatting = Formatting.Indented
      ' Report element
      writer.WriteProcessingInstruction("xml", "version=""1.0"" encoding=""utf-8""")
      writer.WriteStartElement("Report")
      writer.WriteAttributeString("xmlns", Nothing, "http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition")
      writer.WriteAttributeString("xmlns:rd", "http://schemas.microsoft.com/SQLServer/reporting/reportdesigner")
      writer.WriteStartElement("ReportSections")
      writer.WriteStartElement("ReportSection")
      writer.WriteElementString("Width", "11in")
      writer.WriteStartElement("Body")
      writer.WriteElementString("Height", "5in")
      writer.WriteStartElement("ReportItems")
      writer.WriteStartElement("Tablix")
      writer.WriteAttributeString("Name", Nothing, "Tablix1")
      writer.WriteElementString("Top", ".5in")
      writer.WriteElementString("Left", ".5in")
      writer.WriteElementString("Height", ".5in")
      writer.WriteElementString("Width", (m_fields.Count * 1.5).ToString() + "in")
      writer.WriteStartElement("TablixBody")
      ' Tablix Columns
      writer.WriteStartElement("TablixColumns")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixColumn")
          writer.WriteElementString("Width", "1.5in")
          writer.WriteEndElement() ' TableColumnNext fieldName
      writer.WriteEndElement() ' TablixColumns' Header Row
      writer.WriteStartElement("TablixRows")
      writer.WriteStartElement("TablixRow")
      writer.WriteElementString("Height", ".25in")
      writer.WriteStartElement("TablixCells")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixCell")
          writer.WriteStartElement("CellContents")
          writer.WriteStartElement("Textbox")
          writer.WriteAttributeString("Name", Nothing, "Header" + fieldName)
          ' writer.WriteAttributeString("CanGrow",  True)' writer.WriteAttributeString("Keeptogether", True)
          writer.WriteStartElement("Paragraphs")
          writer.WriteStartElement("Paragraph")
          writer.WriteStartElement("TextRuns")
          writer.WriteStartElement("TextRun")
          writer.WriteElementString("Value", fieldName)
          writer.WriteStartElement("Style")
          writer.WriteElementString("TextDecoration", "Underline")
          writer.WriteElementString("PaddingTop", "0in")
          writer.WriteElementString("PaddingLeft", "0in")
          writer.WriteElementString("LineHeight", ".5in")
          ''writer.WriteElementString("Width", "1.5in")''writer.WriteElementString("Value", fieldName)
          writer.WriteEndElement() ' Style
          writer.WriteEndElement() ' TextRun
          writer.WriteEndElement() ' TextRuns
          writer.WriteEndElement() ' Paragraph
          writer.WriteEndElement() ' Paragraphs
          writer.WriteEndElement() ' TexBox
          writer.WriteEndElement() ' CellContents
          writer.WriteEndElement() ' TablixCellNext
      writer.WriteEndElement() ' TablixCells
      writer.WriteEndElement() ' TablixRow'writer.WriteEndElement() ' TablixRows          Do not close Rows tag here colse it after details'End of Headers'Details Rows'writer.WriteStartElement("TablixRows")         Since Rows tag in header is not closed not need to open fresh tag
      writer.WriteStartElement("TablixRow")
      writer.WriteElementString("Height", ".25in")
      writer.WriteStartElement("TablixCells")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixCell")
          writer.WriteStartElement("CellContents")
          writer.WriteStartElement("Textbox")
          writer.WriteAttributeString("Name", Nothing, fieldName)
          '  writer.WriteAttributeString("CanGrow", True)'  writer.WriteAttributeString("Keeptogether", True)
          writer.WriteStartElement("Paragraphs")
          writer.WriteStartElement("Paragraph")
          writer.WriteStartElement("TextRuns")
          writer.WriteStartElement("TextRun")
          'writer.WriteElementString("Value", fieldName)
          writer.WriteElementString("Value", "=Fields!" + fieldName + ".Value")
          writer.WriteStartElement("Style")
          writer.WriteElementString("TextDecoration", "Underline")
          writer.WriteElementString("PaddingTop", "0in")
          writer.WriteElementString("PaddingLeft", "0in")
          writer.WriteElementString("LineHeight", ".5in")
          ''writer.WriteElementString("Width", "1.5in")''writer.WriteElementString("Value", fieldName)
          writer.WriteEndElement() ' Style
          writer.WriteEndElement() ' TextRun
          writer.WriteEndElement() ' TextRuns
          writer.WriteEndElement() ' Paragraph
          writer.WriteEndElement() ' Paragraphs
          writer.WriteEndElement() ' TexBox
          writer.WriteEndElement() ' CellContents
          writer.WriteEndElement() ' TablixCellNext
      writer.WriteEndElement() ' TablixCells
      writer.WriteEndElement() ' TablixRow
      writer.WriteEndElement() ' TablixRows'End of Details Rows
      writer.WriteEndElement() ' TablixBody
      writer.WriteStartElement("TablixRowHierarchy")
      writer.WriteStartElement("TablixMembers")
      writer.WriteStartElement("TablixMember")
      ' Group
      writer.WriteElementString("KeepWithGroup", "After")
      writer.WriteEndElement() ' TablixMember' Detail Group
      writer.WriteStartElement("TablixMember")
      writer.WriteStartElement("Group")
      writer.WriteAttributeString("Name", Nothing, "Details")
      writer.WriteEndElement() ' Group
      writer.WriteEndElement() ' TablixMember
      writer.WriteEndElement() ' TablixMembers
      writer.WriteEndElement() ' TablixRowHierarchy
      writer.WriteStartElement("TablixColumnHierarchy")
      writer.WriteStartElement("TablixMembers")
      'writer.WriteStartElement("TablixMember")ForEach fieldName In m_fields
          writer.WriteStartElement("TablixMember")
          writer.WriteEndElement() ' TablixMemberNext' writer.WriteEndElement() ' TablixMember
      writer.WriteEndElement() ' TablixMembers
      writer.WriteEndElement() ' TablixColumnHierarchy
      writer.WriteElementString("DataSetName", "tbdataset")
      writer.WriteEndElement() ' Tablix
      writer.WriteEndElement() ' ReportItems
      writer.WriteEndElement() ' Body
      writer.WriteStartElement("Page")
      ' Page Header Element
      writer.WriteStartElement("PageHeader")
      writer.WriteElementString("Height", "1.40cm")
      writer.WriteStartElement("ReportItems")
      writer.WriteStartElement("Textbox")
      writer.WriteAttributeString("Name", Nothing, "Textbox1")
      writer.WriteStartElement("Paragraphs")
      writer.WriteStartElement("Paragraph")
      writer.WriteStartElement("TextRuns")
      writer.WriteStartElement("TextRun")
      writer.WriteElementString("Value", Nothing, "ABC CHS.")
      writer.WriteEndElement() ' TextRun
      writer.WriteEndElement() ' TextRuns
      writer.WriteEndElement() ' Paragraph
      writer.WriteEndElement() ' Paragraphs
      writer.WriteEndElement() ' TextBox
      writer.WriteEndElement() ' ReportItems
      writer.WriteEndElement() ' PageHeader
      writer.WriteEndElement() ' Page
      writer.WriteEndElement() ' ReportSection
      writer.WriteEndElement() ' ReportSections' DataSources
      writer.WriteStartElement("DataSources")
      writer.WriteStartElement("DataSource")
      writer.WriteAttributeString("Name", Nothing, "tbdata")
      writer.WriteStartElement("DataSourceReference")
      writer.WriteEndElement() ' DataSourceReference
      writer.WriteEndElement() ' DataSource
      writer.WriteEndElement() ' DataSources'DataSet
      writer.WriteStartElement("DataSets")
      writer.WriteStartElement("DataSet")
      writer.WriteAttributeString("Name", Nothing, "tbdataset")
      writer.WriteStartElement("Query")
      writer.WriteElementString("DataSourceName", Nothing, "tbdata")
      'writer.WriteElementString("CommandText", Nothing, "/* Local Query */")
      writer.WriteElementString("CommandText", Nothing, "TableDirect")
      writer.WriteEndElement() ' Query'Fields
      writer.WriteStartElement("Fields")
      ForEach fieldName In m_fields
          writer.WriteStartElement("Field")
          writer.WriteAttributeString("Name", Nothing, fieldName)
          writer.WriteElementString("DataField", fieldName)
          writer.WriteElementString("rd:TypeName", fieldName.GetType.ToString)
          writer.WriteEndElement() ' FieldNext
      writer.WriteEndElement() ' Fields' rd datasetinfo
      writer.WriteEndElement() ' DataSet
      writer.WriteEndElement() ' DataSets
      writer.WriteEndElement() ' Report' Flush the writer and close the stream
      writer.Flush()
      stream.Close()
      'Convert to StreamDim myByteArray AsByte() = System.Text.Encoding.UTF8.GetBytes("D:\MyTestReport2.rdlc")
      Dim ms AsNewMemoryStream(myByteArray)
      'Supply Stream to ReportViewer
      ReportViewer1.LocalReport.LoadReportDefinition(ms)
      ReportViewer1.LocalReport.Refresh()When I open rdlc in designer I get following error"Data at the root level is invalid."When I run the aspx I get following error
    An error occurred during local report processing.
    The definition of the report '' is invalid.
    The definition of this report is not valid or supported by this version of Reporting Services.
    The report definition may have been created with a later version of Reporting Services, or contain content that is not well-formed or not valid based on Reporting Services schemas.
    Details: Data at the root level is invalid. Line 1, position 1.
    Can anybody guide me?

    Hi Wendy Fu,
    Thanks for your feed back. I could see Microsoft.ReportViewer.ProcessingObjectModel.dll to add as reference to my project. Actually I can open generated rdlc in designer, at run time I get error. I could not make out where is the exact mistake out of three
    options flashed.
    The definition of this report is not valid or supported by this version of Reporting Services.
    The report definition may have been created with a later version of Reporting Services
    or contain content that is not well-formed or not valid based on Reporting Services schemas
    Details: Data at the root level is invalid
    My web config has following references
    <add assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
    <add assembly="Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
    May be I have to change these versions to 9 or 10.
    First I will try adding Microsoft.ReportViewer.ProcessingObjectModel.dll .
    Once thanks for your reply.
    Races

  • HT1338 I am having trouble installing updates on my mac this is the error code the pops upThe update could not be verified. It may have been corrupted or tampered with during downloading. The update will be downloaded and checked again the next time that

    can some one help me? I have been trying to update my MAC and it will not download because this message come up
    (The update could not be verified. It may have been corrupted or tampered with during downloading. The update will be downloaded and checked again the next time that Software Update runs.)

    For anyone that comes across this. I managed to fix the problem. It had something to do with the date on my computer. Mavericks installer apparently does a date check of some sort and that is where the error is coming from. Open terminal and check the system date. It may be wrong. Another poster in the forums told me how to to check the date and change it. Click here for the link to the explanation. Be careful because the date is in a weird format.

  • Code: 0xC0208452 Source: Data Flow Task ADO NET Destination [86] Description: ADO NET Destination has failed to acquire the connection {}. The connection may have been corrupted.

    Hi There!
    I have created one package (1) to import data from Flatfile(csv), (2)Clean It  then (3)send clean rows to SQL Database.
    This package was working fine before. Since I have decided to deploy this package to automate this process, I have no clue what went wrong but this doesn't run anymore. Flatfile and Database are on same windows box. We are running SQL 2008.I
    have attached some screenshot to make this conversation more concise.
    Your time and efforts will be appreciated!
    Thanks,
    DAP

    Hi Niraj!
    I recreated connection and I was able to remove that RED DOT next to those connections.
    Still package doesnt run well :(
    I have only one server. I use same server through out the process. I ran that process as job through SSMS and attached is output file(if this explains more)...
    Microsoft (R) SQL Server Execute Package Utility
    Version 10.0.4000.0 for 64-bit
    Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
    Started:  11:34:38 AM
    Error: 2014-07-18 11:34:39.33
       Code: 0xC0208452
       Source: Data Flow Task ADO NET Destination [86]
       Description: ADO NET Destination has failed to acquire the connection {2430******}. The connection may have been corrupted.
    End Error
    Error: 2014-07-18 11:34:39.33
       Code: 0xC0047017
       Source: Data Flow Task SSIS.Pipeline
       Description: component "ADO NET Destination" (86) failed validation and returned error code 0xC0208452.
    End Error
    Error: 2014-07-18 11:34:39.33
       Code: 0xC004700C
       Source: Data Flow Task SSIS.Pipeline
       Description: One or more component failed validation.
    End Error
    Error: 2014-07-18 11:34:39.33
       Code: 0xC0024107
       Source: Data Flow Task 
       Description: There were errors during task validation.
    End Error
    DTExec: The package execution returned DTSER_SUCCESS (0).
    Started:  11:34:38 AM
    Finished: 11:34:39 AM
    Elapsed:  0.531 seconds
    Thanks for your time and efforts!
    DAP

  • Network Place to SharePoint 2010 unable to access sub sites with error: "The folder may have been moved or deleted".

    I am working on SharePoint 2010 Enterprise and had recently upgraded our site from Sharepoint 3.0 Services to SharePoint 2010 Enterprise.  Everything seems to be working fine for the site, but there is one issue.  The problem I am running into
    is when I create a Network Place, I am able to view the documents and lists of the main page, but if I click on a folder for a sub site, I get the following error:
    "Documents in this folder are not available.  The folder may have been moved or deleted, or network problems may be preventing a connection to the server.  There is a problem with the web server.  Please try again later or contact the
    server administrator."
    If there were a network issue, I would not be able to navigate around on the main page to lists and document libraries.  This seems to affect all of the sub sites on my site.  Explorer view works if that information is required and I do not get
    error messages using Explorer view.
    Thanks in advanced for any help on this.
    -Thao

    Hi pei jingw,
    You should be able to log in with your Adobe ID/password in lieu of a serial number. Are you able to do that?
    Best,
    Sara

  • Itunes won't open and i am getting this error message: the application itunes quit unexpectedly. the problem may have been caused by the libgnsdk_dsp.1.9.5.dylib plug in

    Have not changed any settings on my mac. Quit the application end of the day. The next day I went to start it and it won't open. Everytime I try to launch it, it won't open and I get this error message: The application itunes quit unexpectedly. The problem may have been caused by the libgnsdk_dsp.1.9.5.dylib plug in

    Have not changed any settings on my mac. Quit the application end of the day. The next day I went to start it and it won't open. Everytime I try to launch it, it won't open and I get this error message: The application itunes quit unexpectedly. The problem may have been caused by the libgnsdk_dsp.1.9.5.dylib plug in

  • My old computer (a Sony) with my iTunes crashed. I have a new MAC and want to make sure I can keep all of my music (mostly from old CD's that have been lost). I bought iTunes match hoping that would work but it isn't using the data on my phone. HELP!

    My old computer (a Sony) with my iTunes crashed. I have a new MAC and want to make sure I can keep all of my music (mostly from old CD's that have been lost). I bought iTunes match hoping that would work but it isn't using the data on my phone. HELP!

    Since you have purchased a new Mac (which, BTW, is not typed in all capitals) why not buy a Time Capsule <http://www.apple.com/airport-time-capsule/> which is designed specifically to work with OS X and Time Machine?
    You don't say what part of your Sony "crashed." If it was not the HDD it is possible to take the computer apart, put the HDD in an external case, then recover the data off of it (including the music) simply drag-n-drop. If it was the HDD that "crashed" that makes it more difficult.
    If you are able to recover the music from the Sony you can then add it to the iTunes library on the Mac and iTunes Match will then scan, match and upload the tracks to be mirrored in the cloud.

  • Error System "Item does not exist. It may have been deleted by another user"

    Error System "Item does not exist. It may have been deleted by another user" in sharepoint 2010
    This is problem show when User new item in List . User open new item page about 3 pages and User save each one page when page save complete , User will save another page.
    Sometime User can not save item , it show that error
    This List not have workflow and code
    Please let me know what is the issue ?

    Hi,
    Greetings. THis is a known issue and see the links for resolution
    http://support.microsoft.com/kb/972225
    http://social.technet.microsoft.com/Forums/office/en-US/638e4aa0-527c-4b20-a899-a0cf181983ec/no-item-exists-at-it-may-have-been-deleted-or-renamed-by-another-user?forum=sharepointadminlegacy
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Latest update returns error " None of the selected updates could be installed. The update could not be expanded, and may have been corrupted during downloading. The update will be downloaded and checked again the next time that Software Update runs."

    Latest update returns error " None of the selected updates could be installed. The update could not be expanded, and may have been corrupted during downloading. The update will be downloaded and checked again the next time that Software Update runs."

    Which latest update? Details get answers. Rather than using SU, DL and install from http://support.apple.com/downloads/.

  • How can I see website data from itouch 4th generation?  My 8 yr old may have been on inappropriate sites and I need to see the data from website data stored on the itouch.

    How can I see website data from itouch 4th generation?  My 8 yr old may have been on inappropriate sites and I need to see the data from website data stored on the itouch.

    There is no way to see where he has been.
    Go into Settings > General > Restrictions > Safari and turn it off. Then add the MacGruff browser from the app store. After that go back to Restrictions and turn off the ability to add apps.

  • Upgraded to Elements 11 from 9.  Form windows 7 to MacOS.  Events and dates seem to have been lost

    After importing catalog, events and dates seem to have been lost.  People tags imported OK.  Thoughts?

    Same issue.  I have multiple ATV2 and ATV3 - none could access home sharing after updating to 11.1.
    I've learned my lesson from previous iTunes updates, so I always have a backup of my library.  So I uninstalled 11.1 and deleted every iTunes folder I could find on my drive (important because I didn't do this the first time, and home sharing did not work).  Then I restored my library from backup (iTunes folder), and installed iTunes 11.0.5.  Home sharing works, with:
    ATV3 with updates
    ATV2 with updates
    ATV3 without updates
    ATV2 without updates (not tested yet)
    Yea, so something is wrong with iTunes 11.1 with home sharing.  Hopefully Apple will address.  If not, hopefully they will support 11.1 for a very long time.

  • HT1338 when i would to update mac os10.7 to mac os combined10.7.4 the appear error the update couldn't be verified.it may have been corrupted during downloading....please guide me.tnx

    when i would to update mac os10.7 to mac os combined10.7.4 the appear error the update couldn't be verified.it may have been corrupted during downloading....please guide me.
    my type of laptop is MAC724
    tnx

    The first thing to attempt is restarting in Safe Mode, this will clear some caches. It's possible one or more has become corrupt. Once it has started navigate to 10.6.8 Update Combo and download and install per the directions. After it has installed if you still have difficulty re-starting, go to System Preferences - Startup Disk and make sure the internal HD is highlighted and click restart again and restart again in Safe Mode. Finally restart normally.
    BTW I have asked the moderator to remove the serial number of your machine for your own security. Please DO NOT post private information such as email addresses, serial numbers etc.. to a public forum.

Maybe you are looking for

  • ABAP OO example

    Any ABAP OO documents available having example code ?

  • Insignia 36 in LCD TV

    We purchased 2 insignia TV's in Jan 2007, of which we had return 1 of them on three different occasions for (No picture/frozen picture or no power) all with in the first year.  Each of them were exchanged rather than refunded and rebilled so that an

  • External Floppy Disk Drivers

    Hi all, Can anyone tell me if I buy and external floppy disk drive - compatible with Mac... will it transfer photos to my Mac if the floppy were created on a Windows computer? -or- If I put the floppy disk photos on a CD-R using a Windows computer...

  • Internal Order report on User Responsible field

    Hi Gurus, Is it possible to report internal orders on "User Resposible" field (this field appears in internal order master data) with standard reports? I couldn't find a way to add this field as a select criteria. Thanks very much in advance. Catheri

  • How to Import UDF's by DTW

    Hello All, What's the procedure to Import UDF's by DTW. I want to add UDF's Not UDF's Data. Please Help Regards Hitul