<?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 screen . in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403493#M194931</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;1. Try "Free".&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    IF DATA_GRID IS NOT INITIAL.
      CALL METHOD DATA_GRID-&amp;gt;free
        EXCEPTIONS cntl_error        = 1
                   cntl_system_error = 2.
      FREE DATA_GRID. "** May be you forgot this statement**"
    ENDIF. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If "Free" still doesn't work, Try "REFRESH".&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  IF DATA_GRID IS NOT INITIAL.
    REFRESH &amp;lt;dyn_table&amp;gt;.
    CALL METHOD DATA_GRID-&amp;gt;refresh_table_display.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Jun 2006 07:29:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-14T07:29:11Z</dc:date>
    <item>
      <title>refresh screen .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403487#M194925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got a problem with ALV Grid . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here's the case : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i use an ALV grid inside tabstrip control . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i going to first display the screen everything goes OK , but when i click on BACK button which says "leave to screen 0 " and afterwards comes again to the screen with the ALV Grid the remain as is and the screen shows non relevant data inside the grid . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i leave to screen 0 i refresh the whole data of ALV Object by writing the free command . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'll be thankfull if you guys have any idea about to olve this issue . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2006 07:08:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403487#M194925</guid>
      <dc:creator>herzelhaimharel_gilor</dc:creator>
      <dc:date>2006-06-14T07:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screen .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403488#M194926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Herzel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see same example if you can go through the below link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/controls/alvgrid.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/controls/alvgrid.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;TM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2006 07:15:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403488#M194926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-14T07:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screen .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403489#M194927</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;  You have to refresh the display of your ALV grid.  You can use CL_SALV_TABLE-&amp;gt;REFRESH( ) method if you are using CL_SALV_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you change the settings for your output table, you may need to refresh the display. To do this, use the method REFRESH. To speed up the process, however, you do not absolutely have to rebuild the entire output table. You are able to choose between the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SOFT&lt;/P&gt;&lt;P&gt;This is the quickest way to refresh the display. You use it, for example, when you are only changing the sequence or selection of columns, but the number and sequence of the rows displayed remains the same.&lt;/P&gt;&lt;P&gt;FULL&lt;/P&gt;&lt;P&gt;You use this variant when you have also changed the metadata, forexample, when you have applied different sorting or another filter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters&lt;/P&gt;&lt;P&gt;S_STABLE&lt;/P&gt;&lt;P&gt;Optional&lt;/P&gt;&lt;P&gt;Rows and/or column position stay the same; Type LVC_S_STBL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH_MODE&lt;/P&gt;&lt;P&gt;Optional&lt;/P&gt;&lt;P&gt;Depth of refresh; Type SALV_DE_CONSTANT (IF_SALV_C_REFRESH)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Refresh Constant Value &lt;/P&gt;&lt;P&gt; No refresh NONE 0 &lt;/P&gt;&lt;P&gt; Minimal refresh SOFT 1 &lt;/P&gt;&lt;P&gt; Complete refresh FULL 2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Bharat Kumar Reddy.V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2006 07:16:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403489#M194927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-14T07:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screen .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403490#M194928</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;did you call this method to refresh the grid.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; CALL METHOD G_GRID-&amp;gt;REFRESH_TABLE_DISPLAY
    EXCEPTIONS
      FINISHED = 1
      OTHERS   = 2.
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and in your BACK button&lt;/P&gt;&lt;P&gt;before calling leave to screen 0.&lt;/P&gt;&lt;P&gt;do this also..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;when 'BACK'.
&amp;lt;b&amp;gt;  CALL METHOD G_GRID1-&amp;gt;FREE.
  CALL METHOD G_CUSTOM_CONTAINER-&amp;gt;FREE.
  CALL METHOD CL_GUI_CFW=&amp;gt;FLUSH.&amp;lt;/b&amp;gt;
  leave to screen 0&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2006 07:20:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403490#M194928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-14T07:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screen .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403491#M194929</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;To refresh the display&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Refresh the table if it has already been displayed &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;once.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL METHOD o_alvgrid-&amp;gt;refresh_table_display&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;     i_soft_refresh = gc_true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sameena&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2006 07:22:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403491#M194929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-14T07:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screen .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403492#M194930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Herzel Elmalme,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;Call this method before Leave to screen Statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL METHOD G_GRID-&amp;gt;REFRESH_TABLE_DISPLAY&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      FINISHED = 1&lt;/P&gt;&lt;P&gt;      OTHERS   = 2.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Thanks,&lt;/P&gt;&lt;P&gt;Venkat.O&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2006 07:26:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403492#M194930</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2006-06-14T07:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screen .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403493#M194931</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;1. Try "Free".&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    IF DATA_GRID IS NOT INITIAL.
      CALL METHOD DATA_GRID-&amp;gt;free
        EXCEPTIONS cntl_error        = 1
                   cntl_system_error = 2.
      FREE DATA_GRID. "** May be you forgot this statement**"
    ENDIF. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If "Free" still doesn't work, Try "REFRESH".&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  IF DATA_GRID IS NOT INITIAL.
    REFRESH &amp;lt;dyn_table&amp;gt;.
    CALL METHOD DATA_GRID-&amp;gt;refresh_table_display.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Jun 2006 07:29:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screen/m-p/1403493#M194931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-14T07:29:11Z</dc:date>
    </item>
  </channel>
</rss>

