Reg no of columns in alv

Hi,
     Am displaying 113 columns in alv, when i export to excelsheet only 99 columns are exported remaining are not exported. plz tell how to export all the columns.
tanks,
vino.

Hi Vino,
The process for downloading into excel with correct columns can be done in many ways
I suggest you to read the following and then go about for a trial and error and in case you find difficulty revert back
After generating a report, it is possible to export it into Microsoft Excel and/or Microsoft Word using three different options. Each of these options saves the file in a slightly different format. Before using any of these options, you have to set the macro security in your Office products to medium.
Within your Office program, follow the menu path Tools > Macro > Security. Select the Medium security setting. Then click the Trusted Sources tab and ensure all the check boxes are selected. Click OK to save the changes. For the best results, ensure your Office program is closed before performing any of the following actions.
Save to Local File
Using this export option will retain all of the formatting that you may have done to the report in SAP, such
as moving columns, setting filters and sorts, etc., but will not retain any of the color or font formatting in
SAP, unless you choose the HTML option.
1. Click (Local file). The Save list in file... box will open.
2. Choose the desired file type in which to save the file.
u2022 unconverted - tab-delimited file not associated with a program
u2022 Spreadsheet - Microsoft Excel file
u2022 Rich text format - Microsoft Word file
u2022 HTML format - HTML file. This option adds some formatting, which will make it display
similiar to the report in SAP.
3. Click (Continue). The Transfer DAT to a Local File box will open.
4. The default location in which to save the file is your "SAPWorkDir" folder. Click (Search) to
choose another location.
5. Enter your file name at the end of the path and use the proper extension associated with the file
type you chose in step 2.
u2022 unconverted - none
u2022 Spreadsheet - .xls
u2022 Rich text format - .rtf
u2022 HTML format - .html
6. Click . The message "XXX Bytes transferred" will display, indicating that your file was
successful exported.
Exporting to Microsoft Excel
Using this export option will not retain any of the formatting that you applied in SAP, such as moving
columns, setting filters and sorts, etc. However, it does add a colored background and heading and
retains the proper column width.
1. Click (Spreadsheet...). An Information box will open advising you that any formatting you have
applied in SAP will not be exported with the data.
2. Click (Continue). The Export list object to XXL box will open.
3. Choose Table and click (Continue).
4. Click (Continue) again.
5. Excel will open with the report displayed. You can now format the report and save it as necessary.
6. In SAP, an Information box opens stating that you should save the data in the spreadsheet. As
soon as you click (Continue), the report in Excel closes, so be sure you have saved it if
necessary before doing so.
Opening Microsoft Excel within SAP
This export option will actually open Microsoft Excel within SAP, allowing you to use any of the formatting
or calculation features available in Excel along with the SAP tools. However, modifying the data in the
Excel spreadsheet within SAP will not change the actual data in SAP itself.
1. Click (Change layout...). The Change layout box will open.
2. Click the View tab.
3. Choose the Excel option.
4. Click on sap_om.xls in the Template list that displays on the right side of the box.
5. Click (Transfer).
6. Microsoft Excel will open in the window where the report data was displayed. You can now use all
of the options within Microsoft Excel and SAP to format and manipulate the data as necessary.
7. To save the file, follow the Excel menu path File > Save Copy As.
8. To close Excel, click (Change layout...), click the View tab, choose the Grid option, and click
(Transfer).
Exporting to Microsoft Word
Using this option will not retain any of the formatting that you applied in SAP, such as moving columns,
setting filters and sorts, etc., and it will export the data in a table within Word.
1. Click (Word Processing...). The Word Processor Settings box will open.
2. Choose the Create Document option and select Include Colors and/or Start MS Word if desired.
3. Click (Continue). The Transfer RTF to a Local File box will open.
4. The default location in which to save the file is your "SAPWorkDir" folder. Click (Search) to
choose another location.
5. Enter the file name at the end of the path and add the extension .rtf.
6. Click .
7. If you chose the option to have Word open, it will now open with the data displayed.
Thanks in advance
Sikanth.p

Similar Messages

  • How can i suppress columns in ALV ?? Will reward points.

    Hello Gurus, how can i suppress column in ALV when i`m using the transparent table:
    CALL METHOD grid->set_table_for_first_display
          EXPORTING
            i_structure_name = 'ZIANEXE'
            is_layout        = wa_layout
            is_variant       = wa_variant
            i_save           = 'U'
            IT_TOOLBAR_EXCLUDING = LT_EXCLUDE
          CHANGING
            it_outtab        = itab[]
            it_fieldcatalog  = fieldcat.
    Please help.

    in the fieldcatalog you are providing there is a field NO_OUT use this.
    Loop over internal table and check fieldname. If fieldname = column you want to hide, NO_OUT = 'X'.
    Edited by: Micky Oestreich on May 8, 2008 12:06 PM

  • How to Change the position of Column in ALV report

    Hi Follks,
        Is is possible to change the position of column in ALV report?.If yes then how?
        Basically my requirement is, that user want afacility where , he should be able to change the position
        of column aftre he runs the report.
        Eg: After running the report , user felt that column 5 should be at position 2 , in that case he should   
               be able to drag column 5 at position 2 and vice versa.
        Please help me, how to solve this issue.
        Note : I am using NW 7.0 SP 9
        Regards
        PG
    Edited by: PG on Apr 13, 2009 11:10 AM

    HI PG,
    do below whie filling the filed catlog
    wa_fieldcat-fieldname        = 'Field1".
    wa_fieldcat-COL_POS = '1',
    append wa_fieldcat to it_fieldcat.
    wa_fieldcat-fieldname         = 'Field2".
    wa_fieldcat-COL_POS = '2',
    wa_fieldcat-fieldname         = 'Field3".
    wa_fieldcat-COL_POS = '3',
    Thanks!

  • How to display subtotals in separate column in alv report?

    hi,
    I am displayed the subtotals  for QUantity field BDMNG in Reuse_alv_grid_display  in the same column.
    but I want to display subtotal in separate column.
    How to display subtotals in separate column in alv report?
    thanks&regards.
    samba.k

    Hi
    As far as i know you can't do this,the option you have is to create one more column (subtotal) and populate it by manual calculation at every subtotal (not alv subtotal but yours) .
    Best Regards
    Yossi

  • Mulitple Line column headers for a column in ALV using Web Dynpro for ABAP

    Hi WD4A Gurus,
           I have requirement to display the header name in multiple lines for a single column using ALV. How to achieve this, do I need to do some custom code? Please help me with sample code.
    Example:
    existing column name :
                Name   |  Date (mm/dd/yyyy) | Amount
    required column name:
                Name   |    Date               | Amount
    (mm/dd/yyyy)
    Thanks
    Ketan

    Displaying header in multiple lines is not possible in alv
    Regards
    Tamil

  • Hiding empty columns in ALV

    Hi all,
    I want to hide some columns in ALV which are empty on display when calling
    cl_gui_alv_grid->set_table_for_first_display
    That is to say the internaltable will contain empty columns.
    I know that using the "no_out" attribute of field catalog we can hide columns.
    But the question is how to find these columns which are empty - should I have to loop through the itab to find it out OR
    Can we set it in ALV LAYOUT or field catalog attributes so that it wont display empty columns.
    any help is appreciated....
    Thanks
    P
    Edited by: pazzuzu on Mar 12, 2010 5:14 PM

    Hi,
    If i understood your question correctly,
    The you can try this
    TYPE-POOLS:slis,abap.
    TYPES:BEGIN OF ty,
          f1 TYPE c,
          f2 TYPE c,
          f3 TYPE c,
          f4 TYPE c,
          END OF ty.
    DATA:it TYPE TABLE OF ty,
         wa TYPE ty,
         wa_field TYPE slis_fieldcat_alv,
         i_fieldcat TYPE TABLE OF slis_fieldcat_alv,
         i_details TYPE abap_compdescr_tab,
         wa_comp TYPE abap_compdescr,
         ref_descr TYPE REF TO cl_abap_structdescr,
         lv_field TYPE abap_compname.
    FIELD-SYMBOLS:<fs>,
                  <fs1>.
    ref_descr ?= cl_abap_typedescr=>describe_by_data( wa ).
    i_details[] = ref_descr->components[].
    wa-f1 = 'A'.
    wa-f3 = 'C'.
    APPEND wa TO it.
    wa-f1 = 'X'.
    wa-f3 = 'Y'.
    APPEND wa TO it.
    if it[] is not initial.
    LOOP AT i_details INTO wa_comp.
      ASSIGN wa_comp-name TO <fs>.
      SORT it BY (<fs>) DESCENDING.
      CONCATENATE 'WA' '-' <fs> INTO lv_field .
      ASSIGN (lv_field) TO <fs1>.
        READ TABLE it INTO wa INDEX 1 transporting (<fs>).
      IF sy-subrc = 0 AND <fs1> IS NOT INITIAL.
        wa_field-fieldname = wa_comp-name.
        wa_field-seltext_m = wa_comp-name.
        APPEND wa_field TO i_fieldcat.
      ENDIF.
    ENDLOOP.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program = sy-repid
        it_fieldcat        = i_fieldcat[]
      TABLES
        t_outtab           = it[].
    endif.

  • Dynamically assign value to a column in ALV LIST Display

    Hi all,
    How can I dynamically assign value to a column in ALV LIST Display without using classes and methods?
    Thanks,
    Ridhima

    Hi Vikranth,
    I am displaying one ALV list say with columns A and B.
    I have value in A but not in B. Now at runtime user selects one row, clicks on push button in application toolbar, then i have to display value in column B in the already displayed list.
    I searched and came to know it can be done with oops concept. but i am not using classes and methods.
    so how can i do this?
    Thanks,
    Ridhima.

  • SAPGUI JAVA 7.10 (OSX 10.5.1): cannot select multiple columns in ALV

    Hi,
    in sapgui java 7.10 (on mac osx 10.5.1) I cannot select multiple columns in ALV reports.
    I can do it only in some transactions (like SE16). But on all our custom reports (REUSE_ALV_GRID_DISPLAY) in does not work.
    Any hint?
    Many thanks,
    Lorenzo

    Hi Lorenzo,
    did you double check if selecting multiple columns works with SAP GUI for Windows in the same report?
    If yes, I suggest to file a bug report so we can do a remote logon to run your custom report.
    If not it might be because of REUSE_ALV_GRID_DISPLAY itself or your parameters calling REUSE_ALV_GRID_DISPLAY.
    Best regards
    Rolf-Martin

  • Maximum number of character we can print in a column uing ALV grid display

    Hi frnds,
    My requirment is to print 500 charcter data in a column using ALV grid display.
    Could any body tell me is it possible and the maximum character it can i print in a column using ALV grid dispaly.
    Regards,
    Sandipan

    Hi Sandipan,
    refer notes 857823, 910300 and 959775. All these say there is a limitation of 128 characters.
    857823 - ALV grid: Strings with a maximum of 128 characters
    Symptom
    Entries in cells of the type CHAR or string are truncated after 128
    characters in the SAP GUI.
    also refer,
    ALV Grid Control (cl_gui_alv_grid), function module (Full-screen) Grid
    (Reuse_alv_grid_display, SAPLSLVC_FULLSCREEN), SAPGUI, back end, front end
    Cause and Prerequisites
    The data table that is sent to the front end only allows character values
    with the length 128.
    Solution
    This is the standard system behavior and cannot be changed.

  • Hide a Column in ALV Grid Output

    Hi,
    I want to hide a column in ALV Grid Output through program.
    I am using   lwa_fieldcat-NO_OUT = 'X'. to hide the column in output but it is not working, column in not hided in the output.
    Kindly suggest.

    It should work..
    see the code :
    d_fieldcat_wa-fieldname = 'MATNR'.
    d_fieldcat_wa-seltext_l = 'material number'.
    d_fieldcat_wa-no_out = 'X'. * hide particular field
    append d_fieldcat_wa to d_fieldcat.
    clear d_fieldcat_wa.
    if not please paste your code here.
    Thanks
    Seshu

  • How to remove a column from alv table

    Hi All
    How to remove a specific column from alv table.?
    Thanks & Regards
    SUN

    For delete u can follow the above post..
    Fo making invisible :
    data m_col type ref to cl_salv_wd_column.
    m_col = alv_mode->IF_SALV_WD_COLUMN_SETTINGS->GET_COLUMN (' col1' ).
    m_col->SET_VISIBILITY( '01'  ).

  • Dynamic columns in ALV

    Dear Experts,
    I want to display dynamc columns in ALV, how it possible.
    venkey

    create dynamic internal table from field catalog i m sending u some sample code hope it will help u.
    FORM create_dynamic_itab.
    Create dynamic internal table and assign to FS
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = it_fieldcat[]
        IMPORTING
          ep_table        = dy_table.
      ASSIGN dy_table->* TO <dyn_table>.
    Create dynamic work area and assign to FS
      CREATE DATA dy_line LIKE LINE OF <dyn_table>.
      ASSIGN dy_line->* TO <dyn_wa>.
    ENDFORM.

  • Maximum Columns in ALV in Display and Hidden?

    Hi,
    Do anyone know how many number of columns that able to show in ALV report and also how many columns that ALV able to hide it?
    As did i search and I found:
    Re: columns in alv
    but some said max is 90 and other max 254 columns?
    Is there any document on this ALV function on max of columns in hide and displaying?
    Cheers,
    Aish

    hi,
    there is no such documnet.
    but the maximun no.of.columns that an alv report can show is 90.
    \[removed by moderator\]
    Reddy.
    Edited by: Jan Stallkamp on Sep 3, 2008 6:17 PM

  • Want to display more than 300 charcters in a column using ALV grid display

    Hi Guru's,
    I am trying to display more than 500 charcters in a column using alv grid display but it in the output it is showing only 128 characters. Can you help me to display all the characters in particular column Or is there any limitation in maximum of no of charcters for a column?
    Thanks,
    Radha.

    Hi Paurl,
    Define a work area say
    wa_layout type slis_layout_alv.
    then fill this work area as
    wa_layout-zebra = X
    wa_layout-colwidth_optimize = X.
    wa_layout-max_linesize = 300.
    Then in FM 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    is_layout = wa_layout
    etc.
    you provided this for the field which is displayed in alv grid will have more than 128 characters.
    from this code i want,how it refers to particular field.
    when i mentioned field catalog-OUTPUTLEN = '300'.
    it is not displayed the field morethan 128 characters.
    it only displays 128 characters.
    please provide me clear and breif information with suitable code.
    i am trying what your sending but it is not displayed more than 128 characters.
    if you don't mind please spend for me some time for this and
    give me clear and breif information with suitable code.
    Thanks & Regards,
    Radhakrishna.

  • Display multiple values in a column in ALV

    I need to display plant order number from AFPO and PLAF table in reference to Goods Recepient(WEMPF) field.
    now in final internal table I assign AFPO--> Plant number value to PLNUM column of ALV.
    how do I add value to same column based on WEMPF common value for both table and append value to PLNUM column below value fetched from AFPO table.
    code for getting value from PLAF table.
    SELECT WEMPF PLNUM
    FROM PLAF
    INTO TABLE IST_PLAF
    FOR ALL ENTRIES IN IST_AFPO
    WHERE PLNNO = IST_AFPO-WEMPF
    AND  ......
    Point is for some WEMPF field entried their will be number of entries in AFPO and PLAF table (in PLNUM column)  so how I do displaying entries from both tables in single row??

    Hi Ankitkumar Dineshkumar Gautam,
    SAP would say: "This is a consulting issue". I would say: What's your problem? Look at some samle programs.
    Regards,
    Clemens

Maybe you are looking for

  • How to set up the Time Capsule as an access point

    Hi there, I have home office and am having wifi-connectivity issues due to the layout of my home. I'm getting the electrician to set up ethernet outlets in various rooms in my house so that I can get wired connections in several rooms. What I want to

  • On XP, and FF 5.0.1, but NONE of the graphics on ANY website are visible. Even the ICONS are empty. Please help!

    This came about since the newest version of Yahoo mail is acting oddly in IE8. It works fine in Mozilla, EXCEPT for the graphics problem. And if I go to any other websites (not just yahoo), they all have similar problems.

  • Why cant I login in to Oracle Application?

    I have installed 11.5.4 on Win2k.. It showed some error about JSP, PHP.. but after restarting my PC it was solved. Now When I am trying to login using system admin.. it shows me error of :ORA-03113 end of communication... If anyone knows the solution

  • Revenue is spitted in 2 line items in FI document

    Hi. I have this FI document Itm PK  BusA Acct no.    Description                    Tx     Amount in   EUR    001 01  5100 3000425700                                     PY                 15,00  002 50  5100 7381000000                               

  • Exporting fireworks with button

    This may be a stupid question with a simple answer but bear with me. I have used Fireworks for many years but have not created a button rollover for a while and everything is different. I have Fireworks 7.0 (PC) I created a symbol for the button usin