Crystal Reports 9.2.0.448 Formatting and exporting issues on CSV file

Hello,
when starting export to csv, excel or text - out of the crystal reports preview - content gets lost, i.e. crystal cuts parts of the csv text.
If I try exporting to word or pdf the whole content is being exported.
Can anybody tell me how to fix that problem?
Is this a known issue? Does there probably already exist a hotfix? I couldn't find any.
Would be great, if someone helped me!
Monika

Hi Monika,
No more fixes done to CR 9 since it's so old. Go to this link and download any patches you can find for CR 9:
http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm
If that doesn't work try increasing the field width or using the Can Grow option. If that doesn't work then try downloading a trial version of CR XI R2 or Cr 2008 and test again. I suggest you try this on a PC other than your main PC just in case. We support side by side installs but you never know what it may do depending on what else you have installed.
Thank you
Don

Similar Messages

  • How do I expand a ActiveDirectorySubnetCollection so I can view all elements and export to a CSV file?

    Hello,
    In the following, I list SiteName, Location, Subnets, and Severs, however I don't see all the servers or the subnets, presumably because Subnets are an ActiveDirectorySubnetColletion and Servers are a ReadOnlyDirectoryServerCollection.  So I want to
    expand this property so I can see all the elements of the collection, or array.  I've tried the Select-Object -ExpandProperty, but I get an error due to -ExpandProperty looking for a string.
    Any suggestions on how to expand both the Subnet and Server collections so I can see all elements and I can export to a CSV file?
    [cmdletbinding()]
    param()
    $MyArray = @()
    $Sites =[System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest().Sites
    foreach ($Site in $Sites) {
    $obj = New-Object -Type PSObject -Property (
    "SiteName" = $Site.Name;
    "SiteLocation" = $Site.Location;
    "SubNets" = $Site.Subnets;
    "Servers" = $Site.Servers
    $Obj | Sort $Site.Name | FL
    $MyArray += $obj
    $MyArray | export-csv -path $env:HOMEPATH\SitesSubs.csv -NoTypeInformation
    Thanks for your help! SdeDot

    I've got a script that might help you out:
    http://gallery.technet.microsoft.com/scriptcenter/Convert-OutoutForCSV-6e552fc6
    Blog reference:
    http://learn-powershell.net/2014/01/24/avoiding-system-object-or-similar-output-when-using-export-csv/
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

  • CRYSTAL Reports 2010 for VS 2010 Installation and Deployment issues

    On Installing Crystal Reports for Visual Studio 2010 the Crystal Report Viewer in the Toolbox reports itself as Version 13.0.2000.0. When dragging said viewer onto an ASPX Page it: -
    1) Comes up with the wrong version: - Assembly="CrystalDecisions.Web, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304", NOT 13.0.2000.0!
    2) The ADE visualisation of the ASPX Page comes up with the following error: - "Error Creating Control - ContentPlaceHolder1. SessionState can only be used when enableSessionState is set to true. ...............
    In my Web.Config file enableSessionState is set to true AND System.Web,SessionStateModule is referenced in <httpModules> the message is therefore less than helpful.
    3) Surprisingly when I correct the Version to 13.0.2000.0, the same error happens. Even more surprisingly the page builds and in the development environment the CrystalReportViewer works@#@!! Unfortunately when deployed to a production Web Serrver W2K8 x64 and IIS7.x the page loads but the viewer does not, no errors are caught, the event viewer log is happy. (The click-once Runtimes x32 and x64 have been installed on the server).
    The same code works fine in VS2008 targetting CR 2008.
    How do I:
    1) Get CR2010 for VS2101 Installed Correctly?
    2) Deploy The Viewer to a production server?

    This is a known issue (unfortunately, no KB created yet as I just duplicated and reported the issue to QA (tracking number; ADAPT01506220)  two days ago).
    The issue appears only on computers with side by side install of .NET 2008 and .NET 2010.
    Follow these steps to resolve the issue:
    1) Remove the following from the web.config:
    <add assembly="CrystalDecisions.Shared, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.ReportSource, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    <add assembly="CrystalDecisions.CrystalReports.Engine, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
    2) Open the form that has the viewer on it, go to code behind and replace this:
    <%@ Register assembly="CrystalDecisions.Web, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web"; tagprefix="CR" %>
    with:
    <%@ Register assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web"; tagprefix="CR" %>
    3) Go to the Properties of the project, select references and remove crystaldecisions.web of version 10.5.3700
    4) In the Properties, click the Add button and then the .NET tab and select crystaldecisions.web version 13.0.2000.0
    5) Recompile.
    Distribute the CRVS2010 runtime.
    MSM:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_mergemodules_13_0.zip
    32 bit MSI:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_32bit_13_0.zip
    64 bit MSI:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_64bit_13_0.zip
    BTW. the same issue exists with WIN apps. The fix here is much easier; Remove all CR 10.5.3700 references from the project and add references to 13.0.2000 assemblies. (tracking number; ADAPT01506310).
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Powershell script to search a network drive for .mdb files and export them to CSV file

    Hello all,
    I'm trying to search one of our network drives for old .mdb files, I want to write the name, location and date last modified to a csv file.
    Get-WmiObject -Class CIM_DataFile -Filter "Drive='S:' And Extension='mdb'
     AND ObjFile.drive
     AND objFile.FileName
     AND objFile.FileSize
     AND objFile.LastWriteTime" |
    Export-CSV c:\mdb_search\mdbfiles.csv\
    Obviously this isn't working or I wouldn't be posting.  I've tried many different examples from the net with no joy for now.
    Thanks for any help you can offer.

    Thanks, that did the job.
    Cheers, you're welcome.
    How do I get the powershell cursor to return to C:> ?
    Should I use "exit" or "break" ?
    Neither, the console will return to a prompt when the search has been completed.
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Crystal Reports 2008 Fix Pack 3.5 (Bad Fixed Issues Document)

    The document available at
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f06b7148-0f52-2e10-e4ad-82ed9e94c350
    doesn't list any fixed issues for 3.5.  The latest fixed issues listed in that document are for Fix Pack 3.4
    Is there a corrected document somewhere?

    Hi Ido,
    I went through the BOE PDF and these are all I found for just CR 2008 FP 3.5 and not completely sure if they do anything for CR Designer. They may only be affect in BOE.
    Here's is the info:
    ADAPT01472419
    Description:
    When a report uses a "For each record" chart, and the report data is sorted on a formula field, after a report refresh the record order in the chart may not match the record order in the report.
    The cause of the problem is that the chart is refreshed before the sort order is applied to the report.
    To solve the problem, upon a refresh, the formula field in the report is sorted first, before the "For each record" chart is regenerated.
    ADAPT01495638
    Description:
    The label for Summarized Field in a crosstab is always the database field name.
    To solve the problem, users can click Options > Database >Tables and Fields, and then select the option to either display the
    database field name, description, or both for the Summarized Field Label of a crosstab.
    ADAPT01497827
    Description:
    When exporting or scheduling reports to PDF, an error may occur.
    ADAPT01498515
    Description:
    When exporting a wide-page report to text format, report field headers in the page header may either be missing or wrapped.
    ADAPT01503419
    Description:
    Reports that have linked subreports may run more slowly than usual.
    This problem happens when the report contains no data. Despite having no data, Crystal Reports attempts to run the subreport, and this extra processing reduces performance of the report.
    Thanks
    Don

  • My mac disk is full and i cant transfer files from Mac to USB. saying the format is not good, how can i change the format and what happened to the files i have on USB?

    my mac disk is full and i cant transfer files from Mac to USB. saying the format is not good, how can i change the format and what happened to the files i have on USB?

    Once something similar happened to me. The external drives I had set up for FCP to use for some reason were not mounted, and FCP put all its render files on the main drive and I couldn't find them anywhere.
    Go to applications, and control-click (and hold down) on your FCP icon; you should get a pop up menu that says "show package contents". Select that, select the "contents" folder, then the "mac OS" folder. See if your quicktime file is in there, or if you've got render files in the "render" folder or audio render files in the "audio render" folder that don't belong there.
    That's where FCP sticks stuff when your documents FCP project folders are not available or when external drives you've selected aren't available.

  • Looking for a program that can handel import and export of palm doc files

    I am looking for a program that can handel the import and export of palm doc Files that can convert them to to either txt or RTF files for Vista 32, running Palm Desktop 7.1.
    Could anyone give me a few suggestions of any plug-ins that would be good me?
    Hearns
    Post relates to: Palm IIIxe
    This question was solved.
    View Solution.

    Ok, you need to clean uninstall Palm desktop 6.2. Install Palm desktop 4.1.4 and download and install documents to go version 6.
    Here are the clean uninstall instructioins for Vista.
    You should first make a copy of your data to have just in case something
    happens. You can find your data files by going to Start --> Documents -->
    Palm OS Desktop. Highlight your Palm Desktop username and right click and
    copy. Then go to your PC desktop right click on a blank spot and select paste.
    If this is the first time you are installing Palm desktop and encountering a problem, skip the previous step.
    Now you want to uninstall Palm Desktop and remove everything that has to do
    with Palm Desktop from your computer.
    Go to the following locations on the PC and delete the folders listed below.
    C:\Program Files\Palm or Palm One
    C:\Users\[Vista Login Name]\appdata\local\virtualstore\Program Files\Palm or
    PalmOne
    C:\Users\[Vista Login Name]\appdata
    *Note you may need to view hidden folders to get to appdata. To do that go
    into your control panel and open folder options. Go to view tab and uncheck
    hide hidden files.
    Once this is done you will need to delete some registry keys from your PC Operating System.
    Word of warning, going here and deleting the wrong thing can cause your PC
    from starting up, crashing and deletion of programs and data. If you feel
    you are unsure of yourself, see if you have a friend that can help you or a
    PC technician that you can pay to help you. This procedure will show them everything they need to delete. To make sure we have a good copy of the current registry, we need to do a backup of the Registry.
    Go to start on the PC, in the search field type "regedit.exe" without quotes.
    Highlight COMPUTER, go to File --> Export. Should pop up with a Save As box.
    Current location is fine, should be in My Documents or save to a location you will remember. In the file name on the bottom type "backup[todaysdate]" i.e. backup07072008. Next, the hard part.
    The easiest way to make sure your working with the correct key, highlight the key i.e. palm quick install, and press delete on your keyboard. It will ask you, are you sure. Say yes. Do the same thing for all keys below.
    If you make a mistake, stop what you are doing. And call a PC technician.
    BUT do not turn off your computer.
    The reg keys are as follows (Note: some of theses reg keys will not be here
    but if they are delete them)
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Palm Quick Install
    * HKEY_CURRENT_USER\Software\U.S. Robotics\PalmOne File Transfer
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop
    * HKEY_CURRENT_USER\Software\Palm
    * HKEY_CURRENT_USER\Software\Palm, Inc.
    * HKEY_CURRENT_USER\Software\PalmDesktopAutorun
    * HKEY_CURRENT_USER\Software\palmOne
    * HKEY_CURRENT_USER\Software\PalmSource
    * HKEY_LOCAL_MACHINE\Software\PalmSource or anything else that says palm
    Next reboot your computer.
    Then reinstall your palm desktop from the CD and do a hotsync. Use the username that is on the handheld.

  • Comma and quote problem in csv file

    Hi
    My requirement is to append data in an csv file. This is Proxy to File FCC Scenario. for some of the fields from proxy which contains comma(,) and also double-quote("). for these fileds the in the csv file it is spiting in to two columns and appending in to the next column. and the double-quote symbol is not inserting in the csv file.
    1. why the double-quote(") is not inserting in to the csv file columns?
    2. how to over come the comma problem? I want that particular file need to append in one column only.
    Thanks
    Vankadoath

    hi vankadoath,
    Were you able to solve comma issue in CSV file.
    Even i am facing similar issue.....
    wheneever there is a comma in field, it is updating data after comma into next field.
    If anybody has solution for the same.......
    pls suggest the same............
    santosh.
    Edited by: santosh koraddi on Jan 20, 2011 9:44 PM

  • By using OID how to unzip the folder and load bunch of .csv files

    Hi All
    bellow is the my scenario.
    in my scenarion we have created FTP folder that will load the .zip files(Every Day).
    .zip files that will contain bunch of .csv file (flat files) and by using OID need to extract the .zip file and load the all .csv files into target database. source data is .csv files and target data is oracle10g. Dose it will possible by using ODI?? please suggest me...
    Thanks in Advance
    Zakeer

    Hi,
    i'm interrested on this way of reading multiple files, i tried to follow those steps but i'm getting an error while running the package:
    ODI-1226: Step vReadFile fails after 1 attempt(s).
    ODI-1236: Error while refreshing variable VOUCHER_CUSTOMER_DATA_INTEGRATION.vReadFile.
    Caused By: java.lang.NumberFormatException: For input string: "#Activity_report_name"
    the variable vReadFile can't recognize the other variable Activity_report_name.
    the refreshing query for vReadFile is :
    select     file     C1_FILE
    from      TABLE
    /*$$SNPS_START_KEYSNP$CRDWG_TABLESNP$CRTABLE_NAME=files_namesSNP$CRLOAD_FILE=C:\/files_name.txtSNP$CRFILE_FORMAT=DSNP$CRFILE_SEP_FIELD=0x0009SNP$CRFILE_SEP_LINE=0x000D0x000ASNP$CRFILE_FIRST_ROW=#Activity_report_nameSNP$CRFILE_ENC_FIELD=SNP$CRFILE_DEC_SEP=SNP$CRSNP$CRDWG_COLSNP$CRCOL_NAME=fileSNP$CRTYPE_NAME=STRINGSNP$CRORDER=1SNP$CRLENGTH=50SNP$CRPRECISION=50SNP$CRACTION_ON_ERROR=0SNP$CR$$SNPS_END_KEY*/
    any suggestion plz
    regards

  • Crystal Report Output is Fluctuating between USA and European format Issue

    We use Crystal Report 10 .net for our web development in asp.net. We export crystal to PDF Or excel. And it is showing different format for date and decimal points. Its not doing this all the time, but its like every other time I run the webpage then report exports to pdf shows dd/mm/yyyy format, then next time would be mm/dd/yyyy format. Same things with numbers like
    10,000.50 would show like 10.000,50.
    Is something corrupted or there are any hot fix if this is an issue?
    The weird thing is, its not continuously doing this but its fluctuating between this formats.
    Please help....

    Best I can suggest is trying the latest Service Pack:
    https://smpdl.sap-ag.de/~sapidp/012002523100005985482008E/cr10win_en_sp6.zip
    More downloads are here:
    http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm
    Other than that, as CR 10 has been out of support for a number of years, I have no way of testing or reproducing the issue. In order for me to do any troubleshooting, You'd need to get to a supported version of CR. Either CR XI r2 (11.5) or CR 2008 (12.x). 12.x recommended as CR XI r2 will be out of patch support next month.
    Ludek
    Follow us on Twitter
    http://twitter.com/SAPCRNetSup

  • Formatting and alignment issues in Crystal Reports when exported to PDF

    Hi Experts,
    When we export the crystal reports 2013 reports to PDF we are facing issues with formatting and alignment. The columns are overlapping and also for some column's data, we are able to see only some parts of text when exported to PDF.
    Data source for these reports is EHP 7 (SAP ECC 6.0), BO 4.1, Crystal reports 2013.
    As these reports are on priority, your help and suggestions are much appreciated.
    Looking forward to hear from you guys.
    Thanks & Regards,
    Vijay.

    Hi Vijay,
    Search for the following in the search bar at the top right of SCN's page:
    ForceLargerFonts
    UsePrecisePositioningForText
    TruncationAdjustment
    All these are registry keys that you might need to apply on the machine.
    -Abhilash

  • Crystal Reports XI: formatting and exporting to Excel (VB 6)

    Hi.
    I have a VERY simple report that all I want it to do is display the numbers from a table EXACTLY as formatted and be able to export them to Excel, as NUMBER (not STRINGS).
    Example:
    My fields may contains the following values in a single column:
    45.02
    0.04454
    215
    And I want them to be displayed as entered in the source table.
    Initially, to maintain the formatting, I set the field's data type to a STRING.
    The problem is that when I then export the data to Excel, all the numerical values are treated as TEXT and we need to "Convert Text to Numbers".
    When I changed the field's data type to a DOUBLE, the data in the table is correct, but the report formats all the numbers in one way.  I want to be able to retain the formatting of the field (as-is) but have them exported as numbers, rather than text.
    Can this be done?
    Please advise!
    Thanks.
    AK

    I actuallly found my answer elsewhere (http://www.tek-tips.com/viewthread.cfm?qid=1235276&page=4).
    The Decimal formattion (x=2) for the fields can be set as follows:
    If CurrentFieldValue = Int(CurrentFieldValue) Then 0Else If CurrentFieldValue * 10 = Int(CurrentFieldValue * 10) Then 1
    Else If CurrentFieldValue * 100 = Int(CurrentFieldValue * 100) Then 2
    Else If CurrentFieldValue * 1000 = Int(CurrentFieldValue * 1000) Then 3
    Else If CurrentFieldValue * 10000 = Int(CurrentFieldValue * 10000) Then 4
    Else If CurrentFieldValue * 100000 = Int(CurrentFieldValue * 100000) Then 5
    Else If CurrentFieldValue * 1000000 = Int(CurrentFieldValue * 1000000) Then 6
    ElseDefaultAttribute
    Basically - this works.
    Hope this helps someone else!
    Thanks.
    AK

  • Printing Crystal report using Generic Text output - formating lost

    Hi. I have an accounting system using Crystal to generate it's business forms, in particular invoicing as reports. Recently we have installed new printing system that needs generic text to capture and create the business forms (invoices) into a graphic and text. When Crystal sends data to Generic Text Printer, you can view it ok as a preview but it moves text around , bunches it up and formatting is never the same for two documents. I need resolution as the printing software needs fixed text in a specific location within the data file.  Is there a way in Crystal to format fields so they dont move the data and bunch it up. The business forms written in Crystal have sub reports that are supressed if no data is to be printed, but finding text is moving and hard to capture a fixed location in text file. Any suggestions would be appreciated.

    Hello,
    Thank you for your responses.
    Yes, I'm using a bundled version that came with VS 2005.
    I'd love to download this update, but I cannot get there! I don't have an login and password for this site, and I don't know how to get them.
    This is all I'd found about this issue in this thread:
    http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=844
    "I opened an incident with Business Objects.  They said there is not a way to do what we want to do with the Crystal Reports for .NET assemblies.  They are going to implement a way to create a postscript file and include it in Service Pack 3 of Crystal XI Release 2.  They would not say how the postscript will be created (ie, ExportToDisk or any other method), only that they would include it in CRXI Release 2 SP3 which they intend to release sometime this coming winter. "
    "Just an update...this has been fixed in Crystal XI Release 2 Service Pack 3.
    I just finished testing, and it now allows you to print to a file without prompting the user.  We are now able to create a postscript file."
    Thanks,
    Peter
    Edited by: Peter Afonin on Jul 16, 2008 11:52 AM

  • Can one Crystal Report could contian Current Month, YTD and ITD data?

    Hi,
    I am trying to build a crystal report and be able to show data in summarized format on single report containing data for the current month, year to date and Inception to date.
    The difficulty that I find is the date ranges. Current month date range is different from YTD and ITD date.
    what would be the best way to show such data on crystal report? is there a sample report available that can help me to produce such report?
    your help will be highly appreciated, thanks!
    regards,
    Mansoor

    Hey Joe,
    if you have CRXI, take a look at the sample reports
    Record Selection on Date Range has some good examples
    you can do this with multiple Groups
    create a formula
    in to currentdate
    ( this group will cover your inception date to currentdate)
    second group will be a date group also, select year as your print by option for this group.
    3rd group also by date,
    select month.
    add fields to your details section, select the field, right click and select summary location,
    (add to all groups)
    you can then supress footers and headers as needed.
    Hope this helps.

  • Crystal Reports with SAP R/3 FM and Transparent Tables

    Hello Everybody,
    Can somebody tell me how can we use R/3 FM and Tables in Crystal reports?
    Can you send in some documentation if you have. And explain to me in detailed steps please.
    Your help is greatly appreciated as I am in need of some good help.
    Thanking you in anticipation.
    Thanks,
    Sneha Singh.

    Hi,
    For functions to be used in a report, they must meet two conditions:
    u2022 Functions must have defined return types for each of the output
    parameters.
    u2022 Functions must not have whole tables as input parameters.
    Ingo

Maybe you are looking for