Download to excel titles off line

Hi
I pressed the download to excel option from a dashboard in obiee version 10 1 3 and the result shows the report in column a2 to g11, for example, but the title that should be in a1 is in h1 instead. So it looks like its after the report instead of on top of the report.
Does anyone know how to resolve this please? I would like to see the header on top of the report in cell a1.
Regards,
Hilary
Edited by: 811311 on 15-Nov-2010 06:10
Edited by: 811311 on 15-Nov-2010 06:10

hi Hilary,
What's the view type ? is it in pivot or table ??
check that on column heading(column properties-->column format-->column headings-->Additional Formatting Options) is there any padding or height enabled
Thanks,
Saichand.v

Similar Messages

  • Download to excel with multiple lines in header

    Hi experts,
    Is there any Funtion module available to download an internal table contents into Local directory of PC with multiple lines in header.
    i.e.  let us say i hv internal table of 5 entries with 3 columns...
    i need to download this 5 entries into an excel file with some texts above the table contents...
    For eg : in the below format...
    Sample line 1
    sample line 2
    sample line 3
    colheader1     colheader2     colheader3
    item1                              
    item2
    item3
    item4
    item5
    Please help.
    Edited by: Lakshmiraj on Jul 15, 2010 3:26 AM

    There is another option of using OLE automation Please check the link below
    http://wiki.sdn.sap.com/wiki/display/Snippets/ABAP-OLEAutomationusing+MS-Excel
    OR
    chek for the example program in Tcode DWDM ( OLE example )
    OR
    Use FM KCD_EXCEL_OLE_TO_INT_CONVERT ( Fm Uses the same OLE automation)
    Hope it helps
    Anup

  • All the columns of an alv grid report are not downloading in excel in 1 lin

    Hi All,
    I have some 60 columns in my alv grid report and user can download the report using list->export->localfile->spreadsheet.
    What the issue is that all the columns are not downloading in one line, instead they split in two rows.
    Please help.
    Regards,
    Neha Patel

    hi,
    just use this procedure it will solve your problem:
    Firstly export  the data to memory using the FM LIST_FROM_MEMORY.
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    listobject = t_listobject
    EXCEPTIONS
    not_found = 1
    OTHERS = 2.
    IF sy-subrc 0.
    MESSAGE e000(su) WITH text-001.
    ENDIF.
    then i converted it into ASCII using LIST_TO_ASCI,
    CALL FUNCTION 'LIST_TO_ASCI'
    TABLES
    listasci = t_xlstab
    listobject = t_listobject
    EXCEPTIONS
    empty_list = 1
    list_index_invalid = 2
    OTHERS = 3.
    IF sy-subrc NE 0.
    MESSAGE e003(yuksdbfzs).
    ENDIF.
    This gives the data in ASCII format separated by '|' and the header has '-', dashes. If you use this internal table directly without any proccesing in SO_NEW_DOCUMENT_ATT_SEND_API1, then you will not get a good excel sheet attachment. To overcome this limitation, i used cl_abap_char_utilities=>newline and cl_abap_char_utilities=>horizontal_tab to add horizontal and vertical tabs to the internal table, replacing all occurences of '|' with
    cl_abap_char_utilities=>horizontal_tab.
    Set the doc_type as 'XLS', create the body and header using the packing_list and pass the data to be downloaded to SO_NEW_DOCUMENT_ATT_SEND_API1 as contents_bin.
    This will create an excel attachment.
    Sample code for formatting the data for the attachment in excel format.
    u2022     Format the data for excel file download
    LOOP AT t_xlstab INTO wa_xlstab .
    DESCRIBE TABLE t_xlstab LINES lw_cnt.
    CLEAR lw_sytabix.
    lw_sytabix = sy-tabix.
    u2022     If not new line then replace '|' by tabs
    IF NOT wa_xlstab EQ cl_abap_char_utilities=>newline.
    REPLACE ALL OCCURRENCES OF '|' IN wa_xlstab
    WITH cl_abap_char_utilities=>horizontal_tab.
    MODIFY t_xlstab FROM wa_xlstab .
    CLEAR wa_xlstab.
    wa_xlstab = cl_abap_char_utilities=>newline.
    IF lw_cnt NE 0 .
    lw_sytabix = lw_sytabix + 1.
    u2022     Insert new line for the excel data
    INSERT wa_xlstab INTO t_xlstab INDEX lw_sytabix.
    lw_cnt = lw_cnt - 1.
    ENDIF.
    CLEAR wa_xlstab.
    ENDIF.
    ENDLOOP.
    Sample code for creating attachment and sending mail:
    FORM send_mail .
    u2022     Define the attachment format
    lw_doc_type = 'XLS'.
    u2022     Create the document which is to be sent
    lwa_doc_chng-obj_name = 'List'.
    lwa_doc_chng-obj_descr = w_subject. "Subject
    lwa_doc_chng-obj_langu = sy-langu.
    u2022     Fill the document data and get size of message
    LOOP AT t_message.
    lt_objtxt = t_message-line.
    APPEND lt_objtxt.
    ENDLOOP.
    DESCRIBE TABLE lt_objtxt LINES lw_tab_lines.
    IF lw_tab_lines GT 0.
    READ TABLE lt_objtxt INDEX lw_tab_lines.
    lwa_doc_chng-doc_size = ( lw_tab_lines - 1 ) * 255 + STRLEN( lt_objtxt ).
    lwa_doc_chng-obj_langu = sy-langu.
    lwa_doc_chng-sensitivty = 'F'.
    ELSE.
    lwa_doc_chng-doc_size = 0.
    ENDIF.
    u2022     Fill Packing List For the body of e-mail
    lt_packing_list-head_start = 1.
    lt_packing_list-head_num = 0.
    lt_packing_list-body_start = 1.
    lt_packing_list-body_num = lw_tab_lines.
    lt_packing_list-doc_type = 'RAW'.
    APPEND lt_packing_list.
    u2022     Create the attachment (the list itself)
    DESCRIBE TABLE t_xlstab LINES lw_tab_lines.
    u2022     Fill the fields of the packing_list for creating the attachment:
    lt_packing_list-transf_bin = 'X'.
    lt_packing_list-head_start = 1.
    lt_packing_list-head_num = 0.
    lt_packing_list-body_start = 1.
    lt_packing_list-body_num = lw_tab_lines.
    lt_packing_list-doc_type = lw_doc_type.
    lt_packing_list-obj_name = 'Attach'.
    lt_packing_list-obj_descr = w_docdesc.
    lt_packing_list-doc_size = lw_tab_lines * 255.
    APPEND lt_packing_list.
    u2022     Fill the mail recipient list
    lt_reclist-rec_type = 'U'.
    LOOP AT t_recipient_list.
    lt_reclist-receiver = t_recipient_list-address.
    APPEND lt_reclist.
    ENDLOOP.
    u2022     Finally send E-Mail
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = lwa_doc_chng
    put_in_outbox = 'X'
    commit_work = 'X'
    IMPORTING
    sent_to_all = lw_sent_to_all
    TABLES
    packing_list = lt_packing_list
    object_header = lt_objhead
    contents_bin = t_xlstab
    contents_txt = lt_objtxt
    receivers = lt_reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    Hope it will help you
    Regards
    Rahul sharma

  • Can you recommend an app to run excel documents off line and let the files be saved to the ipad not over a network connection

    Can anyone recommend and app for ipad mini to run excel documents offline and let the files be saved ot the ipad hard drive. I am frequently out of network range and need to be able to run the sheets.

    All of the "Office" document editing applications on the iPad have limitations.  Best try them out to see if they meet your needs.
    iWork by Apple
    Keynote
    Numbers
    Pages
    DocsToGo
    • VIEW/EDIT/CREATE Word & Excel files(Office 2007/2008/2010)
    • VIEW PowerPoint, PDF, iWork, Text, .RTF, and more!
    • Send & receive attached supported documents using the built-in Mail app
    • FREE desktop application with your purchase! Compatible on Win & Mac allows you 2-way file sync with a WIFI connection.
    • Open & Edit files within DocsToGo from any 3rd party app that supports the “Open In” feature
    • Supports iTunes File Sharing via USB cable for manually moving files
    https://itunes.apple.com/us/app/documents-to-go-office-suite/id317117961?mt=8
    Office² HD
    "Office² HD, the most intuitive and straightforward office document editor available on the iPad, makes it easy to open, view, create and edit Word (DOC & DOCX), Excel (XLS & XLSX), and PowerPoint (PPT & PPTX) files right from your iPad!"
    https://itunes.apple.com/us/app/office2-hd/id364361728?mt=8
    Quickoffice Pro HD
    Create and edit ALL Microsoft® Office -- document, spreadsheet, and presentation formats, as well as view PDF files, on the go. Our advanced file manager lets you manage local files, access Google Drive or other cloud accounts, and works with your iPad email attachments so you can work anywhere, anytime - online and offline.
    https://itunes.apple.com/us/app/quickoffice-pro-hd-edit-office/id376212724?mt=8
    nsdjoey presents ways to edit office documents in this web page:
    https://discussions.apple.com/message/21953221#21953221

  • How do I save files to my mobile device for off-line use?

    I want to download my files to my iPad for reference when the device is off-line.  Can this be done through Adobe.com

    OK, I just tested this out and it appears that once you open the file while on-line, it is downloaded automatically and available off-line from that point on. 
    Not sure if subsequent highlighting will sync, but I will give it a test run as well.
    If anyone knows an easy way to open multiple files instead of doing each one individually, that would be great.
    Thank you in advance.

  • Alv output download to excel sheet spliting into three line

    hi,
    i have developed alv report with 62 fields (62 colums).when i download this output into excel sheet each line spliting into three line.each field has 20 char length.i want download each row as single line.
    i am using local file  (ctrl + shift+F9) -> spreadsheet option
    please advice me to solve this issue. i am using fm REUSE_ALV_GRID_DISPLAY.
    In layout i am using
      DATA:   min_linesize like sy-linsz,   " if initial min_linesize = 80
              max_linesize like sy-linsz.   " Default 250
      min_linesize = 100.
      max_linesize = 1000.
      gt_layout-zebra             = 'X'. "space.
      gt_layout-colwidth_optimize = space.
      gt_layout-max_linesize = min_linesize.
      gt_layout-max_linesize = max_linesize.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
           i_bypassing_buffer = ' '
           i_callback_program       = sy-repid
           i_callback_pf_status_set = 'SET-PF-STATUS'
           i_callback_user_command  = 'USER_COMMAND'
           it_fieldcat              = gt_fieldcat[]
           it_events                = gt_events[]
           is_layout                = gt_layout
          is_variant               = v_stru_disvar
          i_default                = 'X'
          i_save                   = 'A'
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
         TABLES
           t_outtab                          = it_final[]
      EXCEPTIONS
        program_error                     = 1
        OTHERS                            = 2
    Edited by: Raja Ram on Aug 4, 2009 12:40 PM

    solved

  • How to download and install Flash Player off line?

    I prefer to install SW off line.
    Can I, and if so how do that with Flash Player.
    I use both browsers, IE & Firefox (on Win 2000). Do I
    need to do separate installations?
    The above goes for Shockwave too.
    Thanks,
    David

    Try to download and run the appropriate offline installer from http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#ins tall_in_a_firewall_proxy_server_environment
    [topic moved to Flash Player forum]

  • Working with Outlook 2011 for Mac, my mails are slow and I can work only on-line, when off-line, mail cannot be opened because it is only partially downloaded. How to solve??

    working with Outlook 2011 for Mac, my mails are slow and I can work only on-line, when off-line, mail cannot be opened because it is only partially downloaded. How to solve??

    Try http://www.microsoft.com/mac/support.

  • 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

  • FF4 download won't open--says off-line but no tool bar to fix.

    FF4 download was a disaster--I was ok with FF3 anyway. When download complete, would not run because said I was in off line mode, but no way to change that. Eventually delete FF4 and tried new download. Same result. Tried computer restart to no effect. Tried W7 reset to earlier date to try to recoup FF3.?, but no response from FF3 icon. Now grudgingly using IE without my favorites or cookies, BUT NO TOOLBAR. Also my user profile for Dragon now corrupted.

    Firefox 4.0 needs an Intel x86 processor. <br />
    http://www.mozilla.com/en-US/firefox/4.0/system-requirements/
    For older Macs that aren't supported in Firefox 4.0, try TenFourFox for PowerPC's running Mac 10.4.11 & 10.5.8 . <br />
    http://www.floodgap.com/software/tenfourfox/

  • 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

  • Cuts off leading zeros in a report column when "Download to Excel" function

    Hello
    When a text column contains leading zeros for example "000250" the download to Excel stores the string as "250" in the spreadsheet. I am using a column which is a string.(varchar)
    Can somebody suggest me , how to go ahead with it
    Thanks
    Edited by: user647228 on Sep 11, 2008 1:40 PM
    Edited by: user647228 on Sep 11, 2008 1:42 PM

    (To Vins) Actually, concatenating a space doesn't do it. When the file is downloaded into Excel, the leading space is ignored and it the leading zeroes are still trimmed.
    To user647228: A non-space character needs to be concatenated. Regarding what character to append, I would give the following consideration: If the users are content with seeing an added character to the "number," you can append say an underscore "_" and Excel will download the number properly. It's fairly unobtrusive and can be "visually ignored."
    If the end user insists on gettin rid of the extra character once the file is downloaded, I would append a character that is rarely, if not never, used in the report. (This ensures or mitigates replacing other instances of the character.) Then you can do a Replace All in Excel to replace the extra character with a single apostrophe. The single apostrophe will be interpreted by Excel to mean "text" and the appearance will change to exactly what is desired.
    Note: Replacing the extraneous character with a space for example, will result in the leading zeroes being again lopped off by Excel...

  • Overflow in EXCEL title line routine - Error while posting FI document

    Hi All -
       We are getting an "Overflow in EXCEL title line routine" error message while posting SAP FI document thru FB01 transaction code. We are getting this error message while entering the coding block, can anyone please explain how this error message is coming and how to rectify it.
    Thanks in advance.
    Rds,
    K

    Hi,
    Thanks for the reply.
    The interesting part is, it is a standard message and there is no message class ZKV available in the system.  We have gone live only six months back and not done a single enhancement in HR module till now.
    As far as FICO is concerned, we have an internal control that we will not enhance any of the FI transactions in view of data accuracy and integrity.  We don't have enhancements running in FI & CO modules also.
    I am sure that it is a standard message.  This message is arising out of the function module 'AC_DOCUMENT_CREATE' called internally in the program associated with posting run transaction.
    Please hint, what could be the problem.
    Regards,
    Hema

  • Can I burn PSE 12 download for off line install?

    If I buy the PSE 12 upgrade download from Adobe, does the download include all of the files that I need to burn to a DVD so I can do an off-line installation on another computer? I am concerned that the download will just be an installer that requires an Internet connection to perform the installation. Thanks.

    Obviously I did not make myself clear. Sorry. I have PSE 11 installed and I have an Adobe Id. I assume that when I download the PSE 12 update I will get a new license key. If I have the installation files on a DVD or hard drive and I need to install without an Internet connection I should be able to do so and run in trial mode until I get connected. I do understand that if I have to reinstall on a different machine I will have to have an Internet connection to register the new machine.
    Normally I would wait until early December when Costco has the boxed product. They always have a better price than any altenative I have found. Unfortunately, because I have a new Canon 70D and only PSE 12 supports the 70D I would like to get it now. I can use the DNG converter to edit images, however, there is no way to get the Canon 70D RAW files into the Organizer and that will become a larger and larger problem that I will have to fix when I finally do get PSE 12. Thanks to both yourself and John for your help.

  • After downloading v4.0, will not open; stays in off-line mode

    I have downloaded v4.0 into the Applications file, but when I try to open it, a message saying something like "another version of Firefox is currently open", which isn't the case. It has been in the off-line mode since yesterday.

    [[Firefox 18 crashes on startup due to malware - how to fix]]

Maybe you are looking for