<?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: Refresh Alv Grid in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv-grid/m-p/7388838#M1545096</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have solved myself.&lt;/P&gt;&lt;P&gt;eg: Container : cust_cont.&lt;/P&gt;&lt;P&gt;Solution: *--&amp;gt; Check for the existence of the grid&lt;/P&gt;&lt;P&gt;if cust_cont is not bound.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;*---&amp;gt;Clear the Contents of Grid and Container&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD  CL_GUI_ALV_GRID&amp;gt;refresh_table_display&lt;/P&gt;&lt;P&gt;    CALL METHOD CL_GUI_ALV_GRID-&amp;gt;free.&lt;/P&gt;&lt;P&gt;    CALL METHOD cust_cont -&amp;gt;free.&lt;/P&gt;&lt;P&gt;    CALL METHOD cl_gui_cfw=&amp;gt;flush.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;free : CL_GUI_ALV_GRID, cust_cont .&lt;/P&gt;&lt;P&gt;do the normal process&lt;/P&gt;&lt;P&gt;create custom container&lt;/P&gt;&lt;P&gt;create object&lt;/P&gt;&lt;P&gt;build fieldcatlog&lt;/P&gt;&lt;P&gt;call set table for display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It wil resolve the problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Oct 2010 06:11:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-21T06:11:50Z</dc:date>
    <item>
      <title>Refresh Alv Grid</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv-grid/m-p/7388837#M1545095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using module pool program  using container to display the screen 1.&lt;/P&gt;&lt;P&gt;In the screen 1 only one field is editable where user inputs the value like 'A' or 'B' or 'C' it the save based on the few checks&lt;/P&gt;&lt;P&gt;again popup screen 2 is called with values 'A' or "B' is shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When User runs the first time the report using T-code and do some changes in Screen 1 like "A' those are reflecting to Screen 2 properly; when user does not got out of the loop in the list screen 1 again changed the value to 'B" those chnages are not reflected on the screen 2.&lt;/P&gt;&lt;P&gt;But the internal table values are modified correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the flush and refresh_table_display also in screen 2 still its display the same value of intital changes of screen 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know your suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;YERP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Oct 2010 03:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv-grid/m-p/7388837#M1545095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-21T03:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Refresh Alv Grid</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv-grid/m-p/7388838#M1545096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have solved myself.&lt;/P&gt;&lt;P&gt;eg: Container : cust_cont.&lt;/P&gt;&lt;P&gt;Solution: *--&amp;gt; Check for the existence of the grid&lt;/P&gt;&lt;P&gt;if cust_cont is not bound.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;*---&amp;gt;Clear the Contents of Grid and Container&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD  CL_GUI_ALV_GRID&amp;gt;refresh_table_display&lt;/P&gt;&lt;P&gt;    CALL METHOD CL_GUI_ALV_GRID-&amp;gt;free.&lt;/P&gt;&lt;P&gt;    CALL METHOD cust_cont -&amp;gt;free.&lt;/P&gt;&lt;P&gt;    CALL METHOD cl_gui_cfw=&amp;gt;flush.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;free : CL_GUI_ALV_GRID, cust_cont .&lt;/P&gt;&lt;P&gt;do the normal process&lt;/P&gt;&lt;P&gt;create custom container&lt;/P&gt;&lt;P&gt;create object&lt;/P&gt;&lt;P&gt;build fieldcatlog&lt;/P&gt;&lt;P&gt;call set table for display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It wil resolve the problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Oct 2010 06:11:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-alv-grid/m-p/7388838#M1545096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-21T06:11:50Z</dc:date>
    </item>
  </channel>
</rss>

