<?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/3039113#M719168</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    I placed one REFERSH Button in ALV application tool bar, when Click on this button then the list should reexecute itself with previous selection screen values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please suggest me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudhakar Y.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Oct 2007 05:51:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-26T05:51:30Z</dc:date>
    <item>
      <title>REFRESH ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/3039113#M719168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    I placed one REFERSH Button in ALV application tool bar, when Click on this button then the list should reexecute itself with previous selection screen values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please suggest me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudhakar Y.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 05:51:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/3039113#M719168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T05:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: REFRESH ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/3039114#M719169</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;just check dis out:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ALV, to refresh the table you have to call the method "refresh_table_display".&lt;/P&gt;&lt;P&gt;It has the syntax very similar to creating the table.&lt;/P&gt;&lt;P&gt;It has two parameters. In the first one, you can mention if you want to refresh only the data (the icons are not refreshed)&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;if you want to refresh only the icons around the grid (the data is not refreshed - this option is mostly not used in day to day applications).&lt;/P&gt;&lt;P&gt;the synatx is :-&lt;/P&gt;&lt;P&gt;call method grid (name of grid )-&amp;gt;refresh_table_display&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;IS_STABLE = &amp;lt;STRUCT OF TYPE LVC_S_STBL&amp;gt; (THIS IS FOR DATA REFRESHING)&lt;/P&gt;&lt;P&gt;I_SOFT_REFRESH = &amp;lt;VARIABLE OF CHAR 01&amp;gt; (THIS IS FOR ICON REFRESHING).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refresh grid display&lt;/P&gt;&lt;P&gt;Use the grid method REFRESH_TABLE_DISPLAY&lt;/P&gt;&lt;P&gt;Sample code:-&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/sap/abap/controls/alvgrid.htm#Refresh%20grid%20display" target="test_blank"&gt;http://www.erpgenie.com/sap/abap/controls/alvgrid.htm#Refresh%20grid%20display&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TO refresh the ALV Lsit :&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/abap/auto-refresh-alv-list.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/abap/auto-refresh-alv-list.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALV :&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;i_callback_program = SY-REPID&lt;/P&gt;&lt;P&gt;i_callback_pf_status_set = 'SET_PF_STATUS'&lt;/P&gt;&lt;P&gt;i_callback_user_command = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;i_structure_name = 'ITAB_DISPLAY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM user_command USING r_ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE r_ucomm.&lt;/P&gt;&lt;P&gt;WHEN '&amp;amp;DEALL'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Message for reselection of lines&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IF itab_display-kalab LE 0.&lt;/P&gt;&lt;P&gt;MESSAGE i101.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To refresh...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rs_selfield-refresh = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzzz if u find it useful,den give ponts also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ric.s&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 06:02:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv/m-p/3039114#M719169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T06:02:17Z</dc:date>
    </item>
  </channel>
</rss>

