Excel to QC export: formatting related query

Please provide a solution to retain formatting (boldness and underline) of the words when Test Cases are exported from excel to QC (I'm using an add-in to perform the export).

Hi manish,
                 you can get from this function module,try this "TEXT_CONVERT_XLS_TO_SAP".
<=<< Sharing Knowledege is a way to Innovative >=>>
By,
  Yoga

Similar Messages

  • Error in Excel while exporting from SAP query.

    Hi Gurus,
    While exporting one SAP query to excel the last row/line of information lost partially.
    Means we get some information in the last line of excel but some information is not exported in that same line.
    Can you throw some light on this please....

    Hi
    Due to special Chracters in the Values sometimes this happens when exporting to excel.
    Please download into Unconverted format selection & after downloading Open with excel & save it in excel
    Thanks & Regards
    Kishore

  • Invalid export DLL or export format" with Crystal Reports 2008 to Excel xls

    We are experiencing the same issue as reported in the sticky thread. I answered in that thread, but thought that I woudl open a new thread to keep track of this issue.  I can give you the responses to your questions you have requested in that thread:
    Server Operating System - MS Windows Server 2003 R2 Enterprise Edition SP2
    Version of the .NET Framework - MS .NET Framework 3.5 SP1
    How did you deploy? - Installed CR 2008 SP1 runtime with msi package
    If you deployed with CRRuntime_12_0_mlb.msi - what was the date of the file and its size? CRRuntime_12_1_mlb.msi dated Sept. 16, 2008 12:55:00 PM, size: 56,717,824 bytes
    What is the file version of crpe32.dll on your server? You'll find this in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 directory - File was created 9/13/08 11:21AM, 9451KB File Version: 12.1.0.882
    How many libpng10.dll files are on your system? List all instances. - 1 instance is on the system located in C;\Program Files\Business Objects\Business Objects Enterprise 12.0\win32_x86 directory. It is dated 9/13/08 8:52:26AM 132KB version 1.0.30.1
    Any additional comments - We have tried to export to PDF and this works successfully. However, we can not export to xls or rft formats.
    CRXF_XLS.dll is 905KB 9/13/08 9:38AM Version 12.1.0.882
    CRXF_RTF.dll is 509KB 9/13/08 9:35AM Version 12.1.0.882
    We also have the CR XIR2 server runtime installed side by side on the server as we migrate from CR 2008 to CR XIR2 SP4 ( where this function does work currently).
    Please let me know if you need anything additional.
    Phil
    "Invalid export DLL or export format" with Crystal Reports 2008
    Posted: Sep 27, 2008 12:36 AM       E-mail this message      Reply 
    I've included this sticky because we are seeing many posts in this forum regarding the error Invalid export DLL or export format when exporting to Excel and RTF in .NET applications using the Crystal Reports 2008 .NET SDK.
    Issue
    Exporting a Crystal Report to Excel or RTF format
    .NET application using the Crystal Reports 2008 runtime (version 12.0)
    error Invalid export DLL or export format
    We've been doing some testing in-house and haven't reproduced this behavior. In order to figure this issue out we will need your help. If you are getting this error please reply to this post with the following information:
    Server Operating System
    Version of the .NET Framework
    How did you deploy?
    If you deployed with CRRuntime_12_0_mlb.msi - what was the date of the file and its size?
    What is the file version of crpe32.dll on your server? You'll find this in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 directory
    How many libpng10.dll files are on your system? List all instances.
    Any additional comments
    What We Know
    The error invalid export DLL or export format may occur when exporting to Excel and RTF formats in .NET applications utilizing the Crystal Reports 2008 runtime (v 12.0)
    Other export formats like Adobe PDF, Crystal Reports, CSV all export with no error
    Some customers have resolved this by adding C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 to their environment path variables
    This may have something to do with the file libpng10.dll. Both crxf_xls.dll and crxf_rtf.dll are dependent on it.
    Thanks in advance for your co-operation. We hope to figure out what is causing this issue soon.

    Hi,
    I am also having the same problem, except that I am not using Crystal Report 2008 runtime but the actual Crystal Report 2008 installation on Windows XP SP2 with VS Studio 2005 (VC++). MS .NET Framework 2.0.
    Cyrstal Report XIR2 was installed on the same machine but uninstalled before installing Crystal Report 2008.
    So only one instance of libpng10.dll and found in C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86
    Crpe32.dll        3/1/2008 version 12.0.0.683
    Crxf_xls.dll       3/1/2008 version 12.0.0.683
    Crxf_rtf.dll         3/1/2008 version 12.0.0.683
    crdb_oracle.dll  3/1/2008 version 12.0.0.683
    libpng10.dll       3/1/2008 version 1.0.30.0             122880 bytes
    There is no problem for exporting to pdf, html, word, csv, Crystal Report. If I create a testing report without any data from database, the testing report can then be exported also to rtf and xls.
    Oracle 11.1.0.6 is the DB for the reports.
    Adding C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 to the path did not resolve my problem.
    Any idea to fix this issue?
    Thanks
    Kin H Chan

  • Exporting data from table to Excel in a particular format using BSP.

    Hello all,
          I am creating a application in BSP  wherein i have to export data to excel sheet.
      I am able to do that but the output in excel sheet is not formatted. it is displaying the data in a single 
    column. For example, the internal table which i am exporting to excel contains fields "product
    name", "area name", country name", "values". all these should be displayed in different columns.How 
    can i achieve this functionality.A sample code will be of great help..
    Below is the code i hav written for exporting to excel :
         data: l_len type i,
               l_string type string,
               app_type type string,
               file_content type xstring,
               file_mime_type type string.
         create OBJECT cached_response TYPE cl_http_response EXPORTING add_c_msg = 1.
         cached_response->set_data( file_content ).
         cached_response->set_header_field(
                          name = if_http_header_fields=>content_type
                          value = file_mime_type ).
    LOOP AT itab_xls INTO wa_xls.
       CONCATENATE L_STRING wa_xls-product_name
       wa_xls-area_name
       wa_xls-landx
       CL_ABAP_CHAR_UTILITIES=>CR_LF INTO L_STRING SEPARATED BY SPACE.
    ENDLOOP.
      APP_TYPE = 'APPLICATION/MSEXCEL; charset=utf-16le'.
      data: l_xstring type xstring.
    call function 'SCMS_STRING_TO_XSTRING'
        exporting
          text = l_string
          MIMETYPE = 'APPLICATION/MSEXCEL; charset=utf-16le'
        IMPORTING
          BUFFER = l_xstring.
    Add the Byte Order Mark - UTF-16 Little Endian
      concatenate  cl_abap_char_utilities=>byte_order_mark_little
                   l_xstring
                   into l_xstring in byte mode.
       cached_response->set_data( l_xstring ).
       cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                         value = 'APPLICATION/MSEXCEL; charset=utf-16le' ).
    *Set the filename into the response header
       cached_response->set_header_field( name  = 'Content-Disposition'
                                  value = 'attachment; filename=gkb_excel.xls' ).
    *Set the Response Status
       cached_response->set_status( code = 200 reason = 'OK' ).
    *Set the Cache Timeout - 60 seconds - we only need this in the cache
    *long enough to build the page and allow the IFrame on the Client to request it.
       cached_response->server_cache_expire_rel( expires_rel = 60 ).
        CALL FUNCTION 'GUID_CREATE'
        IMPORTING
          ev_guid_32 = guid.
        CONCATENATE runtime->application_url '/' guid '.xls' INTO url.
        cl_http_server=>server_cache_upload( url      = url
                                           response = cached_response ).
    Can anyone help me with some solution.
    Thanks in advance.
    Gurmahima.

    the issue is here
    LOOP AT itab_xls INTO wa_xls.
    CONCATENATE L_STRING wa_xls-product_name
    wa_xls-area_name
    wa_xls-landx
    CL_ABAP_CHAR_UTILITIES=>CR_LF INTO L_STRING SEPARATED BY SPACE.
    ENDLOOP.
    instead do the following
    LOOP AT itab_xls INTO wa_xls.
    CONCATENATE L_STRING wa_xls-product_name ','
    wa_xls-area_name  ','
    wa_xls-landx  ','
    CL_ABAP_CHAR_UTILITIES=>CR_LF INTO L_STRING .
    ENDLOOP.
    and then change the file name extension from xls to csv. it should open properly in excel.
    Note that this is only excel csv file. if you want a proper excel excel file, then
    option one: build a html table with your data into a string and pass it to excel
    option 2: build excel xml using your data into a string and pass it to excel.
    Regards
    Raja

  • SQL Developer 4.0 EA3. query result in export format problem

    Query output in export format (insert, csv, xml,...) is not working in 4.0 EA3.
    Query executed as script (F5) does not display anything:
    select /*insert*/ * from dual;
    SQL Developer 3 displays the result correctly:
    REM INSERTING into dual
    SET DEFINE OFF;
    Insert into "dual" (DUMMY) values ('X');
    About
    Oracle SQL Developer 4.0.0.13
    Version 4.0.0.13
    Build MAIN-13.30
    IDE Version: 12.1.3.0.41.131007.2031
    Product ID: oracle.sqldeveloper
    Product Version: 12.2.0.13.30
    Version
    Component    Version
    =========    =======
    Oracle IDE    4.0.0.13.30
    Java(TM) Platform    1.7.0_07
    Versioning Support    4.0.0.13.30

    That's been fixed for the next release.

  • Error inExportToDisk method for Excel (nvalid export DLL or export format)

    Hi,
    I'm new to Crystal Reports and facing a problem with its ExportToDisk method. I'm using Crystal Reports 2008 with MS .Net v3.5 SP1. I get the below error while trying to export to a Excel file. The Datasource is a dataset. Could you please help me out?
    -Stack Trace 
    at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)
       at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
       at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)
       at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(ExportFormatType formatType, String fileName)
    -Error message
    Error in File stdiface {3C162A12-5142-4F2C-8709-154FDD0843DB}.rpt:
    Invalid export DLL or export format.
    -Exception source
    CrystalDecisions.ReportAppServer.DataSetConversion
    -Error ID
    InvalidExportOptions
    Any help will be appreciated!
    Thank You!

    Further, our application has recently upgraded to Crystal Reports 2008, and this problem wasn't observed on any of the previous versions.
    Let me summarize the findings as follows:-
    1)When I install my application on a clean XP machine, (which installs Crystal Reports 2008) as a prerequisite, the window service which uses the ExportToDisk method of Crystal Report engine works without a hitch. The report is successfully generated.
    2)However, if I install my application on a machine which had previous version of my application installed (which used Crystal Reports 10) it gives me a problem with the ExportToDisk method (Invalid export DLL or export format) when it's called through a windows service.
    Let me know if you need any additional information.
    Do help!
    Thanks!

  • Export to Excel 2007 failed - Invalid export DLL or export format.

    Hi,
    Environment:
    OS: Windows XP (SP3)
    Crystal Reports : 12.1.0.892
    We have a problem for exporting few reports to Excel 2007 (Export to Excel 2003 works fine for those reports).
    Getting the bellow while trying to Export to Excel 2007.
    Crystal Report Windows Forms Viewer
    Error in File CDSFUN01 {99B42BC5-2FBB-4F75-A4F5-D7B5B7B6AE0B}.rpt:
    Invalid export DLL or export format.
    OK  
    Export Report
    Export failed.
    OK  
    Its the same case even if we try to Export blank report to Excel 2007 as well. Please help.

    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

  • "Invalid export DLL or export format" with Crystal Reports 2008

    I've included this sticky because we are seeing many posts in this forum regarding the error Invalid export DLL or export format when exporting to Excel and RTF in .NET applications using the Crystal Reports 2008 .NET SDK.
    Issue
    - Exporting a Crystal Report to Excel or RTF format
    - .NET application using the Crystal Reports 2008 runtime (version 12.0)
    - error Invalid export DLL or export format
    We've been doing some testing in-house and haven't reproduced this behavior. In order to figure this issue out we will need your help. If you are getting this error please reply to this post with the following information:
    - Server Operating System
    - Version of the .NET Framework
    - How did you deploy?
    - If you deployed with CRRuntime_12_0_mlb.msi - what was the date of the file and its size?
    - What is the file version of crpe32.dll on your server? You'll find this in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 directory
    - How many libpng10.dll files are on your system? List all instances.
    - Any additional comments
    What We Know
    - The error invalid export DLL or export format may occur when exporting to Excel and RTF formats in .NET applications utilizing the Crystal Reports 2008 runtime (v 12.0)
    - Other export formats like Adobe PDF, Crystal Reports, CSV all export with no error
    - Some customers have resolved this by adding C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 to their environment path variables. Note the system must be restarted after editing the path variable.
    - This may have something to do with the file libpng10.dll. Both crxf_xls.dll and crxf_rtf.dll are dependent on it.
    - libpng10.dll has changed versions from SP0 to SP1. In SP0 it was 1.0.30.0 and in SP1 it is 1.0.30.1
    libpng10.dll dependencies
    The dependencies have also been updated for libpng10.dll in service pack 1. This may have something to do with the export issue. If you've deployed your application with the latest merge modules or setup package for service pack 1 you'll want to make sure you have version 1.0.30.1 of libpng10.dll.
    Version 1.0.30.0
    - zlib.dll
    - msvcr71.dll
    - kernel32.dll
    Version 1.0.30.1
    - boezlib.dll
    - msvcr80.dll
    - kernel32.dll
    Thanks in advance for your co-operation. We hope to figure out what is causing this issue soon.
    Edited by: David Hilton on Jan 14, 2009 10:07 AM

    Our company has also been experiencing this issue with deployed versions of our software, and during my examination of the error I have made the following discoveries:
    For us the error has only been reproduced on Windows 2003 running Citrix
    The error does not occur on Windows XP, Windows 2003 or Vista without Citrix
    For installation of our application we use the CRRuntime_12_0.msm merge module (version 12.0.0.683, file size 46790KB)
    As mentioned in the first post this error is related to the files crxf_rtf.dll and cfxf_xls.dll being unable to locate its reference to the file libpng10.dll during load.
    I have run the application with ProcMon (http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx) attached on both environments that work correctly and that does not work and iIve made these observations:
    During load of dlls Windows searches for references in the following orders (see http://msdn.microsoft.com/en-us/library/ms682586.aspx):
    1. The directory from which the application loaded.
    2. The system directory.
    3. The 16-bit system directory.
    4. The Windows directory.
    5. The current directory.
    6. The directories that are listed in the PATH environment variable.
    Looking at the ProcMon log for the environment where it works correctly (Windows XP, no Citrix) it looks like this . Numbers represent the search order mentioned above:
    Load Image     C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\crxf_rtf.dll     SUCCESS     Image Base: 0x3e640000, Image Size: 0x79000
    (1) QueryOpen     C:\Program Files\<our application name>\libpng10.dll     NAME NOT FOUND     
    (2) QueryOpen     C:\WINDOWS\system32\libpng10.dll     NAME NOT FOUND     
    (3) QueryOpen     C:\WINDOWS\system\libpng10.dll     NAME NOT FOUND
    (4) QueryOpen     C:\WINDOWS\libpng10.dll     NAME NOT FOUND     
    (5) QueryOpen     C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\libpng10.dll     SUCCESS      ...
    So you can see it finds the file in the "current directory"
    Now, from the environment where it does not work (Windows 2003 Server / Citrix):
    Load Image     X:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\crxf_rtf.dll     SUCCESS     Image Base: 0x3e640000, Image Size: 0x79000
    (1) QueryOpen     X:\Program Files\<our application name>\libpng10.dll     NAME NOT FOUND     
    (2) QueryOpen     X:\WINDOWS\system32\libpng10.dll     NAME NOT FOUND     
    (3) QueryOpen     X:\WINDOWS\system\libpng10.dll     NAME NOT FOUND     
    (4) QueryOpen     X:\WINDOWS\libpng10.dll     NAME NOT FOUND     
    (5) QueryOpen     X:\Documents and Settings\<my user name>\WINDOWS\libpng10.dll     NAME NOT FOUND     
    (6) QueryOpen     ... loops trough all paths in the PATH variable, finding nothing
    As you can see somehow the current directory is %USERPROFILE%\WINDOWS and not the Crystal Reports bin path in this environment at the time of loading the dll.
    I have yet to discover why this is the case, but i tought i could share what I have found =)
    The %USERPROFILE%\WINDOWS folder is not a standard Windows folder, and I think it is used by Citrix for some files (like win.ini)
    This also shows why adding the bin folder to the PATH variable is a valid workaround for some, but for us this is not really a good solution as we need this to work out of our installer. We don't always have consultants do the installations for the customers and we cannot expect them to manually edit the PATH variable, and we don't want to add to the PATH variable in the installer unless this is the only way...
    So, I hope this maybe can bring you closer to being able to reproduce it. I'm still looking into it, will post more if I find something else interesting

  • Integration bug with BI Publisher - Excel report always exports as PDF

    Hi,
    We think we found an APEX bug within the integration with BI Publisher.
    After defining a Report Query (under Shared Components) to be exported to excel format, we copy the
    generated link inside an APEX application and when user requests the report it
    always returns a PDF file, instead of an excel as defined in the Report Query.
    We're using APEX version 3.0.0.00.20. No way to make customer upgrade or apply any patch.
    Does anybody have any workaround?
    Many thanks
    Josep
    Edited by: [email protected] on Sep 1, 2008 12:56 PM

    Hi,
    No, I cannot reproduce it because this bug seems to be solved on latest versions. I think this is just a bug for eralier versions. We cannot upgrade version because we have other applications in production already and we cannot assume the risk of breaking them. Is there any workaround?
    Regards,
    Josep

  • Reproduced bug "Invalid export DLL or export format"

    Hi!
    I hope this post is not against forum guidelines, as it is a new post relating to a sticky post; if it is i apologize in advance and feel free to delete this
    I was able to reproduce the "Invalid export DLL or export format" bug that have been plagueing several of our customers for some time now, and posted the steps to reproduce and an example project in the sticky thread ["Invalid export DLL or export format" with Crystal Reports 2008;
    However, this was over 3 weeks ago and it seems nobody noticed ...
    I was just wondering if  anyone had seen it, and if you have been able to forward it to testers/developers and if there are plans to fix this bug in any future release?
    - Hans Olav Jensen

    The error only occured for those of our customers using Oracle as the database backend for our product. After further examination it seems that the "Invalid export DLL or export format" error is triggered just by having an active Oracle database connection.
    I have created a small console application project that reproduces the bug.
    using System.Data.Common;
    namespace CrystalReportsBugRepro
        class Program
            static void Main(string[] args)
                ReportDocument reportDoc = new ReportDocument();
                DiskFileDestinationOptions diskDestOptions;
                ExportOptions exportOptions;
                if ((args.Length >= 1) && (args[0] == "/triggerBug")) {               
                    DbProviderFactory factory = DbProviderFactories.GetFactory("System.Data.OracleClient");
                    DbConnection connection = factory.CreateConnection();
                    try
                        connection.ConnectionString = "Data Source=foo;User ID=foo;Password=foo;Persist Security Info=False;";
                        connection.Open();                   
                    catch (Exception e)
                        // Ignore error, we just want the assembly to load
                reportDoc.Load("HelloWorldReport.rpt");
                diskDestOptions = ExportOptions.CreateDiskFileDestinationOptions();
                diskDestOptions.DiskFileName = "ExportedHelloWorldReport.xls";
                exportOptions = reportDoc.ExportOptions;
                exportOptions.ExportFormatType = ExportFormatType.Excel;
                exportOptions.ExportFormatOptions = ExportOptions.CreateExcelFormatOptions();
                exportOptions.ExportDestinationType = ExportDestinationType.DiskFile;
                exportOptions.ExportDestinationOptions = diskDestOptions;
                reportDoc.Export(exportOptions);
    Run the above code as a console application and if the /triggerBug flag is set, the application fails when trying to export to excel, without /triggerBug it succeeds.
    Link to download the project with everything you need to reproduce the bug: [http://www.mediafire.com/?sharekey=0060d2d3559e49ffaf924764f9977b1de04e75f6e8ebb871]
    Edited by: Hans Olav Jensen on Oct 29, 2009 6:40 PM
    Edited by: Hans Olav Jensen on Oct 29, 2009 6:45 PM

  • Cannot Open Excel File after exporting from Disco Plus

    Hi there,
    I got a question from one user having issue with opening Excel file after exporting from Disco Plus.
    The report has been using for a while and he is using Excel 2003 version and Discoverer 10g(10.1.2.2), he never got this kind of error before, just recently got error.
    After exporting from Disco Plus he saved file on his desktop and when he tries to open the excel it says "Cannot be Accessed, can be corrupted...." but this is not from network drive since he saved file on local desktop or C drive.
    Also not for all reports, only this particular report and only specific parameter, for example for parameter 2008 Feb opened successfully, but for2009 Feb he gets this error when trying to open excel.
    i tried in excel 2007 also , i dont think this is Excel version error, am not sure.
    Also after go live last week (we upgraded database from 9i to 10g) but i am not sure this causes ,since for one parameter working, for other parameter not working.
    Actually we should get one window for Macro when we try to open excel, but he is not getting it seems.
    Any ideas/thoughts on this would be greatly appreciated.
    Thanks for your help
    --skat                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Rod,
    Thanks for your quick response on this.
    Yes, we can export to other formats as well, but actually exporting is working, after saving the file on our local desktop/drive and when we try to open we get this kind messages or we cannot open the file, we should get message window for Macro to enable/disable but for this report we are not getting this either,
    Also this happens only for specific parameters,like i mentioned above it works I mean excel file opens for one set of parameters but for some other set of parameters cannot open.
    For example :- when we enter FEB 2008 it works, if we enter FEB 2009 it won't open the file.
    This is weird
    I am still working on this issue, may be better to recreate the report again might be helpful,
    Any ideas/comments/thoughts would be great
    Thanks
    Skat

  • Getting Error 'Invalid export DLL or export format'

    Hi, we are getting the above error when exporting to Excel from Crystal Reports. Although the export is via one of our products, the process of exporting the report is controlled by the Crystal Report viewer which we have no control over.
    Basic system details are as follows:
    Operating system : - Windows Server 2003 R2 Service pack 2
    Crystal Reports : - Crystal Reports Developer version 12.0.0.683, product type : Full
    Problem summary : - When exporting a report, exporting to excel produces an error 'Invalid export DLL or export format'.
    We have tried the following so far, obviously to no avail:
    The Business Objects folder has been added to the PATH variable.
    Crystal Reports has been deinstalled and reinstalled.
    Your help in getting to the bottom of this is greatly appreciated!

    Hi.
    Please check the fourm
    "Invalid export DLL or export format" with Crystal Reports 2008
    Regards
    Gangadhar

  • CSV Export Format

    Hi all,
    I wrote a custom toolbar in order to select export formats. The toolbar works fine with PDF and RTF formats, but there is a problem with CSV format when the report contains characters like à, è, é, etc. or symbols like u20AC. In that case the symbols are not displayed correctly and there are problems importing the CSV file in Excel (I have to replace with a text editor the wrong characters in the file exported). The problem is verified also using the standard Crystal Reports toolbar and only for CSV format: PDF and RTF reports are created correctly.
    I had a similar problem with JSP, but the solution was the page charset. In this case, how can I solve the problem?
    Regards,
    pippo.

    <p>Hi Pippo,</p><p>        Thank you for the bug submission. I was able to reproduce the issue on our end and subsequently have tracked the issue using the following bug ID: ADAPT00671293. Hopefully we can get the fix out in the next update to Crystal Reports for Eclipse. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><br /> <a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a>          </p>

  • How to set default export format in CrystalReports Viewer

    When Viewing Crystal Reports in InfoView, the top left button can choose export file format, how to set it default to Excel?

    Hi Jennie Xiang,
    You can set the default export format in Crystal designer before publishing in infoview.
    Open the report in Crystal designer and go to file>export>export options--> select the export option to xls and check the options that you want and click on OK.
    Now try exporting the report by clicking on export button then you can see the first option as xls with all format options that you have selected before by default.
    By saving this report at server (infoview) you can get the same options while exporting from viewer.
    Regards,
    Ragahvendra

  • Invalid export DLL or export format

    I have created a code to export the report to excel and it works.. but when i use the export property of the crystal report viewer, all file format works except for the excel format and I am receiving this kind of message whenever I tried using export property of the crystal report viewer..
    "Error in File rpt017 {4742A80B-0356-499C-9B57-BE59A69BD788}.rpt: Invalid export DLL or export format."
    any idea? someone?

    Here is my Web config..
    <?xml version="1.0"?>
    <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
         <configSections>
              <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
                   <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
                        <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"></section>
                        <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
                             <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere"></section>
                             <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"></section>
                             <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"></section>
                        </sectionGroup>
                   </sectionGroup>
              </sectionGroup>
              <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="reportMappings" type="CrystalDecisions.Shared.ReportMappingHandler, CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null"></section>
            <section name="rptBuildProvider" type="CrystalDecisions.Shared.RptBuildProviderHandler, CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null"></section>
          </sectionGroup>
        </sectionGroup>
      </configSections>
         <system.web>
                        <sessionState stateNetworkTimeout="1000000" timeout="50000"></sessionState>
              <httpRuntime executionTimeout="1440"></httpRuntime>
              <pages enableEventValidation="true">
                   <controls>
                        <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   </controls>
                   <namespaces>
            <clear></clear>
            <add namespace="System"></add>
            <add namespace="System.Collections"></add>
            <add namespace="System.Collections.Specialized"></add>
            <add namespace="System.Configuration"></add>
            <add namespace="System.Text"></add>
            <add namespace="System.Text.RegularExpressions"></add>
            <add namespace="System.Web"></add>
            <add namespace="System.Web.Caching"></add>
            <add namespace="System.Web.SessionState"></add>
            <add namespace="System.Web.Security"></add>
            <add namespace="System.Web.Profile"></add>
            <add namespace="System.Web.UI"></add>
            <add namespace="System.Web.UI.WebControls"></add>
            <add namespace="System.Web.UI.WebControls.WebParts"></add>
            <add namespace="System.Web.UI.HtmlControls"></add>
                        <add namespace="Microsoft.VisualBasic"></add>
                        <add namespace="System.Data"></add>
                        <add namespace="System.Drawing"></add>
                        <add namespace="System.Data.Odbc"></add>
                   </namespaces>
              </pages>
              <compilation defaultLanguage="vb" debug="true">
                   <assemblies>
                        <add assembly="System.Messaging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"></add>
                        <add assembly="System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"></add>
                        <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"></add>
                        <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"></add>
                        <add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"></add>
                        <add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"></add>
                        <add assembly="System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"></add>
                        <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.Windows.Forms, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
            <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"></add>
            <add assembly="CrystalDecisions.ReportAppServer.Controllers, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"></add>
            <add assembly="CrystalDecisions.Enterprise.Viewing.ReportSource, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"></add>
                   </assemblies>
          <buildProviders>
            <add extension=".rpt" type="CrystalDecisions.Web.Compilation.RptBuildProvider, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
          </buildProviders>
        </compilation>
              <httpHandlers>
                   <remove verb="*" path="*.asmx"></remove>
                   <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"></add>
                   <add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
              </httpHandlers>
              <httpModules>
                   <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
              </httpModules>
                                  <authentication mode="Forms">
                   <forms timeout="1440"></forms>
              </authentication>
              <authorization>
                   <allow users="*"></allow>
                             </authorization>
                        <trace enabled="false" requestLimit="10" pageOutput="true" traceMode="SortByTime" localOnly="true"></trace>
              <!--  SESSION STATE SETTINGS
              By default ASP.NET uses cookies to identify which requests belong to a particular session.
              If cookies are not available, a session can be tracked by adding a session identifier to the URL.
              To disable cookies, set sessionState cookieless="true".
        -->          <globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="en-GB"></globalization>
              <xhtmlConformance mode="Transitional"></xhtmlConformance>
         </system.web>
         <system.webServer>
              <validation validateIntegratedModeConfiguration="false"></validation>
              <modules>
                   <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
              </modules>
              <handlers>
                   <remove name="WebServiceHandlerFactory-Integrated"></remove>
                   <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode"></add></handlers>
         </system.webServer>
         <location allowOverride="true" inheritInChildApplications="true">
              <appSettings>
       <add key="connString1" value="Data Source=lmkdb3.ntpasila.ad.lmk;User Id=lcnwuat_dbo;Password=two-1=one;"></add>
       <add key="crLogonServername1" value="lmkdb3.ntpasila.ad.lmk"></add>
       <add key="crLogonUserID1" value="lcnwuat_dbo"></add>
       <add key="crLogonPassword1" value="two-1=one"></add>
       <add key="connString" value="Data Source=orcldb;User Id=st_test;Password=st_wala;"></add>
       <add key="crLogonServername" value="orcldb"></add>
       <add key="crLogonUserID" value="st_test"></add>
       <add key="crLogonPassword" value="st_wala"></add>
       <add key="TreeViewIcons" value="images/treeicons/icons"></add>
       <add key="TreeViewStyles" value="images/treeicons/styles/classic"></add>
       <add key="leftnavroot" value="Lemcon Staff Tracker"></add>
       <add key="FromYear" value="1900"></add>
       <add key="ToYear" value="2010"></add>
       <add key="FileLocation" value="E:StafftrackerStafftrackerFiles"></add>
       <add key="Server" value="http://192.168.1.115/stafftracker/"></add>
       <add key="MailServer" value="localhost"></add>
       <add key="ViewSearchEmp" value="usercontrols/views/ViewEmployeeProfile.aspx?emp_id="></add>
       <add key="ViewSearchReq" value="usercontrols/views/ViewCustomerRequest.aspx?cr_id="></add>
       <add key="ViewSearchAward" value="usercontrols/views/ViewAwarding.aspx?cr_id="></add>
       <add key="ViewSearchCons" value="usercontrols/views/ViewConsultantContract.aspx?ec_id="></add>
       <add key="ViewSearchCust" value="usercontrols/views/ViewCustomerContract.aspx?cc_id="></add>
       <add key="ViewSearchECon" value="usercontrols/views/ViewEmployeeContract.aspx?empc_id="></add>
       <add key="ViewSearchSoc" value="usercontrols/views/ViewSocialSecurity.aspx?emp_id="></add>
       <add key="ViewEmpRec" value="usercontrols/views/ViewEmploymentRecord.aspx?employ_id="></add>
       <add key="ViewReq" value="usercontrols/views/ViewRequest.aspx?req_id="></add>
       <add key="SiteMaintenance" value="usercontrols/maintenance/Site.aspx"></add>
       <add key="ProjectMaintenance" value="usercontrols/maintenance/Project.aspx"></add>
       <add key="ViewFI" value="FI_Socsec.aspx?grdFISocSecId="></add>
       <add key="ViewFIFam" value="FIFam_Socsec.aspx?grdFISocSecId="></add>
       <add key="ViewEmpRecord" value="Employment.aspx?employ_id="></add>
       <add key="ViewEmpRecord2" value="EmploymentCreateNew.aspx?employ_id="></add>
       <add key="ViewEmpRecord3" value="EmploymentCreateNew02.aspx?employ_id="></add>
       <add key="ViewProjTask" value="Proj_Task.aspx?employ_id="></add>
       <add key="ViewProjTask2" value="Proj_Task2.aspx?employ_id="></add>
       <add key="ViewEmpContract" value="usercontrols/contract/EmployeeContract.aspx"></add>
       <add key="ViewEmpContractLN" value="usercontrols/contract/EmployeeContractLN.aspx"></add>
       <add key="ViewSocSecUI" value="usercontrols/employee/SocialSecurity.aspx"></add>
       <add key="CrystalImageCleaner-AutoStart" value="true"></add>
       <add key="CrystalImageCleaner-Sleep" value="60000"></add>
       <add key="CrystalImageCleaner-Age" value="120000"></add>
       <add key="CountryMaintenance" value="usercontrols/maintenance/Country.aspx"></add>
       <add key="CityMaintenance" value="usercontrols/maintenance/City.aspx"></add>
      </appSettings>
        <connectionStrings></connectionStrings>
         </location>
         <businessObjects>
        <crystalReports>
          <reportMappings>
            <add reportName="Copy of rpt010.rpt" path="usercontrols
    eportsCopy of rpt010.rpt"></add>
            <add reportName="Copy of rpt017.rpt" path="usercontrols
    eportsCopy of rpt017.rpt"></add>
            <add reportName="CrystalReport.rpt" path="usercontrols
    eportsCrystalReport.rpt"></add>
            <add reportName="CustomerWoConsContract.rpt" path="usercontrols
    eportsCustomerWoConsContract.rpt"></add>
            <add reportName="default.rpt" path="usercontrols
    eportsdefault.rpt"></add>
            <add reportName="MissingWorkRec.rpt" path="usercontrols
    eportsMissingWorkRec.rpt"></add>
            <add reportName="RequestwoCandidate.rpt" path="usercontrols
    eportsRequestwoCandidate.rpt"></add>
            <add reportName="RequestwoCandidateExp.rpt" path="usercontrols
    eportsRequestwoCandidateExp.rpt"></add>
            <add reportName="RequestwoCustCont.rpt" path="usercontrols
    eportsRequestwoCustCont.rpt"></add>
            <add reportName="rpt001.rpt" path="usercontrols
    eports
    pt001.rpt"></add>
            <add reportName="rpt002.rpt" path="usercontrols
    eports
    pt002.rpt"></add>
            <add reportName="rpt003.rpt" path="usercontrols
    eports
    pt003.rpt"></add>
            <add reportName="rpt005.rpt" path="usercontrols
    eports
    pt005.rpt"></add>
            <add reportName="rpt005B.rpt" path="usercontrols
    eports
    pt005B.rpt"></add>
            <add reportName="rpt006.rpt" path="usercontrols
    eports
    pt006.rpt"></add>
            <add reportName="rpt006B.rpt" path="usercontrols
    eports
    pt006B.rpt"></add>
            <add reportName="rpt008.rpt" path="usercontrols
    eports
    pt008.rpt"></add>
            <add reportName="rpt008B.rpt" path="usercontrols
    eports
    pt008B.rpt"></add>
            <add reportName="rpt009.rpt" path="usercontrols
    eports
    pt009.rpt"></add>
            <add reportName="rpt009B.rpt" path="usercontrols
    eports
    pt009B.rpt"></add>
            <add reportName="rpt010.rpt" path="usercontrols
    eports
    pt010.rpt"></add>
            <add reportName="rpt011.rpt" path="usercontrols
    eports
    pt011.rpt"></add>
            <add reportName="rpt013.rpt" path="usercontrols
    eports
    pt013.rpt"></add>
            <add reportName="rpt017.rpt" path="usercontrols
    eports
    pt017.rpt"></add>
            <add reportName="rpt018.rpt" path="usercontrols
    eports
    pt018.rpt"></add>
            <add reportName="StaffPerArea.rpt" path="usercontrols
    eportsStaffPerArea.rpt"></add>
          </reportMappings>
          <rptBuildProvider>
            <add embedRptInResource="true"></add>
          </rptBuildProvider>
        </crystalReports>
      </businessObjects>
    </configuration>
    Edited by: Angelo Emmanuel Heraña on Aug 14, 2008 7:37 AM

Maybe you are looking for

  • Exporting numbers to PDF

    I have created my numbers document.  I have exported to Pdf however it looks strange. I have added pages to the PDF from "pages" and the sizes of the pages in PDF are different to each other.  This looks very poor.   The numbers doc is wider and long

  • Extended classic delete purchase order line items

    We have a problem with the backend purchase order updating with changes made to the local (SRM) PO.  A purchase order was cut with six line items and replicated to R/3 as expected.  The line items contained materials.  A couple of days later the requ

  • Line not working since 9 January. Calls to BT not ...

    My question is is there a way to contact a single point of contact who can track a fault through from beginning to end and keep me in touch with progress? The initial fault was a lot of interference and broadband download speeds 10% of what they shou

  • How to operate two gallery on the same site ?

    hello. I'm having a problem. I'm editing a template built using Flash, which already have a page that is a photo gallery. I created two others. Edict everything right in the xml file. However, when I open the page properly direct the gallery just sma

  • How to join two columns between two tables with different column names

    Hi How i can join 2 columns with different names between the 2 tables. Can any one please give solution for this. Thanks Manu