ALV to Excel Inplace subtotals problem

Dear all,
We have a serious problem. We use "cust_abc.xls" Excel template incorporated into BDS - created from "sap_mm.xls". Here on the Format sheet, there are defined subtotals on approximately five columns.
The problem is, that since we have SAP ECC 6.0 and Excel 2003 the subtotals don't work properly. We can only aggregate (use subtotals) using 3 columns in order to preserve all necessary data displayed (around 28 columns). If we set the subtotals using five columns the subtotals are included in the rows, but the aggregation is not correct and the texts for subtotals are not displayed. Furthermore, when we set creation of subtotals using five columns, we can display only 6 columns of data.
Do you think that this can be caused by the version of SAP - e.g. new ALV displaying functions, bad integration SAP ECC 6.0 <-> Excel?
Our previous version of SAP was 4.6C and everything worked properly.
Thanks a lot everybody.
PetrK

no answer

Similar Messages

  • ALV to Excel inplace and return issue High

    Folks;
    I have delveloped and ALv program that uses standard SAP access to EXCEL inplace but also contains the selection button process to allow individual line items to be selected to be used for another process within the report.
    I can click the Excel Icon and the ALV report downloads and displays properly in Excell inplace.  The isue starts, when I manipulate the data in Excel inplace (sort data, sum totals and then display only sums) then click on VIEWS -> SAP LIST Viewer.
    This causes one of three conditions to occur;
    Either their system will lockup, cancels out all SAP sessions and leave Excel running in the background without any indication that it is still running, or the system will cause a dump.
    I even tried with the SAP ddemo program BCALV_TEST_FULLSCREEN_LAYOUT and  the same thing occurs with SAP programs.
    Has anyone run accross this and found a solution?  SAP Notes does not appear to have anything on this.
    Thanks for any assistance.
    Mike

    Hi Michael:
    I can reproduce what you say.
    Maybe the problem is not from SAP, but from Excel. If you check the windows tasks (CTRL + ALT + DEL) and windows tasks, you will see that CPU is dedicated to Excel. If you finish the Excel process, then you get a blank screen in SAPGUI, and the transaction locked, but you can cancel transaction.
    Sorry for not giving a solution, but is just a clue.
    Regards
    Jordi

  • Load ALV with Excel Inplace view

    Hi.
    I'm looking for a way to set the ALV so it will display as Excel-inplace view when it first comes up.
    As far as I know this is not possible.
    Thanx.
    Ayal Telem.

    Thank you all for replying.
    Actually, the solution to this issue is in the Layout strructure. There is a field called "FRONTEND", which is a flag that controls the "View" options.
    I had to do some digging to find out that the Excel Inplace option is "E".
    Enjoy.
    Ayal Telem.

  • Fewer than expected group outlines after display Excel inplace ALV

    After upgrade 4.6 to ECC, I save alv grid layout with sorting and total function .  If you switch to the Excel inplace display in ALV, the system displays an "group outlines" option in only first page (nearly 14 groups) . But the next page cannot group the same data in  1 value and no yellow color in subtotal lines
    For example :
    Current :     
    Material number   |  transaction data |   origin   | actual cost   |
      10                     |  Good issue       |    A        |   10              |
      10                     |  Good issue       |    B        |   20              |
      10                     |   Good issue      |    C        |   30              |
    10                     |  Good issue       |              |   60              | *   >>> No yellow color
    Need :
    Material number   |  transaction data |   origin   | actual cost   |
      10                     |  Good issue       |    A        |   10              |
    B
    20
    C
    30
    10                     |  Good issue       |              |   60              | *   >>> Have yellow color
    Please give me the solution ...

    I apply many sap note but it can not solve this issue...
    1046560 WD ABAP ALV (SP13): Eliminate duplicate code
    1065242 WD ABAP ALV (SP13): Export to Excel, Problems during load
    1067707  WD ABAP ALV (SP13): Export Excel hyperlink w/o reference
    1075242 WD ABAP, ALV, export, Excel, counting table entries
    1083072 ABAP ALV Export: Missing icon display
    1084202 ABAP: ALV export: Icons missing in subtotals
    Please help to solve this problem ...

  • ALV report in Excel inplace

    In my system, when i open ALV report in Excel inplace. Excel opens report but button "Close and Return to ALV (1)" and "Exit excel" is disabled, how can it appear enabled?
    When i press key "ALT+TAB" excel menus and icons desapear, and when press "/" SAP menus appear in strange mode.
    If Excel is open in windows with one worksheet before open Excel in SAP ALV inplace, sometimes an error occured.
    Excel 2007
    SAP ECC6.0
    SAP GUI for Windows - file version 7100.2.8.1039 or 7100.2.9.1039
    Anyone help me.

    hello
    This program checks the paths, installation, and Registry keys of the desktop office applications and OCX files used in SAP Desktop Office Integration. Its results are useful to SAP if you report problems using Desktop Office Integration.
    "C:\Archivos de programa\SAP\FrontEnd\SapGui\Testtools\Check_DOI.exe"
    Hernando

  • Manipulating data in Excel inplace via ALV grids

    Hi everybody,
    I want to create a report which displays data in an Excel file (Excel inplace).
    To solve the problem I have created a custom layout and uplodaded it via the report BCALV_BDS_MAINTENANCE to the BDS. The written report loads the data into an ALV grid, opens Excel inplace and displays the data in the custom layout. This works fine but for one exception: You can only upload an internal table to the ALV grid, consequently no additional information about the selected data itself (e.g. given by a custom selection screen) can be presented in the grid. What I need is a way which adds strings to the excel file not in an internal table.
    Is there a way to to this? Is this possible with ALV grids or do I have to use OLE?
    Thanks in advance.
    Greetings, Daniel

    Daniel,
    Its the TOP_OF_PAGE. See below.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
                  i_callback_program     = sy-repid       <<<
                  i_callback_top_of_page = 'TOP-OF-PAGE'  <<<
             TABLES
             EXCEPTIONS
                  program_error          = 1
                  OTHERS                 = 2.
    And then for the call back form.
    FORM top-of-page.                                          
    ALV Header declarations
      DATA: t_header      TYPE slis_t_listheader,
            wa_header     TYPE slis_listheader.
      wa_header-typ  = 'S'.
      wa_header-info = 'Text goes in here'.   <<<<<
      APPEND wa_header TO t_header.
      CLEAR wa_header.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                it_list_commentary = t_header.
    ENDFORM.
    This will add header to your ALV.
    Execute the program again and open the same in excel. you will now see the strings/text in the layout.
    Hope this helps.
    Ravi.
    Message was edited by: Ravi Gopan

  • Excel inplace (ALV) with Excel 2010

    Hi,
    we have changed our workstation to windows 7 and Office 2010. Now i have a problem
    with excal inplace of ALV. When i switch to excel inplace I don't find any way to save or save as the excel.
    The button "datei" isn't activ.
    Has anyone an idea?
    We use GUI 720 patch 4.
    Regards, Dieter

    A simple workaround working is to "Customize the Quick Access Toolbar" in Excel 2010 itself from the File (Backstage) menu.  add the "Save As" icon which carried forward in SAPGUI Excel inplace and now users can at least choose where to save their work as needed.
    Edited by: neil_mukh on Feb 1, 2011 1:06 PM
    Edited by: neil_mukh on Feb 1, 2011 1:06 PM

  • ALV switch to Excel inplace & return

    Hello.
    I've developed a program that outputs information in ALV format.
    From there, I'm able to navigate to Excel inplace and the information is displayed as expected.
    My Requirement/problem is to make changes in Excel, save them & return to ALV with all information changes too.
    The Save button is available in Excel but the option "Close and return to ALV (1)" is inactive from Excel side.
    I can navigate back to Abap List Viewer from SAP menu options but I loose all changes made from Excel side.
    Can anyone please help in this matter?
    Thanks.
    Mário

    Mario,
    Copy all rows and columns in Excel.  Navigate back to the ALV.  Delete all ALV content.  Paste clipboad content copied from Excel into the ALV.
    Bruce

  • Problem with ALV and EXCEL in 710...

    Hi,
    We have BI 710 and ECC6. When using ALV-GRID and when we try to change the output to excel-inplace, we get the error:
    "View cannot be switched. Product not installed or integration not active"...
    What do i have to install?
    Please suggest...
    Regards,
    Gunjan.

    Cover flow shows a thumbnail or icon for each file much like album covers in iTunes. The first is cover flow and the second shot is list view. If you choose list view the shaking vanishes.

  • ALV Grid in Excel-inplace

    Hi,
    I am having a report which is being shown in ALV grid. I am having one checkbox in selection-screen namely 'Excel Inplace'.If this checkbox is checked then report should be shown in excel-inplace format.
    Please guide me how to achieve this.
    I am having below constraints:
    1. Here I can't save variant in excel-inplace format and use it while execution, because user can save other variants too(may be with less fields) and use it.
    2. I have copied the standard program RFBILA10 and modifying according to my needs. This program is using FM 'REUSE*. So going for ABAP-OO will be difficult here.
    Thanks,
    Vinod.

    You need to use method SET_VIEW_EXCEL.
    Call this right after SET_TABLE_FOR_FIRST_DISPLAY.
    PS pl remember this is protected method you need to inherit this

  • ALV TO EXCEL PROBLEM? ( 90 COLUMNS ALV CAN'T EXPORT TO EXCEL NORMALLY)

    HI ABAPERS,
    anyone have a alv that have over 90 columns and want to export to excel have experienced abnormal formating (like the header row show only up to 60 column and the rest show up in next row) and the data show in separate line.
    anyway can have a better format?
    also after 90 columns show up on alv, it can't show anymore except modify the layout in run time.
    can we do something before that?
    thanks & regards,
    HOWARD

    Hi HOWARD,
    My Report ouput having more than 90 columns in ALV, while downloading data from ALV to Excel sheet am facing alignment problem. (ie) the output column > 66 are appearing in next line of the excel sheet leads to improper alignment.
    Pls give me a solution as u had already come across this issue..
    Thank & Regards,
    Paramesh.

  • Problem in changing layout of ALV to excel

    Hello everyone,
    I have developed an ALV program, wherein I need to show the graphs for the same.
    For this, I need my data in excel format, so that I can write some macros ,and do the further processing on it(I am using an appraoch I found on SDN, "Report with graph").
    I got to know, that I need <b>SAP R/3: Add On:Interactive Excel</b>.
    I asked the BASIS guys to install it, but even after installing it, I am unable to view the data in Excel layout, when I do Change LAyout->View->Microsoft Excel.
    Could anyone let me know if there is any other setting which is required to view the data in excel?On the excel side, we can change the security level(Tools->Macro->Security) to either low, medium or high.
    Is there any such provision in SAP?
    Kindly suggest your answers, as it is important for me to get the data in excel.
    Points will be rewarded.
    Thanks and regards,
    Prerna

    Hi,
    I have already tried what you have just mentioned.
    I searched the entire SDN, for this, and this was one of the replies   
    But still we don't get the data(Even you didn't get it, right?).
    when we change the layout to excel(Excel Inplace), there are 2 sheets by default:-
    Rawheader and Rawdata.The data comes in RAwheader sheet.
    But there is some setting on the BASIS side, which need to be done, in order for it to work.
    I have asked my BASIS colleagues and some of my senior consultants to look into the same.
    They will let me know.
    I would also suggest you try your program on another PC.
    I will let you know as soon as I get any replies from my colleagues.
    Thanks and regards,
    Prerna

  • How to open ALV Excel Inplace in new window

    Hi everybody,
    I have an ALV report which is used in Excel Inplace mode. However, I'd like to have Excel to be opened in a new window and not in the ALV container. I do not want to manually export my data to Excel as described in many discussions here on SCN, but I want to have exactly the same xls document opened that is generated by the ALV control. This is because I want to open the default XLS template uploaded into BDS filled with the data of the ALV grid.
    I thought that getting the generated XLS using the Desktop Office Integration, i_oi_document_proxy->repoen_document would work (using open_inplace = space), but unfortunately this opens the excel template without data.
    Does anyone have a soulution for this?
    Thanks and BR,
    Tamas

    var url:URLRequest = new URLRequest("http://www.adobe.com"); navigateToURL(url, "_blank");
    getURL/navigateToURLThis method uses the getURL (ActionScript 2.0) or navigateToURL (ActionScript 3.0) command to create a new browser window by targeting a new, blank window. This method is simple, works on all browsers, and requires no JavaScript. This method, however, it does not provide control over window location, size, scrollbars, or toolbars.    I guess something like this you needed?

  • Problem in ALV to Excel Download

    Good Morning Experts,
      I am facing one issue related ALV to excel Download.
    I Developed one custom report the output is correct displaying.
    the output is like for example i am taking 3 columns (plant, material, amt).
    plant material amt
    1001  aaa     1000
    1001  bbb     2000
    while downloading to excel
    it displaying like
    plant
    material
    amt
    1001
    aaa
    1000
    1001
    bbb
    2000
    I dont know why its coming like that.
    this is my code
    DEFINE field_cat.
    wa_field-row_pos = &1.
    wa_field-fieldname = &2.
    wa_field-tabname = &3.
    wa_field-seltext_m = &4.
    wa_field-outputlen = &5.
    wa_field-currency = &6.
    wa_field-ref_fieldname = &7.
    wa_field-ref_tabname = &8.
    APPEND wa_field to it_field.
    clear wa_field.
    END-OF-DEFINITION.
    field_cat '1' 'BUKRS' 'IT_FINAL' 'Company Code' '6' '' '' ''.
    field_cat '2' 'BUTXT' 'IT_FINAL' 'Comp Descrip' '25' '' '' ''.
    field_cat '3' 'LIFNR' 'IT_FINAL' 'Vendor No' '10' '' '' ''.
    field_cat '4' 'NAME1' 'IT_FINAL' 'Vendor Name' '35' '' '' ''.
    field_cat '5' 'STRAS' 'IT_FINAL' 'Vendor Addres' '35' '' '' ''.
    field_cat '6' 'FDGRV' 'IT_FINAL' 'Nature Of Work' '30' '' '' ''.
    field_cat '7' 'DMBTR' 'IT_FINAL' 'Net Amount' '16' 'X' 'WAERS' 'IT_FINAL'.
    field_cat '8' 'QBSHB' 'IT_FINAL' 'TDS Amount' '16' 'X' 'WAERS' 'IT_FINAL'.
    field_cat '9' 'TOTAL' 'IT_FINAL' 'Total Amount' '16' 'X' 'WAERS' 'IT_FINAL'.
    it_layout-zebra = 'X'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       I_CALLBACK_PROGRAM                = sy-repid
       I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'
       IS_LAYOUT                         = it_layout
       IT_FIELDCAT                       = it_field
       I_SAVE                            = 'X'
      TABLES
        t_outtab                          = it_final
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endform.                    " DISPLAY_ALV
    FORM TOP_OF_PAGE.
    REFRESH it_head. CLEAR it_head.
    wa_head-typ = 'H'.
    wa_head-info = 'Vendorwise Expense Details'.
    APPEND wa_head to it_head.
    wa_head-typ = 'S'.
    IF NOT s_MONAT-high is INITIAL.
      CONCATENATE 'Period : ' p_gjahr '.' s_MONAT-low ' to ' p_gjahr '.' s_MONAT-high INTO wa_head-info.
    ELSE.
      CONCATENATE 'Period : ' p_gjahr '.' s_MONAT-low INTO wa_head-info.
    ENDIF.
    APPEND wa_head to it_head.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
      EXPORTING
        it_list_commentary       = it_head.
    ENDFORM.
    Regards,
    Dhina..

    Hi,
    You can also try in this way
    in the output screen
      click List (in app tool bar) -> Export -> Spreadsheet
    and save at your desired location.
    (It will be save in .mhtml format , just rightclick on it and you can open it with excel )
    Then you will be able to view in your required format.
    Regards,
    koolspy.

  • Export from ALV to Excel - problem with numeric values

    hi folks,
    when exporting from alv to excel and we have negative values (and using an u.s.a. setting where . and , are different to r/3) negetive values are not shown correctly in excel.
    when changing in win nt the regional settings to europe one's (e.g. germany) everything works fine.
    any hints welcome,
    kind regards
    oliver

    I guess this has something to do with the excel settings. In the control panel you have regional settings.try some options there. It might work.
    Regards
    Sudhi

Maybe you are looking for