<?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: Problem with editable ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-editable-alv/m-p/6756515#M1460970</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kumar , &lt;/P&gt;&lt;P&gt;u can use  the class  cl_gui_cfw  and method "flush" it would refresh .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Apr 2010 09:50:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-04-12T09:50:13Z</dc:date>
    <item>
      <title>Problem with editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-editable-alv/m-p/6756513#M1460968</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;&lt;/P&gt;&lt;P&gt;I am using the method set_table_for_first_display for ALV Editable. After entering the values on the alv screen the values are not getting reflected unless press enter or should come out of my last cell to reflect the changes.&lt;/P&gt;&lt;P&gt;I have used the mc_evt_enter and mc_evt_modified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to trigger the change data event with out coming out of my last cell and pressing the enter bubtton.&lt;/P&gt;&lt;P&gt;This should happen atleast while pressing the save button or as soon as we modify the value in the cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest me the code to trigger this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Raghuveer Kumar K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Apr 2010 06:14:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-editable-alv/m-p/6756513#M1460968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-08T06:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-editable-alv/m-p/6756514#M1460969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in your data_changed event, put a call to method REFRESH_TABLE_DISPLAY with parameter I_SOFT_REFRESH = 'X'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Apr 2010 13:31:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-editable-alv/m-p/6756514#M1460969</guid>
      <dc:creator>franois_henrotte</dc:creator>
      <dc:date>2010-04-08T13:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-editable-alv/m-p/6756515#M1460970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kumar , &lt;/P&gt;&lt;P&gt;u can use  the class  cl_gui_cfw  and method "flush" it would refresh .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Apr 2010 09:50:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-editable-alv/m-p/6756515#M1460970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-12T09:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with editable ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-editable-alv/m-p/6756516#M1460971</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 HAVE ENCOUNTERED THE SAME PROBLEM BUT I DID WITH THE FOLLOWING SOLUTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add a Save button on the container and add the save functionality.&lt;/P&gt;&lt;P&gt;Just add the following class methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLASS-METHODS:&lt;/P&gt;&lt;P&gt;      handle_toolbar FOR EVENT toolbar OF cl_gui_alv_grid&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        e_object ,&lt;/P&gt;&lt;P&gt;        handle_user_command FOR EVENT user_command OF cl_gui_alv_grid&lt;/P&gt;&lt;P&gt;      IMPORTING e_ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in implementation of the above methods declared class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD handle_toolbar.&lt;/P&gt;&lt;P&gt;    DATA:&lt;/P&gt;&lt;P&gt;      lw_toolbar TYPE stb_button.&lt;/P&gt;&lt;P&gt;    CLEAR lw_toolbar.&lt;/P&gt;&lt;P&gt;    lw_toolbar-function = 'SAVE'.&lt;/P&gt;&lt;P&gt;    lw_toolbar-icon = 'ICON_DETAIL'.&lt;/P&gt;&lt;P&gt;    lw_toolbar-butn_type = '0'.&lt;/P&gt;&lt;P&gt;    lw_toolbar-text = 'SAVE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND lw_toolbar TO e_object-&amp;gt;mt_toolbar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when user clicks save modify the internal table that contians the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards and Best wishes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Apr 2010 08:21:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-editable-alv/m-p/6756516#M1460971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-14T08:21:46Z</dc:date>
    </item>
  </channel>
</rss>

