Download to excel issue.

Hi All,
When I download a report to excel, one of my percent field with one decimal place, is increased to two decimal places in excel.
does anyone of a work around or a fix to this issue?
Thanks

Checking the Oracle bug database there are the following bugs/enhancements logged that sounds relevant and some workarounds we can try:
Bug 865450 DOWNLOAD TO EXCEL ALWAYS OPENS AS HTML FILE
Bug 5592823 EXCEL DOWNLOAD TREATED AS HTML FILE BY MOZILLA FIREFOX 1.5
Enh 6906146 DOWNLOAD TO EXCEL 2000 OUTPUT SHOULD BE EXCEL FORMAT NOT HTML
Workarounds:
(1) If your server is Tomcat
(From bug log...)
The real issue is IE fails to to detect the file type correctly in some cases
in absence of proper MIME headers from the Tomcat servers especially on
Linux.
The fix is to
Add a mime-mapping in tomcat/conf/web.xml. Under the section
Default MIME Type Mappings
Restart tomcat and delete temporary internet files from IE
<mime-mapping>
<extension>xls</extension>
<mime-type>application/octet-stream</mime-type>
</mime-mapping>
(2) Switch browser to Firefox instead of IE. This sounds drastic but reading the bug logs it appears that Firefox will ask you what to use to open the file the first time it is used via Download to Excel - and at this point you can choose Excel and ask it to remember that decision.
Let me know if any of this useful. If not I'll drill further and see if I can dig up a better workaround.

Similar Messages

  • Data download (for excel) ISSUE!

    hi
    i use GUI_DOWNLOAD function download inter table data generated xls format.
    in inter table data have ID FIeld which consist of numeric!
    example:
    35000078297773587
    when download the field will change:3.50001E+16
    i want to avoid it!
    in sap stardand provide a mothod:
    run REUSE_ALV_GRID_DISPLAY function to display
    data.
    in REUSE_ALV_GRID_DISPLAY screen:
    go to list>export>sprresheet
    choice excel(in MHTML format) will download data what i want!
    who know which function is executed in REUSE_ALV_GRID_DISPLAY  .
    or exist other method to solve this issue!
    help!
    thank you advance!

    HI
      DATA:PLINE TYPE I,CLINE TYPE I.
      REFRESH IT_S.
      REFRESH: itab,GT_S.
      CALL FUNCTION 'NAMETAB_GET'
        EXPORTING
          langu          = sy-langu
          tabname        = itoper-tabname
        TABLES
          nametab        = itab
        EXCEPTIONS
          no_texts_found = 1.
      IF sy-subrc = 1.
        MESSAGE 'STOP,CREATE TABLE ERROR' TYPE 'E'.
      ENDIF.
      DESCRIBE TABLE itab LINES pline.
      LOOP AT <F_FS> ASSIGNING <F_FS5>.
        CLEAR CLINE.
        LOOP AT itab.
          CLINE = sy-tabix.
          ASSIGN COMPONENT itab-fieldname OF STRUCTURE <F_FS5> TO <F_FS6>.
          IF SY-SUBRC = 0.
            IF CLINE = 1.
              WA_S = <F_FS6>.
            ELSE.
              CONCATENATE WA_S <F_FS6> INTO WA_S separated by con_tab.
              IF CLINE = pline.
                concatenate  WA_S con_cret into WA_S.
              ENDIF.
            ENDIF.
          ENDIF.
        ENDLOOP.
        REFRESH IT_S.
        CALL FUNCTION 'SCMS_STRING_TO_FTEXT'
      EXPORTING
        TEXT            = WA_S
    IMPORTING
      LENGTH          =
      TABLES
        FTEXT_TAB       = IT_S
        APPEND LINES OF IT_S TO GT_S.
       APPEND WA_S TO IT_S.
      ENDLOOP.
      IF <F_FS5> IS ASSIGNED.
        UNASSIGN <F_FS5>.
      ENDIF.
      IF <F_FS6> IS ASSIGNED.
        UNASSIGN <F_FS6>.
      ENDIF.
    WHEN RUN:
        CALL FUNCTION 'SCMS_STRING_TO_FTEXT'
      EXPORTING
        TEXT            = WA_S
    IMPORTING
      LENGTH          =
      TABLES
        FTEXT_TAB       = IT_S
    Will dump out!
    TYPES:S_STRING TYPE STRING.
    DATA:WA_S TYPE S_STRING,
         IT_S TYPE TABLE OF S_STRING WITH HEADER LINE,
         GT_S TYPE TABLE OF S_STRING WITH HEADER LINE.

  • Download to excel Issue in obiee 11g (11.1.1.6.4)

    Hi ,
    One report contains 1,00,000 results, when the user is trying to export it into excel. they may not get all (1,00,000) records. We are getting exceed limit. Could you please provide me the solution?
    Regards,
    Sree

    sree,
    change the download number in inistanceconfig file and check the updated value is available in EM after restarting the services(OPMN).if not enter the required value in download button w't have you been given in instanceconfig.xml.
    Instanceconfig file path: <biee11g_install>\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1\instanceconfig.xml
    change value in:
    <DefaultRowsDisplayedInDownload>64000</DefaultRowsDisplayedInDownload>
    check value after restart the service in em, same values is there or not: Maximum nuber of rows to download.
    Thanks,
    Narasimha

  • OOP's ALV : Download to excel issue

    Hi All,
    I am using oops ALV in a report .
    I need to implement it in such a way that when user export the list to excel
    1. Downloaded excel should also contain the data printed in top- of-page followed by the grid data.
      i.e some desired records followed by the main records.
    I am able to display the output data as desired, But when I download data to excel, it gives only records
    from grid and not the top-of-page data.
    Please let me know how to solve this ?
    Do I need to change approach?
    Thanks in Advance.

    Hi,
    To display the top of page in ALV FM we use the TOP_OF_PAGE event to display the data. But in Oop's Concept if you populate the data in TOP_OF_PAGE event the data will not be displayed in ALV layout but when print preview or print then you can see the TOP_OF_PAGE data.
    So to show the data on the ALV layout we use the split conatainer concept. Split the container in two and display ALV in below container and TOP_OF_PAGE in top container.
    Apart from having above you still populate the TOP_OF_PAGE event of ALV. This will be come into picture in case of download,Print priview & Print.

  • Download data from ALV to excel issue

    Hi All,
    Could you please tell me if there has any restriction on ALV grid data download to excel? I've a report contains 68 columns and about 500 rows, I want to download the data using the standard menu list->export->save to local file. but after I download them, I found the first 65 columns display in one line and the rest columns display in next line, just like ALV do not allow too many characters in one row and have to switch to new line. I can hide some columns but it's very strange that even after i hide 3 columns to fit the 500 rows download, then if the rows increase, the same problem occurs.
    I searched the forum and in the thread Re: Export ALV in EXCEL Issue Mr. Suvajit provided a solution by using menu List->export->spreadsheet, it looks very good. But I still want to know how this happen and is there a standard way to download data with more than 65 columns to local file with extension .xls so that user can open it directly?
    PS: I'm using FM REUSE_ALV_GRID_DISPLAY and the SAP version is SAP ECC6 with kernal package SAPKB70103.
    Thank you very much.
    Best Regards,
    Jeff
    Edited by: Jeff_liu_2010 on Mar 10, 2011 7:21 AM

    Hi Jeff,
    Please check if following analysis is helpful to you.
    Analysis/Solution:
    When we export ALV data to excel worksheet, as sap notes say the maximum lenght allowed is 1023 charaters and the max no of columns supported is 90.
    (I never faced any issue related to no of columns as it worked fine for columns >90 too)
    Issue occured when row size of exported data gets more than 1023 character.
    Therefore the row data must not exceed 1023 character, otherwise column splits and moves to next row.
    One additional aspect generally missed is that:
    When data in any particular column changes it's length, alv header also changes its lengh (short text, medium text, long text; depending on the length of of the longest cell in the column)
    therefore even if you have total length of row less than 1023 character, there might be cases when your ALV header size exceeds this length.
    Reducing the header size (by forcing to use short text or specifying own header names) should resolve the issue.
    Regards,
    Parveen

  • Issue with Data download to excel from ALV

    Hi,
    I am trying to download data to excel from ALV.
    The number of records are 26000.
    When I am trying to download I am getting an error displaying a pop up saying that
    problems came up in the following areas during the load
    TABLE
    The log displayed is not clear.
    I need to know the limitations while downloading to excel... I tried in SDN but of no use. I am using office 2007.
    What is the max downloading limit(MB)
    What must be the Length of line that can be downloaded.
    Regards

    Hi ,
    First check whether your ALV grid OUTPUT   is Consistent or Not   .
    if there are any inconsistency  then you need to rectify that  .
    for Checking COnsistency / Inconsistency  .do following steps
    1) execute ALV report 
    2) Press Shift+Mouse Right Button (Twice)  in blank area of report 
    3) you will get result   whether ALV is good or not .
    regards
    Deepak.

  • Download to excel from ALV via portal

    HI,
    Could anyone out there help me resolve one issue which I am facing.
    We have developed a ALV report and the same is working fine in GUI screen and also the various ALV features such as Download to Local File, Print Preview and others are working very well.
    But if I deploy the same report on EP. The report is executing just fine but all the ALV features such as download to excel file and all other features are not working as desired.
    I have done some reasearch on this issue and everytime people talk about having the updated Java version and to run this features on IE 7 or below. We have tried all these but still no luck.
    Request you to provide your valuable inputs which can help me resolve this issue.
    Thanks much!
    Regards,
    Sumanth

    Hi,
    I guess this is due to the gui statements like call screen for popup to download which will not work in browser, instead of using FM for ALV or CL_GUI_ALV_GRID class, try using CL_SALV CLasses or create ALV in Web dynpro and integrate it in portal which will work well.
    Hope this helps u.,
    Thanks & Regards,
    Kiran.

  • Grid Download to Excel truncates leading zeros

    We are on tools 8.51. The download feature for a Grid now removes the leading zeros when the grid is downloaded to excel. Has anyone found a way to fix this issue ? Thanks in advance

    When you download from PS query, the output is created as a true binary xls file, but when you download from a grid in PT 8.51 the output file is html, even though the filename is ps.xls. You can open this file in a text editor.
    If you have all numeric data in a column, it will be stored as <td>nnnnnn</td> in the html file. if the column has mixed numeric and text data, it will be stored as <td>=&amp;quot;nnnnnn&amp;quot;</td>. The leading zeroes are still there in both cases, but when excel imports the first form it will convert the result to numeric, the second it will treat as text.
    Other than logging a case with Oracle, the only workaround I could think of would be to save the file to disk and run the macro directly against the html. Of course, this would likely be a major redesign.
    Regards,
    Bob

  • Download to Excel not working in Transaction iview in Quality

    Dear All,
    I have a transaction iview in EP Quality Server which is transported from the development Server.This iview represents a transaction which displays some data (report output) and has an button for download to excel. The problem is that the ALV download functionality is working fine in the EP development Server's iview but I am not able to download from EP Quality though the output of the report is coming fine.
    Awaiting for the reply.
    Regards,
    Samir

    Hi,
    Try it once in laptop instead of desktop.
    May be the screen resolution or some thing is causing this,because I have encountered the issue previously.
    Create new iview in quality and try.Do you activate the transaction in SICF if it is custom one.
    Thanks and Regards,
    gopal.sattiraju

  • When I download an excel spread sheet from a Ford web site I seem to be getting code and not the work sheet. Example- MIME-Version: 1.0 X-Document-Type: Workbook Content-Type: multipart/related; boundary="====Boundary===="

    I have a Macbook Air. I have MS office installed and work in Excel often with no issues. But When I download an excel spread sheet from a Ford web site I seem to be getting code and not the work sheet.
    Example-
    MIME-Version: 1.0
    X-Document-Type: Workbook
    Content-Type: multipart/related; boundary="====Boundary===="
    --====Boundary====
    Content-Location: file:///C:/HOLD.XHT
    Content-Transfer-Encoding: 8bit
    Content-Type: text/html; charset="utf-8"
    <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns="http://www.w3.org/TR/REC-html40">
    <HEAD>
    <meta name="Excel Workbook Frameset">
    <xml>
    <x:ExcelWorkbook>
      <x:ExcelWorksheets>
       <x:ExcelWorksheet>
        <x:Name>BTB</x:Name>
        <x:WorksheetSource HRef="./IBIT0001.xht"/>
       </x:ExcelWorksheet>
       <x:ExcelWorksheet>
        <x:Name>GSM</x:Name>
        <x:WorksheetSource HRef="./IBIT0002.xht"/>
       </x:ExcelWorksheet>
       <x:ExcelWorksheet>
        <x:Name>RODetail</x:Name>
        <x:WorksheetSource HRef="./IBIT0003.xht"/>
       </x:ExcelWorksheet>
      </x:ExcelWorksheets>
    </x:ExcelWorkbook>
    </xml>
    </HEAD>
    </HTML>
    --====Boundary====
    Content-Location: file:///C:/IBIT0001.xht
    Content-Transfer-Encoding: 8bit
    Content-Type: text/html; charset="utf-8"
    <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns="http://www.w3.org/TR/REC-html40">
    <HEAD>
    <meta http-equiv=Content-Type content="text/html; charset=utf-8">
    <style>
    <!--table
            {mso-displayed-decimal-separator:"\.";
            mso-displayed-thousand-separator:"\,";}
    @page
            {margin:1.0in .75in 1.0in .75in;
            mso-header-margin:.5in;
            mso-footer-margin:.5in;
            mso-page-orientation:landscape;}
    tr
            {mso-height-source:auto;}
    col
            {mso-width-source:auto;}
    br
            {mso-data-placement:same-cell;}
    .style21
            {color:blue;
            font-size:10.0pt;
            font-weight:400;
            font-style:normal;
            text-decoration:underline;
            text-underline-style:single;
            font-family:Arial;

    Try search/ask in the forum devoted entirely to Excel issues:
    http://answers.microsoft.com/en-us/mac/forum/macexcel

  • PDF filled in form for analysis - download to Excel field titles are corrupted

    I am having an issue with the download to Excel as well as the tracker capabilities in Tracker.  The field names/titles that I have on my PDF form show up with strange characters as the titles.  My form question is:  Is your company currently a contractor/supplier to XYZ?  The field in the Tracker and thus Excel down load is: Is_your_company_abRbCq3ookWNM8Au0LhpFQ.  How can I get the full field as is show on the PDF form to appear in the Tracker and then Excel Download.  I am using PDF forms distributed through e-mail.  Form was created in Form Central.  I am using Acrobat XI  version 11.0.03.
    Please help.

    Why create a separate popup page to download the data?  You can place the content in the ICM cache and load it via a very small Iframe in your page.  I think this will acomplish the same thing you are wanting to do.
    The following weblog has the code to acomplish this. It does it for XML, Excel, and HTML downloads.
    /people/thomas.jung3/blog/2004/09/02/creating-a-bsp-extension-for-downloading-a-table

  • Add download to excel icon

    Hi All,
    I am using the two below mentioned methods in my program:
    CALL METHOD g_alv_tree->add_node
    CALL METHOD g_alv_tree->set_table_for_first_display
    for displaying some details in hierarchial format.
    I need to add the download to Excel icon in the output layout.
    Please provide the necessary solution.
    Thanks in advance,
    Neethu

    Hi Neethu,
    I'm also facing the same issue.I have xl download icon on the output display screen,but when I click xl sheet is opening, but not data are getting download.
    Pls assist me.
    Regards,
    Siva

  • Stop download to Excel from converting string of digits & dashes into date

    Hi,
    How can I stop BI and Excel data from converting a column of string data that is comprised of numbers and dashes into a date format when it is downloaded into Excel?
    I'd like to solve this problem in BI, so that any users can download the data from a BI report into Excel without having to change the Excel date column back into a string column.
    Thanks,
    Darcy

    Hi Again Darcy,
    hmmm... That is very interesting. I just tried on OBIEE 10.1.3.2 ( a version before yours) on Windows XP with Office 2003 and an Oracle 11g DB backend and it did not have any problems pulling the value as text and not a DATE
    Can you try something for me? In a new report, add any old dimensional (year, month name, etc) field twice into the report and change the second column formula to be following: '7001-2'
    Try to export that report and see if that value comes through as text or a date. If it is something about the SQL server data set, then the above test should come through as text object in your excel download because we aren't pulling it from SQL Server, we'll creating it directly in OBIEE. If the above test does come through as a date, then it should mean that SQL Server isn't the issue. And if that is the case, I am starting to wonder if there's a setting in Office to can be enabled/disabled to avoid any data casting.
    Best regards,
    -Joe

  • Download to Excel using pkg by Denes

    I've had success using the package that Denes created for non-Interactive Reports, but now I have issue downloading to Excel when I create a SQL Report, with the option to Enable Search = Yes. When I download the report, it only appears to show columns that aren't searchable, or at least those columns that don't have a value for the column attribute for "Highlight Words." The report was created through a wizard, so APEX automatically created the items and processes to enable searching for values within the report. When I remove the item specified for Highlight Words (e.g. &P60_REPORT_SEARCH), the column then shows up in the downloaded file. I did not find any logic in the Export_Excel_Pkg where it might exclude such columns. Any ideas?

    The issue appears to be resolved. In the EXCEL_REPORT_PKG.PRINT_REPORT_HEADER proc there is a cursor with a condition specifiying: include_in_export = 'Yes'. Strangely, even though in APEX I can see that the column attribute Include in Export = Yes, the values for these report columns in the APEX_APPLICATION_PAGE_RPT_COLS view for the INCLUDE_IN_EXPORT column was NULL. I had to again click on "Apply Changes" and it set the column value in the table to 'Yes' where before it was NULL.

  • Logo seen in report Title is not properly alligned when downloaded to Excel

    Hi All,
    Iam facing an issue with Download to Excel link on my OBIEE report.
    When I download my report to Excel which has a logo in the report title, in the excel sheet the logo occupies all the cells till the end of the report columns and my report title is seen after those columns.
    Can you please suggest a solution or a workaround for this.
    Many Thanks in adavnce.
    Suman
    Edited by: Suman B on Sep 20, 2010 4:10 AM

    hi
    Suman
    i am also faced same problem. if u got any solution for this post
    let me know
    Advance Thanks
    Satya

Maybe you are looking for

  • Equium 100-147 upgrade to windows vista home premium

    Have been upgraded for 9 months but get compatibility error windows appearing for various toshiba drivers. On opening toshiba assist/protect&fix/preinstalled drivers/tools&utilities it lists everything as my old xp media centre. Can this page be upgr

  • Getting error undefined symbol

    i am using weblogic server 6.1 i have deployed my ststeless session bean but i don't know how to access it from client what i are the commands such as ejbc do i need to put that jar file on class path olease give me the code of that step by step proc

  • READ CHECKBOX  FROM INTERNAL TABLE

    can anyone tell me how to read in an internal table whether checkbox are marked or not.... i m finding difficulty in identifiyng my checkboxes as marked or not....dynamically.... Thanks in Advance....... KARTIKEY

  • Billing - Foreign Data Incomplete, Delivery to Billing

    Hey Folks I am trying to create a billing document, which is an Export Billing Document. I have maintained my Customer address in Australia. When i save my billing document, i get a message " foreign trade data incomplete" in which case i cannot tran

  • Broken Links in AI CS4

    My file keeps asking me for Linked Items that have already been deleted.  How do I remove the message box from coming up each time I open the file?