<?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 REFRESH ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/7125166#M1511649</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my alv has a editable checkbox and field... i also have a customized delete button in ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i press delete i wanted to delete delete the items in which the checkbox i marked, but my internal table is not updated, can you advice me how to refresh the ALV grid?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using FM reuse alv grid display..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks -&lt;/P&gt;&lt;P&gt;blue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jul 2010 04:25:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-28T04:25:36Z</dc:date>
    <item>
      <title>REFRESH ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/7125166#M1511649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my alv has a editable checkbox and field... i also have a customized delete button in ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i press delete i wanted to delete delete the items in which the checkbox i marked, but my internal table is not updated, can you advice me how to refresh the ALV grid?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using FM reuse alv grid display..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks -&lt;/P&gt;&lt;P&gt;blue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jul 2010 04:25:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/7125166#M1511649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-28T04:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: REFRESH ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/7125167#M1511650</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;&lt;/P&gt;&lt;P&gt;try to use this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f_user_command USING p_ucomm    LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                          p_selfield TYPE slis_selfield .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   WHEN '&amp;amp;EXP'.&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;      p_selfield-refresh = 'X'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jul 2010 04:40:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/7125167#M1511650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-28T04:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: REFRESH ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/7125168#M1511651</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;In your form for User Command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA ref1 TYPE REF TO cl_gui_alv_grid.
      CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
        IMPORTING
          e_grid = ref1.
      CALL METHOD ref1-&amp;gt;check_changed_data.
 
Case 'User-Command'.
 
   ......
Endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;or 

data : i_grid_settings type lvc_s_glay.
 
 "Calling ALV grid for display
 
 call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
      i_callback_program             = sy-repid
      i_callback_user_command   = i_callback_user_command
      i_grid_settings                    = i_grid_settings
      is_layout                            = is_layout
      it_fieldcat                           = it_fieldcat
    tables
      t_outtab                             = it_final
 
 
"for call back values from editable grid cells
  i_grid_settings-edt_cll_cb = 'X'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;May it helps you.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;DS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jul 2010 04:56:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/7125168#M1511651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-28T04:56:36Z</dc:date>
    </item>
  </channel>
</rss>

