<?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 Refresh in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729236#M1299670</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx for answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;same problem. if I set a break point the display will updated correctly. if I do not set a breakt point the display is still the same (old values).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried &lt;/P&gt;&lt;P&gt;flush&lt;/P&gt;&lt;P&gt;refresh_table_display&lt;/P&gt;&lt;P&gt;set new ok_code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jun 2009 10:11:46 GMT</pubDate>
    <dc:creator>stefan_kagelmacher</dc:creator>
    <dc:date>2009-06-11T10:11:46Z</dc:date>
    <item>
      <title>ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729231#M1299665</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 have a small report using ALV grid to display. the outputlist have many interactive actions, realized in a local class for event button_click.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;on button_click the report calls transaction VA02. after changing data, it returns to outputlist. I call the method refresh_table_display, but the display is still the same. but the internal table has new values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if I set a break point, the display will be updated correctly &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;greetz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 08:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729231#M1299665</guid>
      <dc:creator>stefan_kagelmacher</dc:creator>
      <dc:date>2009-06-11T08:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729232#M1299666</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;Create object instance of type g_grid  type ref to cl_gui_alv_grid,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now after filling internal table with new data, cal the method as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the below method will check if the data is chagned or not.&lt;/P&gt;&lt;P&gt;call method g_grid-&amp;gt;check_changed_data&lt;/P&gt;&lt;P&gt;              importing&lt;/P&gt;&lt;P&gt;                 e_valid = l_valid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if l_valid eq 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    loop at pt_outtab into ls_outtab.&lt;/P&gt;&lt;P&gt;      perform check_lock using    ls_outtab&lt;/P&gt;&lt;P&gt;                         changing l_locked.&lt;/P&gt;&lt;P&gt;      if l_locked is initial&lt;/P&gt;&lt;P&gt;         and not ls_outtab-checkbox eq '-'.&lt;/P&gt;&lt;P&gt;        ls_outtab-checkbox = 'X'.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      modify pt_outtab from ls_outtab.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;This method refresh the display of the output.&lt;/P&gt;&lt;P&gt;    call method g_grid-&amp;gt;refresh_table_display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 09:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729232#M1299666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T09:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729233#M1299667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;try this using Function Module 'RS_REFRESH_FROM_SELECT_OPTIONS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report  zcoe_alv_simple.&lt;/P&gt;&lt;P&gt;have a button Refresh with fctcode : REF in the menu painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form user_command using ucomm type sy-ucomm&lt;/P&gt;&lt;P&gt;                        selfield type slis_selfield.&lt;/P&gt;&lt;P&gt;constants: l_c_repid type sy-repid value 'ZCOE_ALV_SIMPLE'.&lt;/P&gt;&lt;P&gt;  data: l_i_seltab type table of rsparams.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  when 'REF'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Calling fm to get refresh data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      call function 'RS_REFRESH_FROM_SELECTOPTIONS'&lt;/P&gt;&lt;P&gt;        exporting&lt;/P&gt;&lt;P&gt;          curr_report     = l_c_repid&lt;/P&gt;&lt;P&gt;        tables&lt;/P&gt;&lt;P&gt;          selection_table = l_i_seltab&lt;/P&gt;&lt;P&gt;        exceptions&lt;/P&gt;&lt;P&gt;          not_found       = 1&lt;/P&gt;&lt;P&gt;          no_report       = 2&lt;/P&gt;&lt;P&gt;          others          = 3.&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;      else.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; * Calling the screen after refreshing&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        submit zcoe_alv_simple with selection-table l_i_seltab.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;endform.                    " USER_COMMAND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 09:12:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729233#M1299667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T09:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729234#M1299668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In the PAI at the beginning call the method CHECK_CHANGED_DATA.&lt;/P&gt;&lt;P&gt;This will transfer the changed data from the grid to the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 09:58:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729234#M1299668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-11T09:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729235#M1299669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Stefan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a well-known problem. The refreshing only takes place when you pass once PAI &amp;amp; PBO of your dynpro.&lt;/P&gt;&lt;P&gt;However, this can be achieved quite easily:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
METHOD handle_button_click.
" NOTE: PAI is NOT triggered!!!

...
CALL TRANSACTION 'VA02' ...
...

" And now trigger PAI with a defined ok-code:
CALL METHOD cl_gui_cfw=&amp;gt;set_new_ok_code
   EXPORTING
     okcode = 'REFRESH'.

ENDMETHOD.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now change your USER_COMMAND module (PAI) accordingly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE user_command_0100. " PAI

  CASE gd_okcode.
    WHEN 'REFRESH'. 
      PERFORM refresh_list.
...
ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the routine REFRESH_LIST you update your OUTTAB list and finally call method go_grid-&amp;gt;refresh_table_display( ). After passing PBO the refreshed list will be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details please refer to:&lt;/P&gt;&lt;P&gt;[A Christmas Collection of Useful Classes|https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/12377] &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 10:06:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729235#M1299669</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2009-06-11T10:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729236#M1299670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx for answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;same problem. if I set a break point the display will updated correctly. if I do not set a breakt point the display is still the same (old values).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried &lt;/P&gt;&lt;P&gt;flush&lt;/P&gt;&lt;P&gt;refresh_table_display&lt;/P&gt;&lt;P&gt;set new ok_code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 10:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729236#M1299670</guid>
      <dc:creator>stefan_kagelmacher</dc:creator>
      <dc:date>2009-06-11T10:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729237#M1299671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear uwe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx for answer. but your version still not work (for me).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;method button click&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  case es_col_id.&lt;/P&gt;&lt;P&gt;    when 'BUTTON_RECH'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      clear wa_bdcdata.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-program  = 'SAPMV60A'.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-dynpro   = '0102'.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;      append wa_bdcdata to lt_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      clear wa_bdcdata.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-fnam = 'KOMFK-VBELN(01)'.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-fval = ls_daten-vbeln_neu.&lt;/P&gt;&lt;P&gt;      append wa_bdcdata to lt_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      call transaction 'VF01' using lt_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      perform check_changes_rech using ls_daten-vbeln_neu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;form check_changes_rech&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  data: ls_daten type ywah_s_check_apa_rm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      input  = p_vbeln_neu&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;      output = p_vbeln_neu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  read table gt_daten into ls_daten with key vbeln_neu = p_vbeln_neu.&lt;/P&gt;&lt;P&gt;  check sy-subrc is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select single vbeln from vbrp into ls_daten-re_nummer&lt;/P&gt;&lt;P&gt;                                where aubel = ls_daten-vbeln_neu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  modify gt_daten from ls_daten index sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  perform set_alv_icons.&lt;/P&gt;&lt;P&gt;  perform set_alv_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call method cl_gui_cfw=&amp;gt;set_new_ok_code&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      new_code = 'REFRESH'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;pai_user_command&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    when 'REFRESH'.&lt;/P&gt;&lt;P&gt;      perform refresh_display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;form refresh_display&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  call method g_alv-&amp;gt;check_changed_data.&lt;/P&gt;&lt;P&gt;  call method g_alv-&amp;gt;refresh_table_display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;list ist still the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 10:26:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729237#M1299671</guid>
      <dc:creator>stefan_kagelmacher</dc:creator>
      <dc:date>2009-06-11T10:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729238#M1299672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Stefan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then place the method call go_grid-&amp;gt;refresh_table_display( ) into a PBO module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 10:27:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729238#M1299672</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2009-06-11T10:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729239#M1299673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;same &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 10:33:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729239#M1299673</guid>
      <dc:creator>stefan_kagelmacher</dc:creator>
      <dc:date>2009-06-11T10:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729240#M1299674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Stefan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normally it works. Alternatively, put your method call go_grid-&amp;gt;set_table_for_first_display( ) into a PBO module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this does not work then you have a bug within the update of your OUTTAB list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 10:35:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729240#M1299674</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2009-06-11T10:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729241#M1299675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if your meaning is correct, why does the display is worthy when setting on the debugger?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 10:41:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729241#M1299675</guid>
      <dc:creator>stefan_kagelmacher</dc:creator>
      <dc:date>2009-06-11T10:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729242#M1299676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Stefan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you work with controls you should keep in mind that we have frontend and a backend which may be in sync or not:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Frontend = Control (e.g. ALV grid)
Backend = OUTTAB itab used for the ALV list&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 10:44:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729242#M1299676</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2009-06-11T10:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729243#M1299677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call transaction MODE 'S'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and everything is ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what a cry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 11:20:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-refresh/m-p/5729243#M1299677</guid>
      <dc:creator>stefan_kagelmacher</dc:creator>
      <dc:date>2009-06-11T11:20:14Z</dc:date>
    </item>
  </channel>
</rss>

