<?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 DATA_CHANGED in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013524#M411225</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep. You're right, but that event you are referring to is for OO ALV only, I need something like this but for hierarchical ALV, using FM REUSE_ALV_HIERSEQ_LIST_DISPLAY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx&lt;/P&gt;&lt;P&gt;Jesus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Mar 2007 13:54:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-20T13:54:24Z</dc:date>
    <item>
      <title>ALV DATA_CHANGED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013521#M411222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone! I need to use event DATA_CHANGED on FM REUSE_ALV_HIERSEQ_LIST_DISPLAY. I used to do so on REUSE_ALV_GRID_DISPLAY passing parameter I_GRID_SETTINGS-EDT_CLL_CB = 'X', but this FM doesn't have it, so does anybody knows something like this but for hierarchical ALV??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already added DATA_CHANGED event to the events table, but still wont activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx.&lt;/P&gt;&lt;P&gt;Jesus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Mar 2007 23:59:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013521#M411222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-19T23:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: ALV DATA_CHANGED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013522#M411223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jesus,&lt;/P&gt;&lt;P&gt;DATA_CHANGED Event is for OO ALV. I dont think this could be used directly with Hier ALV.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 03:16:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013522#M411223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-20T03:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: ALV DATA_CHANGED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013523#M411224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The DATA_CHANGED_FINISH event is triggerd after a change is committed.This is in contrast to the event DATA_CHANGED where the method is triggered after the change at an editable field is perceived.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code should look like this:&lt;/P&gt;&lt;P&gt;data: hnd_grid type ref to lcl_event_receiver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*:--- Initialization of the objects and events&lt;/P&gt;&lt;P&gt;set handler hnd_event_grid-&amp;gt;mth_data_changed_end&lt;/P&gt;&lt;P&gt;for hnd_grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*:--- Class definition and Implementation&lt;/P&gt;&lt;P&gt;methods: mth_data_changed_end&lt;/P&gt;&lt;P&gt;for event data_changed of cl_gui_alv_grid&lt;/P&gt;&lt;P&gt;inporting e_modified.&lt;/P&gt;&lt;P&gt;method: mth_data_changed_end.&lt;/P&gt;&lt;P&gt;if e_modified = 'X'.&lt;/P&gt;&lt;P&gt;*:--- do something ...&lt;/P&gt;&lt;P&gt;call method &amp;lt;hnd_grid-&amp;gt;refresh_table_display&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one more ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS LCL_EVENT_RECEIVER DEFINITION.&lt;/P&gt;&lt;P&gt;PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHODS HANDLE_DATA_CHANGED&lt;/P&gt;&lt;P&gt;FOR EVENT DATA_CHANGED OF CL_GUI_ALV_GRID&lt;/P&gt;&lt;P&gt;IMPORTING ER_DATA_CHANGED E_ONF4 E_UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS. "cl_event_receiver DEFINITION&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CLASS LCL_EVENT_RECEIVER IMPLEMENTATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------" /&gt;&lt;P&gt;CLASS LCL_EVENT_RECEIVER IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD HANDLE_DATA_CHANGED.&lt;/P&gt;&lt;P&gt;PERFORM DATA_CHANGED USING ER_DATA_CHANGED E_ONF4 E_UCOMM.&lt;/P&gt;&lt;P&gt;end method.&lt;/P&gt;&lt;P&gt;endclass. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark all helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 04:51:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013523#M411224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-20T04:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: ALV DATA_CHANGED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013524#M411225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep. You're right, but that event you are referring to is for OO ALV only, I need something like this but for hierarchical ALV, using FM REUSE_ALV_HIERSEQ_LIST_DISPLAY. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx&lt;/P&gt;&lt;P&gt;Jesus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2007 13:54:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013524#M411225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-20T13:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: ALV DATA_CHANGED</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013525#M411226</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 am using FM REUSE_ALV_HIERSEQ_LIST_DISPLAY&amp;nbsp; also and I want to detect changes in edit cells to change a column of subtotals, is there any solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 09:27:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data-changed/m-p/2013525#M411226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-06-17T09:27:55Z</dc:date>
    </item>
  </channel>
</rss>

