<?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 grid refresh after user_command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831932#M1683277</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;bro..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you still facing da proble then i guss the problem is with this "IF init is initial" statement. &lt;/P&gt;&lt;P&gt;bcz if "init" containing some value even after the refresh it wont go inside da condition nd display da ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So after free all&amp;nbsp; objects ,make sure that the program flow go to the alv display.......).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2012 07:48:36 GMT</pubDate>
    <dc:creator>former_member224797</dc:creator>
    <dc:date>2012-06-06T07:48:36Z</dc:date>
    <item>
      <title>ALV grid refresh after user_command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831926#M1683271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;i have a problem with my code, i use 2 alv grids in my code and sometimes i need to refresh the alv grids, the problem is that the method grid-&amp;gt;REFRESH_TABLE_DISPLAY works only as long as the PAI of screen 100 is not triggerd, it means, when i click on something that has a function code and will cause the PAI of screen 100 to be triggered, i can no more change the alv grids, does any one know where the problem is? thanks in advance.&lt;BR /&gt;here is my code:&lt;/P&gt;&lt;P&gt;CALL SCREEN 100. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE status_0100 OUTPUT. &lt;/P&gt;&lt;P&gt;SET PF-STATUS 'STATUS'. &lt;/P&gt;&lt;P&gt;SET TITLEBAR 'TITLE'. &lt;/P&gt;&lt;P&gt;IF init is initial. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OBJECT container &lt;/P&gt;&lt;P&gt;EXPORTING container_name = 'CUSTOM'. &lt;/P&gt;&lt;P&gt;CREATE OBJECT splitter &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;parent = container &lt;/P&gt;&lt;P&gt;rows = 3 &lt;/P&gt;&lt;P&gt;columns = 1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD splitter-&amp;gt;get_container &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;row = 1 &lt;/P&gt;&lt;P&gt;column = 1 &lt;/P&gt;&lt;P&gt;RECEIVING &lt;/P&gt;&lt;P&gt;container = container_1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD splitter-&amp;gt;get_container &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;row = 2 &lt;/P&gt;&lt;P&gt;column = 1 &lt;/P&gt;&lt;P&gt;RECEIVING &lt;/P&gt;&lt;P&gt;container = container_2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD splitter-&amp;gt;get_container &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;row = 3 &lt;/P&gt;&lt;P&gt;column = 1 &lt;/P&gt;&lt;P&gt;RECEIVING &lt;/P&gt;&lt;P&gt;container = container_3. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD splitter-&amp;gt;set_row_height &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;id = 1 &lt;/P&gt;&lt;P&gt;height = 57. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD splitter-&amp;gt;set_row_height &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;id = 3 &lt;/P&gt;&lt;P&gt;height = 39. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OBJECT grid1 &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;i_parent = container_1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OBJECT grid2 &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;i_parent = container_3. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD grid1-&amp;gt;set_table_for_first_display &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;I_SAVE = 'A' &lt;/P&gt;&lt;P&gt;I_DEFAULT = 'X' &lt;/P&gt;&lt;P&gt;I_STRUCTURE_NAME = 'TAB_1' &lt;/P&gt;&lt;P&gt;CHANGING &lt;/P&gt;&lt;P&gt;it_outtab = TAB1 &lt;/P&gt;&lt;P&gt;it_fieldcatalog = T_FIELDALV &lt;/P&gt;&lt;P&gt;EXCEPTIONS &lt;/P&gt;&lt;P&gt;INVALID_PARAMETER_COMBINATION = 1 &lt;/P&gt;&lt;P&gt;PROGRAM_ERROR = 2 &lt;/P&gt;&lt;P&gt;TOO_MANY_LINES = 3 &lt;/P&gt;&lt;P&gt;others = 4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD grid2-&amp;gt;set_table_for_first_display &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;I_SAVE = 'A' &lt;/P&gt;&lt;P&gt;I_DEFAULT = 'X' &lt;/P&gt;&lt;P&gt;I_STRUCTURE_NAME = 'TAB_2' &lt;/P&gt;&lt;P&gt;CHANGING &lt;/P&gt;&lt;P&gt;it_outtab = TAB2 &lt;/P&gt;&lt;P&gt;it_fieldcatalog = T_FIELDALV_2 &lt;/P&gt;&lt;P&gt;EXCEPTIONS &lt;/P&gt;&lt;P&gt;INVALID_PARAMETER_COMBINATION = 1 &lt;/P&gt;&lt;P&gt;PROGRAM_ERROR = 2 &lt;/P&gt;&lt;P&gt;TOO_MANY_LINES = 3 &lt;/P&gt;&lt;P&gt;others = 4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OBJECT GR_EVENT_HANDLR. &lt;/P&gt;&lt;P&gt;SET HANDLER gr_event_handlr-&amp;gt;handle_double_click FOR grid1. &lt;/P&gt;&lt;P&gt;CALL METHOD grid2-&amp;gt;REFRESH_TABLE_DISPLAY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0100 INPUT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAVE_OK = OK_CODE. &lt;/P&gt;&lt;P&gt;CLEAR OK_CODE. &lt;/P&gt;&lt;P&gt;CASE SAVE_OK. &lt;/P&gt;&lt;P&gt;WHEN 'BACK' OR 'CANCEL' OR 'EXIT'. &lt;/P&gt;&lt;P&gt;LEAVE TO SCREEN 0. &lt;/P&gt;&lt;P&gt;WHEN 'EXITPUSH'. &lt;/P&gt;&lt;P&gt;LEAVE TO SCREEN 0. &lt;/P&gt;&lt;P&gt;WHEN 'ADDPUSH'. &lt;/P&gt;&lt;P&gt;CALL SCREEN 200. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;WHEN &lt;SPAN class="L0S33"&gt;'RADIO'&lt;/SPAN&gt;.&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;r1 = &lt;SPAN class="L0S33"&gt;'X'&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;PERFORM LOAD_GRID_TABLE1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;CALL METHOD grid1-&amp;gt;REFRESH_TABLE_DISPLAY. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;ENDIF.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;r2 = &lt;SPAN class="L0S33"&gt;'X'&lt;/SPAN&gt;.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;PERFORM LOAD_GRID_TABLE2.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;CALL METHOD grid1-&amp;gt;REFRESH_TABLE_DISPLAY. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;ENDIF.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ENDCASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0200 INPUT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAVE_OK = OK_CODE. &lt;/P&gt;&lt;P&gt;CLEAR OK_CODE. &lt;/P&gt;&lt;P&gt;CASE SAVE_OK. &lt;/P&gt;&lt;P&gt;WHEN 'BACK' OR 'CANCEL' OR 'EXIT'. &lt;/P&gt;&lt;P&gt;CLEAR ok_code. &lt;/P&gt;&lt;P&gt;LEAVE TO SCREEN 100. &lt;/P&gt;&lt;P&gt;ENDCASE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE status_0200 OUTPUT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'STATUS'. &lt;/P&gt;&lt;P&gt;SET TITLEBAR 'TITLE'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS event_class IMPLEMENTATION. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD handle_double_click. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE TAB1 INTO T_TAB INDEX e_row-index. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ZINSURANCE~FAMILYMEMBER ZINSURANCE~DAMAGTYPE ZINSURANCE~VISITTYPE &lt;/P&gt;&lt;P&gt;ZINSURANCE~XDATE ZINSURANCE~PARATYPE ZINSURANCE~PAIDVAL ZINSURANCE~CONFIRMEDVAL ZINSURANCE~PUREVAL &lt;/P&gt;&lt;P&gt;ZINSURANCE~FRANSHIZ PA0002~VORNA PA0002~NACHN &lt;/P&gt;&lt;P&gt;FROM ZINSURANCE JOIN PA0002 ON ZINSURANCE~PERNR = PA0002~PERNR &lt;/P&gt;&lt;P&gt;INTO TABLE TAB2 &lt;/P&gt;&lt;P&gt;WHERE ZINSURANCE~PERNR = T_TAB-PERNR &lt;/P&gt;&lt;P&gt;ORDER BY ZINSURANCE~XDATE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD grid2-&amp;gt;REFRESH_TABLE_DISPLAY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMETHOD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2012 08:42:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831926#M1683271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-05T08:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid refresh after user_command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831927#M1683272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Masood,&lt;/P&gt;&lt;P&gt;use the below satement to free the alv objects...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if grid1 is not initial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL METHOD grid1-&amp;gt;free&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; free grid1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if grid2 is not initial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL METHOD grid2-&amp;gt;free&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; free grid1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if container_1 is not initial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL METHOD container_1-&amp;gt;free&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; free container_1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if container_2 is not initial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL METHOD container_2-&amp;gt;free&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; free container_2.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if splitter is not initial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL METHOD splitter-&amp;gt;free&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; free splitter.&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;same way u must free all da object...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2012 09:58:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831927#M1683272</guid>
      <dc:creator>former_member224797</dc:creator>
      <dc:date>2012-06-05T09:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid refresh after user_command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831928#M1683273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i used the statement above at the end of PAI of screen 100. but now when i click on something that has a function code and will cause the PAI of screen 100 to be triggered, the objects on the screen 100 will be removed, what should i do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2012 10:24:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831928#M1683273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-05T10:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid refresh after user_command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831929#M1683274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Free all the objects just before the (IF init is initial.) check is performed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2012 11:51:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831929#M1683274</guid>
      <dc:creator>former_member224797</dc:creator>
      <dc:date>2012-06-05T11:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid refresh after user_command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831930#M1683275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It makes no difference, they will be removed, it's like that when i free one object i can't assign anything to it again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2012 13:19:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831930#M1683275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-05T13:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid refresh after user_command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831931#M1683276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you put some screen shots showing the issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2012 13:22:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831931#M1683276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-05T13:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid refresh after user_command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831932#M1683277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;bro..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you still facing da proble then i guss the problem is with this "IF init is initial" statement. &lt;/P&gt;&lt;P&gt;bcz if "init" containing some value even after the refresh it wont go inside da condition nd display da ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So after free all&amp;nbsp; objects ,make sure that the program flow go to the alv display.......).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2012 07:48:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831932#M1683277</guid>
      <dc:creator>former_member224797</dc:creator>
      <dc:date>2012-06-06T07:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid refresh after user_command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831933#M1683278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it didn't solve my problem, here is what i get when i run the program,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/110170" height="319" width="527" /&gt;&lt;/P&gt;&lt;P&gt;and when i click on any button or radio button that will cause the PAI of the screen 100 to be triggered i get the following,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/110180" height="332" width="524" /&gt;&lt;/P&gt;&lt;P&gt;and yes, i modified my code so that there is no more "if init is initial" in the PBO of the screen 100, and i inserted at the beginning of the PBO 100 the following statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;if grid1 &lt;SPAN class="L0S52"&gt;is &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;not &lt;/SPAN&gt;initial.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;METHOD &lt;/SPAN&gt;grid1-&amp;gt;free.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;free &lt;/SPAN&gt;grid1.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; endif.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;if &lt;/SPAN&gt;grid2 &lt;SPAN class="L0S52"&gt;is &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;not &lt;/SPAN&gt;initial.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;METHOD &lt;/SPAN&gt;grid2-&amp;gt;free.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;free &lt;/SPAN&gt;grid1.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; endif.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;if &lt;/SPAN&gt;container_1 &lt;SPAN class="L0S52"&gt;is &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;not &lt;/SPAN&gt;initial.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;METHOD &lt;/SPAN&gt;container_1-&amp;gt;free.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;free &lt;/SPAN&gt;container_1.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; endif.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;if &lt;/SPAN&gt;container_2 &lt;SPAN class="L0S52"&gt;is &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;not &lt;/SPAN&gt;initial.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;METHOD &lt;/SPAN&gt;container_2-&amp;gt;free.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;free &lt;/SPAN&gt;container_2.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; endif.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;if &lt;/SPAN&gt;splitter &lt;SPAN class="L0S52"&gt;is &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;not &lt;/SPAN&gt;initial.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;METHOD &lt;/SPAN&gt;splitter-&amp;gt;free.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;free &lt;/SPAN&gt;splitter.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; endif.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;and after that i create objects and display grids.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2012 06:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831933#M1683278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-12T06:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: ALV grid refresh after user_command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831934#M1683279</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;I also had a problem with REFRESH_TABLE_DISPLAY. Instead of this I used SET_FOR_FIRST_DISLPAY again and it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2012 05:45:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-refresh-after-user-command/m-p/8831934#M1683279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-07-06T05:45:53Z</dc:date>
    </item>
  </channel>
</rss>

