Increase the row width - ALV

Hi Al,
When i try downloading the output in Excel thr ALV.
The row is decreased I want to increase the size of row depending upon the fields in Excel. Pl help me.

when i downloading into excel sheet.
the o/p is
date: 11/13/2006    dynamic o/p
matnr   mtart
38       descriptiom
i want to remove the date column i.e 1 colun in excel sheet.

Similar Messages

  • How to increase the row height of the table in the smartform

    Hi,
    Can any one say,
    How to increase the row height of the table in the smartform.
    It is presently show the row width very small, i want to increase the row with of the table in the smartform.
    Plase say how can we increase the row height in the smartform.

    Hi Ravi,
         In Smartforms , Select the Table and you can adjust the cell hieghts in OUTPUT OPTIONs TAB.
        Reward points if that Helps.
    Manish

  • Increasing the row height in crm 2011

    Hi,
         I am using crm 2011, I want increase the row height in a view, so that it can display the description in multiple rows.
    any information will be helpful.

    In views you can only specify column width and not row height.
    For columns that have large data, taking the mouse over the column will display the text in the tooltip.
    HTH 
    Sam 
    Dynamics CRM MVP |
    Inogic | http://inogic.blogspot.com|
    news at inogic dot com
    If this post answers your question, please click "Mark As Answer" on the post and "Mark as Helpful"

  • Can't figure out how to maximize the space on the page by increasing the column width

    Trouble with pages app:
    can't figure out how to maximize the space on the page by increasing the column width
    I have 3 columns and they have spaces btw them that I cannot close the gap on.

    Whatever the version, you can click on the gutter figure and edit it.
    Click once on the column and a second time on the Gutter measurement.
    Peter

  • How to increase the row and Column length of Bex query in EP Portal 7.3

    Dear All,
    Please let me know the process  to Increase the Rows and Columns  Size of Bex Query in Enterprise Portal  of SAP  7.3 .
    Please  let settings to increase rows up 10000 and column 100 in one page.
    Thanks
    Regards,
    Sai

    Dear All,
    Please find the attached screen shot.
    The report be open with 4 or 5 columns and 5 or 6 rows.
    So, please  let me know how to increase the length of the table.
    Do the needful for me to over come this issue.
    Thanks
    Regards,
    Sai.

  • How to increase the spool width in ECC 6.0

    Hai,
    I am executing Z report in back ground mode , finally the output can see in SP01 t.code,  in this output I am getting only max 10 columns  out of 20 columns of the report. How I can increase the output width in SP01 t.code to see all columns data .
                                                       OR
    Can u suggest any note which will help to me in ECC 6.0
    Thank u in advance.
    Ramesh

    Hi Ramesh Babu no reposts plz..
    How I can increase the output width in SP01 t.code to see all columns data

  • How to increase the rows of a Table control on ITS

    Hi,
    I'm trying to increase the number of rows to 20 on ITS but it always shows 2 rows per navigation. Although in the backend module pool there are 8 rows and the GV_SOS_LIST_CONTROL-LINES contains the total no of rows of the internal table. yet there are always 2 rows getting printed. This screen is in different function group and being called from some other function group i.e BBP_SC_UI_ITS. Are there any parameters that we have missed out to pass from BBP_SC_UI_ITS to our function group. Reply needed urgently!!!!!!!!!!!

    Hi,
    i tried increasing the rows on the browser by hard coding the counter and then the rows do increase but the records that are shown are still 2 per navigation. i doubt if it is a screen size constraint. the transaction in which i'm trying all this is bbpsc01.

  • How to Increase the Rows and Columns Size of Bex Query in Enterprise Portal  of SAP  7.3

    Dear All,
    Please let me know the process how to Increase the Rows and Columns  Size of Bex Query in Enterprise Portal  of SAP  7.3 .
    Currently I am getting Only  4 columns and 10 rows in One Page .And I am getting 1,2 etc tabs for both row and column. So i want to increase the column length more than 100  and row length more than 10000.
    Please suggest me a suitable solution to over come this issue.
    Please find the Below screen shot.
    Thanks
    Regards,
    Sai

    Dear All,
    Please find the attached screen shot.
    The report be open with 4 or 5 columns and 5 or 6 rows.
    So, please  let me know how to increase the length of the table.
    Do the needful for me to over come this issue.
    Thanks
    Regards,
    Sai.

  • To add/delete the rows in ALV report outpout

    Hi,
    Is there any way by which we can  add/delete the rows in ALV report output.
    Thanks
    Ankul

    Hi,
    Try out this way:
    data: i_modified TYPE STANDARD TABLE OF mara,"For getting modified rows
            w_modified TYPE mara.
    CASE e_ucomm.
          WHEN 'EDIT'.
          perform save_database.
          CALL METHOD ref_GRID->REFRESH_TABLE_DISPLAY.
        ENDCASE.
    FORM SAVE_DATABASE .
    data: i_selected_rows TYPE lvc_t_row,                "Selected Rows
          w_selected_rows TYPE lvc_s_row.
    * Getting the selected rows index
        CALL METHOD ref_grid->get_selected_rows
                    IMPORTING  et_index_rows = i_selected_rows.
    * Through the index capturing the values of selected rows
        LOOP AT i_selected_rows INTO w_selected_rows.
        READ TABLE it_tab INTO wa_it_tab INDEX w_selected_rows-index.
        IF sy-subrc EQ 0.
          MOVE-CORRESPONDING wa_it_tab TO w_modified.
          APPEND w_modified TO i_modified.
        ENDIF.
      ENDLOOP.
      MODIFY mara FROM TABLE i_modified.
    Thanks,
    Krishna

  • Deselect the rows of ALV

    Is there any method to deselect the rows of ALV which were initially selected.

    please cehck this code (just paste in the abap editor then observer output)
    <b>create one setpf status(for buttones)</b>
    type-pools:
      slis.
    data: fs_fieldcat type slis_t_fieldcat_alv.
    DATA: W_NAME LIKE SY-REPID.
    data: fs_layout type slis_layout_alv.
    DATA: BEGIN OF  FS_TAB,
            CARRID TYPE SPFLI-CARRID,
            CONNID TYPE SPFLI-CONNID,
          END OF FS_TAB.
    DATA: T_TAB LIKE STANDARD TABLE OF FS_TAB.
    DATA: BEGIN OF FS_TAB1,
            CARRID TYPE SFLIGHT-CARRID,
            CONNID TYPE SFLIGHT-CONNID,
            FLDATE TYPE SFLIGHT-FLDATE,
          END OF FS_TAB1.
    DATA: T_TAB1 LIKE STANDARD TABLE OF FS_TAB1.
    DATA: BEGIN OF FS_SPFLI,
            ROW(4),
            BOX(1),
            CARRID      TYPE SPFLI-CARRID,
            CONNID      TYPE SPFLI-CONNID,
            COUNTRYFR   TYPE SPFLI-COUNTRYFR,
            CITYFROM    TYPE SPFLI-CITYFROM,
            AIRPFROM    TYPE SPFLI-AIRPFROM,
            COUNTRYTO   TYPE SPFLI-COUNTRYTO,
            CITYTO      TYPE SPFLI-CITYTO,
            AIRPTO      TYPE SPFLI-AIRPTO,
            FLTIME      TYPE SPFLI-FLTIME,
            DEPTIME     TYPE SPFLI-DEPTIME,
            ARRTIME     TYPE SPFLI-ARRTIME,
            DISTANCE    TYPE SPFLI-DISTANCE,
            DISTID      TYPE SPFLI-DISTID,
            FLTYPE      TYPE SPFLI-FLTYPE,
            PERIOD      TYPE SPFLI-PERIOD,
          END OF FS_SPFLI.
    DATA: T_SPFLI LIKE
         STANDARD TABLE
               OF FS_SPFLI.
    DATA: BEGIN OF FS_SFLIGHT,
            ROW(4),
            BOX(1),
            CARRID     TYPE SFLIGHT-CARRID,
            CONNID     TYPE SFLIGHT-CONNID,
            FLDATE     TYPE SFLIGHT-FLDATE,
            PLANETYPE  TYPE SFLIGHT-PLANETYPE,
            SEATSMAX   TYPE SFLIGHT-SEATSMAX,
            SEATSOCC   TYPE SFLIGHT-SEATSOCC,
            PAYMENTSUM TYPE SFLIGHT-PAYMENTSUM,
            SEATSMAX_B TYPE SFLIGHT-SEATSMAX_B,
            SEATSOCC_B TYPE SFLIGHT-SEATSOCC_B,
            SEATSMAX_F TYPE SFLIGHT-SEATSMAX_F,
            SEATSOCC_F TYPE SFLIGHT-SEATSOCC_F,
          END OF FS_SFLIGHT.
    data: t_sflight like
           standard table
                 of fs_sflight.
    DATA: T_SBOOK LIKE
            SBOOK OCCURS 0 WITH HEADER LINE.
    FS_LAYOUT-BOX_FIELDNAME = 'BOX'.
    FS_LAYOUT-INFO_FIELDNAME = 'ROW'.
    SELECT *
       FROM SPFLI
       INTO CORRESPONDING FIELDS OF TABLE T_SPFLI.
    W_NAME = SY-REPID.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
       I_CALLBACK_PROGRAM             = W_NAME
       I_CALLBACK_PF_STATUS_SET       = 'DEMO'
       I_CALLBACK_USER_COMMAND        = 'SEC_LIST'
       I_STRUCTURE_NAME                = 'SPFLI'
       IS_LAYOUT                       = FS_LAYOUT
      IT_FIELDCAT                    =
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
      I_SAVE                         = ' '
      IS_VARIANT                     =
      IT_EVENTS                      = FS_EVENT
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
      IR_SALV_LIST_ADAPTER           =
      IT_EXCEPT_QINFO                =
      I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
      TABLES
        T_OUTTAB                       = T_SPFLI
    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.                                 " IF SY-SUBRC <> 0.
    FORM DEMO USING TAB TYPE SLIS_T_EXTAB.
    <b> SET PF-STATUS 'STATUS' .</b>
    ENDFORM.                               " FORM DEMO
    FORM SEC_LIST USING UCOMM LIKE SY-UCOMM
                           SELFIELD TYPE SLIS_SELFIELD.
    READ TABLE T_SPFLI INDEX SELFIELD-TABINDEX INTO FS_SPFLI.
    LOOP AT T_SPFLI INTO FS_SPFLI.
      IF FS_SPFLI-BOX = 'X'.
        MOVE FS_SPFLI-CARRID TO FS_TAB-CARRID.
        MOVE FS_SPFLI-CONNID TO FS_TAB-CONNID.
        APPEND  FS_TAB TO T_TAB.
        FS_SPFLI-ROW = 'C610'.
        FS_SPFLI-BOX = '0'.
        MODIFY T_SPFLI  FROM FS_SPFLI TRANSPORTING ROW BOX.
      ENDIF.                               " IF FS_SPFLI-BOX = 'X'.
    ENDLOOP.                               " LOOP AT T_SPFLI
    IF T_TAB IS INITIAL.
    MESSAGE 'POSITION ON  CHECK BOX ' TYPE 'E'.
    ENDIF.
    SELFIELD-REFRESH = 'X'.
    select carrid
           connid
           fldate
           planetype
           seatsmax
           seatsocc
           seatsmax_b
           seatsocc_b
           seatsmax_f
           seatsocc_f
           paymentsum "up to 100 rows
      from sflight
      into corresponding fields of table t_sflight
       FOR ALL ENTRIES IN T_TAB
    WHERE CARRID EQ T_TAB-CARRID
       AND CONNID EQ T_TAB-CONNID.
    REFRESH T_TAB.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
       I_CALLBACK_PROGRAM              =  W_NAME
       I_CALLBACK_PF_STATUS_SET        = 'DEMO2'
       I_CALLBACK_USER_COMMAND         = 'THIRD_LIST'
       I_STRUCTURE_NAME                = 'SFLIGHT'
       IS_LAYOUT                       =  fs_layout
      IT_FIELDCAT                     = fs_fieldcat
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
      I_SAVE                         = ' '
      IS_VARIANT                     =
      IT_EVENTS                      =
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
      IR_SALV_LIST_ADAPTER           =
      IT_EXCEPT_QINFO                =
      I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
      TABLES
        T_OUTTAB                       = t_sflight
    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.                                 " IF SY-SUBRC <> 0.
    ENDFORM.                               " LIST_SECOND
    FORM DEMO2 USING TAB TYPE SLIS_T_EXTAB.
    SET PF-STATUS 'STATUS1' .
    ENDFORM.                               " DEMO2
    FORM THIRD_LIST USING UCOMM1 LIKE SY-UCOMM
                           SELFIELD TYPE SLIS_SELFIELD.
    READ TABLE T_SFLIGHT INDEX SELFIELD-TABINDEX INTO FS_SFLIGHT.
    LOOP AT T_SFLIGHT INTO FS_SFLIGHT.
    <b>  IF FS_SFLIGHT-BOX = 'X'.</b>
        MOVE FS_SFLIGHT-CARRID TO FS_TAB1-CARRID.
        MOVE FS_SFLIGHT-CONNID TO FS_TAB1-CONNID.
        MOVE FS_SFLIGHT-FLDATE TO FS_TAB1-FLDATE.
        APPEND  FS_TAB1 TO T_TAB1.
        FS_SFLIGHT-ROW = 'C610'.
    <b>    FS_SFLIGHT-BOX = '0'.</b>
      <b>  MODIFY T_SFLIGHT  FROM FS_SFLIGHT TRANSPORTING ROW BOX.</b>
      ENDIF.                               " IF FS_SFLIGHT-BOX = 'X'.
    ENDLOOP.                               " LOOP AT T_SFLIGHT...
    IF T_TAB1 IS INITIAL.
    MESSAGE 'POSITION ON  CHECK BOX ' TYPE 'E'.
    ENDIF.
    SELFIELD-REFRESH = 'X'.
    SELECT *
       FROM SBOOK
       INTO CORRESPONDING FIELDS OF TABLE  T_SBOOK
        FOR ALL ENTRIES IN T_TAB1
      WHERE CARRID EQ T_TAB1-CARRID
        AND CONNID EQ T_TAB1-CONNID
        AND FLDATE EQ T_TAB1-FLDATE.
    REFRESH T_TAB1.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
      I_CALLBACK_PROGRAM             = ' '
      I_CALLBACK_PF_STATUS_SET       = ' '
      I_CALLBACK_USER_COMMAND        = ' '
       I_STRUCTURE_NAME               = 'SBOOK'
      IS_LAYOUT                      = FS_LAYOUT
      IT_FIELDCAT                    =
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
      I_SAVE                         = ' '
      IS_VARIANT                     =
      IT_EVENTS                      =
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
      IR_SALV_LIST_ADAPTER           =
      IT_EXCEPT_QINFO                =
      I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
      TABLES
        T_OUTTAB                       = T_SBOOK
    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.                                 " IF SY-SUBRC <> 0.

  • How to show the subtotal value of a field without showing the rows in ALV?

    Dear All,
    In my ALV I am showing the sub total value of a calculated field. But the requirement is, only the category and sub total value will be shown in the ALV not the all rows, i,e
    CATEGORY     VALUE
      Z01       186,000 (the subtotal value)
    Here, the rows whose values are calculated to 186,000 will not appear. Plz give some idea.
    With regards,
    Rosaline.

    Hi
    Using the fieldcatalog, you can achieve this.
             no_out(1)      type c,        " (O)blig.(X)no out
    use this in fieldcatelog. u can achieve this.
    All the best
    Edited by: Sudeesh Ravindran on Mar 23, 2011 9:22 AM

  • How to merge the Rows in ALV table?

    Hi All,
    I want to merge the Rows in my ALV table(SALV_WD_TABLE). Is it possible?
    Regards,
    Yugesh A.

    Yogi1729 wrote:
    Hi All,
    how to Restrict the Row in the Pivot table.
    My Requirement is like this.
    i have to show the top 10 values in the pivot table but My report is show all the values.
    how can we achieve this.
    any quick solution for this appreciated.
    Thanks,
    Yogi.You can't really restrict the rows in a pivot table, but you can do this:
    http://oraclebizint.wordpress.com/2008/01/17/oracle-bi-101332-pagination-in-pivot-tables/

  • Auto increase the rows of Input Text

    JDev 11.1.1.5.0 BPM SOA
    Need to automatically increase the number of rows of  an input text component according to the data. If the data is pretty large, display it in multiple rows or if it is small, display it in a single row.

    You can try to put a EL on the rows attribute which points to a bean method where you calculate the number of rows you want to show:
        public Integer getRows() {
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
            AttributeBinding attr = (AttributeBinding)bindings.getControlBinding("myString1");
            String str = (String)attr.getInputValue();
            if (str == null)
                return 1;
            int len = str.length();
            if (len <= 10) {
                return 2;
            } else if (len <= 20)
                return 3;
            else
                return 4;
    and on the page:
                  <af:inputText label="Label 3" id="it7"
                                value="#{bindings.myString1.inputValue}"
                                rows="#{Page1Bean.rows}" autoSubmit="true"/>
    if the bean is registered under Page1Bean and the inputText vaule property is bound to "myString1".
    Timo
    Message was edited by: TimoHahn

  • Increase the field width of multiselect control in prompt

    Can we increase the width of a multiselect control in a dashboard prompt?
    Please let me know.
    Thanks in Advance

    Satyabrat Acharya
    I didn't understand you reply. Where this option in OBIEE?

  • Not able to increase the row in xfce workspace after uninstalling comp

    Hi,
    I have uninstalled and removed the compiz package from the system. But now I am unable to increase the number of work space row in the panel. It is currently showing only one work space. How can I resolve this ?

    How many workspaces are set in Settings / Workspaces?  If it is set to 1 increase it to 4 or however many you want to have.

Maybe you are looking for

  • Remote for iPod does not work for MENU

    I have just bought a 30GB iPod and the A/V connection Kit which includes a Remote. The menu function of the Remote has no effect on the iPod. One reply to such question stated, quote ... it does not work ... it is meant for the front row software. In

  • How to change from SLIM to KDM?

    Hello, I'm using the MATE desktop, OpenBox as window manager and SLIM for login. I'm starting to feel tired of not being able to change between various desktops without closing the main one, I mean, with OpenSUSE Ctrl+Alt+F1 to F6 are terminal ttys (

  • ESS Leave Request Edit

    Hi All, We are working on ECC 5.0 and ENT portal 6.0 User has applied the leave in ESS, which is yet not approved. Business want this leave request to be editable before it gets approved. Please guide me on this, how this can be done??? Regards, Aman

  • D/L Greys seaon 10 epis 24 - and all I get is volumn no picture - how come?  How do i fix this or who do i call?

    I paid and d/l Greys anatomy sea 10 epis 24 and all i get is volume - for some reason i dont have a picture - I have not changed anything on my puter.  The video is there - there just is no pic - how do i fix this or who do i call to fix it?

  • Please Help: Intel Pro 1000 NIC not detected by Solaris 10

    Hi there, I just installed Solaris 10 in my Dell Dimension 8400 w/ an Intel Pro 1000 Gigabit on-board NIC. However, the network doesn't work. I checked "ifconfig -a" and only lo0 showed up. Anybody can give me any instruction to make it work? I guess