<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Alv Sort and Grouping in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582226#M1080937</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I changed it as it, but it still shows all rows... I am using icons and colors in the GT_OUTTAB (deep structure). could this affect the outcome?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Sep 2008 12:42:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-29T12:42:09Z</dc:date>
    <item>
      <title>Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582224#M1080935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;I have made an ALV report where I am sorting on the second column which is a field called 'SUPPLIER_ID'. &lt;/P&gt;&lt;P&gt;I am to group the supplier_id, so that only the first row shows the supplier id, and those rows with the same id should not be shown. But am having trouble with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check  Supplier ID     field2  field3&lt;/P&gt;&lt;P&gt;           xxxxx            xxx    xxx&lt;/P&gt;&lt;P&gt;                                xxx   xxx&lt;/P&gt;&lt;P&gt;                                xxx   xxx&lt;/P&gt;&lt;P&gt;          xxxxxx           xxx    xxx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the steps I do in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I build the fieldcatalogue&lt;/P&gt;&lt;P&gt;2. then I select the data &lt;/P&gt;&lt;P&gt;3 . set the sort order &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     DATA: x_sort TYPE slis_sortinfo_alv.&lt;/P&gt;&lt;P&gt;     CLEAR x_sort.&lt;/P&gt;&lt;P&gt;     x_sort-fieldname =  'SUPPLIER_ID'.&lt;/P&gt;&lt;P&gt;     x_sort-tabname   = 'GT_OUTTAB'.&lt;/P&gt;&lt;P&gt;     x_sort-up = 'X'&lt;/P&gt;&lt;P&gt;     x_sort-spos = 2.&lt;/P&gt;&lt;P&gt;     APPEND x_sort TO t_sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Then I call the Reuse function.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     IS_LAYOUT                         = ls_layout&lt;/P&gt;&lt;P&gt;     IT_FIELDCAT                       = t_fieldcat&lt;/P&gt;&lt;P&gt;     i_callback_pf_status_set       = l_status&lt;/P&gt;&lt;P&gt;     i_callback_program               = l_repid&lt;/P&gt;&lt;P&gt;     it_sort                                  = x_sort&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;      T_OUTTAB                          = gt_outtab&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     PROGRAM_ERROR                     = 1&lt;/P&gt;&lt;P&gt;     OTHERS                            = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; But all the rows show the supplier ID, what am I doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Baljinder Singh Gosal on Sep 29, 2008 2:36 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:31:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582224#M1080935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T12:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582225#M1080936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;correction in the code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: x_sort TYPE slis_sortinfo_alv.
CLEAR x_sort.
x_sort-fieldname = 'SUPPLIER_ID'.
x_sort-tabname = 'GT_OUTTAB'.
x_sort-up = 'X'
x_sort-spos = 1.  " it should be 1 since this is only field you are
"sorting
APPEND x_sort TO t_sort.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
IS_LAYOUT = ls_layout
IT_FIELDCAT = t_fieldcat
i_callback_pf_status_set = l_status
i_callback_program = l_repid
it_sort = t_sort         " not x_sort
TABLES
T_OUTTAB = gt_outtab
EXCEPTIONS
PROGRAM_ERROR = 1
OTHERS = 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:37:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582225#M1080936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T12:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582226#M1080937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I changed it as it, but it still shows all rows... I am using icons and colors in the GT_OUTTAB (deep structure). could this affect the outcome?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:42:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582226#M1080937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T12:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582227#M1080938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is working fine for me, i tried it for Deep structures also. post your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:51:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582227#M1080938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T12:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582228#M1080939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once ur final table has data... then sort it and using control break staments try to populate final table in ur required format and pass it to grid_display.. instead of using sort_info structure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this should help u....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds.,&lt;/P&gt;&lt;P&gt;subash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:55:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582228#M1080939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T12:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582229#M1080940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is the working example..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ztest_alv_color.

TYPE-POOLS: slis.

DATA: BEGIN OF it_flight OCCURS 0,
       carrid  LIKE sflight-carrid,
       connid   LIKE sflight-connid,
       fldate   LIKE sflight-fldate,
       seatsmax LIKE sflight-seatsmax,
       seatsocc LIKE sflight-seatsocc,
       price    LIKE sflight-price,
       currency LIKE sflight-currency,
       cellcolors TYPE lvc_t_scol,
      END OF it_flight.
DATA: it_sort TYPE  slis_t_sortinfo_alv,
      wa_sort LIKE LINE OF it_sort.

DATA: it_fieldcat TYPE  slis_t_fieldcat_alv,
      layout TYPE  slis_layout_alv,
       ls_cellcolor TYPE lvc_s_scol .

CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
  EXPORTING
    i_program_name         = sy-repid
    i_internal_tabname     = 'IT_FLIGHT'
    i_inclname             = sy-repid
  CHANGING
    ct_fieldcat            = it_fieldcat
  EXCEPTIONS
    inconsistent_interface = 1
    program_error          = 2.

SELECT  carrid
       connid
       fldate
       seatsmax
       seatsocc
       price
       currency
 FROM sflight
 INTO CORRESPONDING FIELDS OF TABLE it_flight
 UP TO 20 ROWS.
DATA: col TYPE lvc_s_scol,
      coltab TYPE lvc_t_scol,
color TYPE lvc_s_colo.

LOOP AT it_flight.

  IF it_flight-seatsocc NE it_flight-seatsmax.
    IF it_flight-seatsocc GT 300.
      ls_cellcolor-fname = 'SEATSOCC' .
      ls_cellcolor-color-col = '3' .
      ls_cellcolor-color-int = '1' .
      APPEND ls_cellcolor TO it_flight-cellcolors .
    ELSE.
      ls_cellcolor-fname = 'SEATSOCC' .
      ls_cellcolor-color-col = '7' .
      ls_cellcolor-color-int = '1' .
      APPEND ls_cellcolor TO it_flight-cellcolors .
    ENDIF.
  ENDIF.
  MODIFY  it_flight.
ENDLOOP.

layout-coltab_fieldname = 'CELLCOLORS'.
wa_sort-fieldname = 'CONNID'.
wa_sort-up = 'X'.
APPEND wa_sort TO it_sort.

CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
    i_callback_program = sy-repid
    is_layout          = layout
    it_sort            = it_sort
    it_fieldcat        = it_fieldcat
  TABLES
    t_outtab           = it_flight
  EXCEPTIONS
    program_error      = 1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:56:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582229#M1080940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T12:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582230#M1080941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;types: begin of gs_outtab.&lt;/P&gt;&lt;P&gt;types:&lt;/P&gt;&lt;P&gt;         SUPPLIER             TYPE ZSAM_LAC-SUPPLIER,&lt;/P&gt;&lt;P&gt;         SUPPLIER_ID        TYPE ZSAM_LAC-SUPPLIER_ID,&lt;/P&gt;&lt;P&gt;         SPEND                 TYPE ZSAM_LAC-SPEND,&lt;/P&gt;&lt;P&gt;         lights               type char1,&lt;/P&gt;&lt;P&gt;         color                type i,&lt;/P&gt;&lt;P&gt;         tabcol               type lvc_t_scol,&lt;/P&gt;&lt;P&gt;         id                   type char25,&lt;/P&gt;&lt;P&gt;         name                 type icon-name,&lt;/P&gt;&lt;P&gt;         symbol               type icon-id,&lt;/P&gt;&lt;P&gt;end   of gs_outtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: gt_outtab type standard table of gs_outtab,&lt;/P&gt;&lt;P&gt;      wa_outtab  type gs_outtab.&lt;/P&gt;&lt;P&gt;data: gr_container type ref to cl_gui_custom_container,&lt;/P&gt;&lt;P&gt;      gs_layout type lvc_s_layo,&lt;/P&gt;&lt;P&gt;      gt_fieldcat type lvc_t_fcat.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;perform display.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form display.&lt;/P&gt;&lt;P&gt;    data: ls_layout   type slis_layout_alv,&lt;/P&gt;&lt;P&gt;          t_fieldcat  TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;           x_sort     TYPE slis_sortinfo_alv&lt;/P&gt;&lt;P&gt;          t_sort      TYPE slis_t_sortinfo_alv,&lt;/P&gt;&lt;P&gt;          l_status    TYPE slis_formname,&lt;/P&gt;&lt;P&gt;          l_repid     TYPE syrepid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     REFRESH t_sort.&lt;/P&gt;&lt;P&gt;     REFRESH t_fieldcat.&lt;/P&gt;&lt;P&gt;     g_pf_status = 'SALV_STANDARD'.&lt;/P&gt;&lt;P&gt;     l_status = 'SET_PF_STATUS'.&lt;/P&gt;&lt;P&gt;     l_repid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Layout&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     ls_layout-lights_tabname   = '1'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ls_layout-lights_fieldname = 'LIGHTS'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     ls_layout-coltab_fieldname =  'TABCOL'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ls_layout-zebra = 'X'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     PERFORM set_fieldcat2 USING:&lt;/P&gt;&lt;P&gt;*pos fieldname          ref_field           ref_tab   len   noout  text_m   text_l   txt_s    reptxt  ddic  hotsp icon  chckbx edit  dosum  inttype symbol   tech     group fieldcat&lt;/P&gt;&lt;P&gt;1   'CHECK'            'XFELD'              space     space space 'Select' 'Select' 'Sel'    'Select' space space space 'X'   'X'    space   space     space   space  space   t_fieldcat,&lt;/P&gt;&lt;P&gt;2   'SUPPLIER'         'SUPPLIER'          'ZSAM_LAC' space space  text-hl5 text-hl5 text-hl5 space   space space space  space space space   space     space   space  space   t_fieldcat,&lt;/P&gt;&lt;P&gt;3   'SUPPLIER_ID'      'SUPPLIER_ID'       'ZSAM_LAC' space space  text-hl4 text-hl4 text-hl4 space   space space space  space space space   space     space   space  'A'   t_fieldcat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  perform get_data&lt;/P&gt;&lt;P&gt;  perform set_icons.&lt;/P&gt;&lt;P&gt;  perform set_order USING 'ORKLA_COMP_NAME' 'GT_OUTTAB' 'X' space space t_sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR x_sort.&lt;/P&gt;&lt;P&gt;  x_sort-fieldname = 'SUPPLIER_ID'.&lt;/P&gt;&lt;P&gt;  x_sort-tabname   = 'GT_OUTTAB'.&lt;/P&gt;&lt;P&gt;  x_sort-up = 'X'.&lt;/P&gt;&lt;P&gt;  x_sort-spos = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND x_sort TO t_sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     IS_LAYOUT                         = ls_layout&lt;/P&gt;&lt;P&gt;     IT_FIELDCAT                       = t_fieldcat&lt;/P&gt;&lt;P&gt;     IT_EXCEPT_QINFO                   = gt_exc&lt;/P&gt;&lt;P&gt;     i_callback_pf_status_set          = l_status&lt;/P&gt;&lt;P&gt;     i_callback_program                = l_repid&lt;/P&gt;&lt;P&gt;     it_sort                           = t_sort&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;      T_OUTTAB                          = gt_outtab&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     PROGRAM_ERROR                     = 1&lt;/P&gt;&lt;P&gt;     OTHERS                            = 2&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " display_fullscreen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 13:01:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582230#M1080941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T13:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582231#M1080942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have Checkbox in the output of alv...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 13:38:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582231#M1080942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T13:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582232#M1080943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, the first column&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 13:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582232#M1080943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T13:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582233#M1080944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If so check this wiki contribution.&lt;/P&gt;&lt;P&gt;&lt;A href="https://wiki.sdn.sap.com/wiki/display/Snippets/ABAP-" target="test_blank"&gt;https://wiki.sdn.sap.com/wiki/display/Snippets/ABAP-&lt;/A&gt;&lt;EM&gt;ALV&lt;/EM&gt;Report&lt;EM&gt;Group&lt;/EM&gt;Functionality&lt;EM&gt;with&lt;/EM&gt;Checkbox&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 13:43:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582233#M1080944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T13:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582234#M1080945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahh, so that was the problem, it works when i take away the checkbox... Is it possible to have both? Grouping and checkbox?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 13:45:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582234#M1080945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T13:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: Alv Sort and Grouping</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582235#M1080946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx alot friend:)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 13:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-sort-and-grouping/m-p/4582235#M1080946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T13:52:19Z</dc:date>
    </item>
  </channel>
</rss>

