<?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: Update ALV table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-alv-table/m-p/6036555#M1350221</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks  a®s    	 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everytime the program passes through the method it refresh my table with the changes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Aug 2009 11:57:12 GMT</pubDate>
    <dc:creator>marcelom_bovo</dc:creator>
    <dc:date>2009-08-19T11:57:12Z</dc:date>
    <item>
      <title>Update ALV table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-alv-table/m-p/6036553#M1350219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi people,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm with a problem in my ALV OO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using a ALV with the EDIT option so the user can edit the values from the ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I'm having a problem with this. When the user change a value from the ALV the table just change IF the user pressed a button from the ALV menu or pressed the ALV with a double click.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So IF the user change a value, press ENTER and then the SAVE button on the SAP menu the value is not saved into the ALV table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want to order the user to double click the ALV everytime he wants to save his changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 20:18:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-alv-table/m-p/6036553#M1350219</guid>
      <dc:creator>marcelom_bovo</dc:creator>
      <dc:date>2009-08-18T20:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Update ALV table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-alv-table/m-p/6036554#M1350220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
module pai input.
  save_ok = ok_code.
  clear ok_code.
  case save_ok.
    when 'EXIT'.
      perform f_exit_program.
    when 'CANC'.
      perform f_exit_program.
    when 'BACK'.
      perform f_exit_program.
    when 'SAVE'.
      perform f_save_data.
  endcase.
endmodule.                               " Pai INPUT

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
form f_save_data .
  data : p_index like sy-index.

  call method g_grid-&amp;gt;check_changed_data
    importing
      e_valid = v_valid.

  if not v_valid is initial.
   " From here update your table , Your ALV table have changed data
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 20:23:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-alv-table/m-p/6036554#M1350220</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-08-18T20:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: Update ALV table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-alv-table/m-p/6036555#M1350221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks  a®s    	 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everytime the program passes through the method it refresh my table with the changes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 11:57:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-alv-table/m-p/6036555#M1350221</guid>
      <dc:creator>marcelom_bovo</dc:creator>
      <dc:date>2009-08-19T11:57:12Z</dc:date>
    </item>
  </channel>
</rss>

