<?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 event Data change finished in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-event-data-change-finished/m-p/4906786#M1145656</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the &lt;STRONG&gt;SET HANDLER&lt;/STRONG&gt; statements sequenece. it should be first handler for data_change and then for hotspot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f0701_cre_obj_screen_9000 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Subroutine for creation of container and ALV grid&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF g_alv_container_9000 IS INITIAL.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT g_alv_container_9000&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        container_name = g_container_1.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT g_alv_grid_9000&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        i_parent          = g_alv_container_9000&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        error_cntl_create = 1&lt;/P&gt;&lt;P&gt;        error_cntl_init   = 2&lt;/P&gt;&lt;P&gt;        error_cntl_link   = 3&lt;/P&gt;&lt;P&gt;        error_dp_create   = 4&lt;/P&gt;&lt;P&gt;        OTHERS            = 5.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LEAVE TO CURRENT TRANSACTION.&lt;/P&gt;&lt;P&gt;    ENDIF.&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;  CREATE OBJECT g_event_receiver.&lt;/P&gt;&lt;P&gt;  SET HANDLER g_event_receiver-&amp;gt;handle_hotspot_click FOR g_alv_grid_9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET HANDLER g_event_receiver-&amp;gt;handle_data_changed&lt;/P&gt;&lt;P&gt;      FOR g_alv_grid_9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " F0701_CRE_OBJ_SCREEN_9001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Dec 2008 07:29:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-11T07:29:25Z</dc:date>
    <item>
      <title>Problem with event Data change finished</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-event-data-change-finished/m-p/4906785#M1145655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem with the event data_change_finished. I am generating an ALV grid. The key colomn in the Grid has a HOT-SPOT and i have handle the HOT_SPOT. Now i have placed another colomn as editable and also handled the event DATA_CHANGED_FINISHED for the changes and it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i click on the HOT-SPOT on the key colomn, first the DATA_CHANGED_FINISHED event is getting triggered and then the HOT_SPOT_CLICK ebent is getting triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can some one please let me know what could have gone wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Y Gautham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 07:16:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-event-data-change-finished/m-p/4906785#M1145655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T07:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with event Data change finished</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-event-data-change-finished/m-p/4906786#M1145656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the &lt;STRONG&gt;SET HANDLER&lt;/STRONG&gt; statements sequenece. it should be first handler for data_change and then for hotspot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f0701_cre_obj_screen_9000 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Subroutine for creation of container and ALV grid&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF g_alv_container_9000 IS INITIAL.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT g_alv_container_9000&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        container_name = g_container_1.&lt;/P&gt;&lt;P&gt;    CREATE OBJECT g_alv_grid_9000&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        i_parent          = g_alv_container_9000&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        error_cntl_create = 1&lt;/P&gt;&lt;P&gt;        error_cntl_init   = 2&lt;/P&gt;&lt;P&gt;        error_cntl_link   = 3&lt;/P&gt;&lt;P&gt;        error_dp_create   = 4&lt;/P&gt;&lt;P&gt;        OTHERS            = 5.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LEAVE TO CURRENT TRANSACTION.&lt;/P&gt;&lt;P&gt;    ENDIF.&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;  CREATE OBJECT g_event_receiver.&lt;/P&gt;&lt;P&gt;  SET HANDLER g_event_receiver-&amp;gt;handle_hotspot_click FOR g_alv_grid_9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET HANDLER g_event_receiver-&amp;gt;handle_data_changed&lt;/P&gt;&lt;P&gt;      FOR g_alv_grid_9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " F0701_CRE_OBJ_SCREEN_9001&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 07:29:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-event-data-change-finished/m-p/4906786#M1145656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T07:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with event Data change finished</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-event-data-change-finished/m-p/4906787#M1145657</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;the sequence of registring has been same as you have mentioned. But still the problem persists!!! Is there anything which could have gone wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; reagrds,&lt;/P&gt;&lt;P&gt;y Gautham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 07:39:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-event-data-change-finished/m-p/4906787#M1145657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T07:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with event Data change finished</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-event-data-change-finished/m-p/4906788#M1145658</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;Check the class definition and implemetation sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else try to analysis why this is happening by debugging the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2008 07:50:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-event-data-change-finished/m-p/4906788#M1145658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-11T07:50:44Z</dc:date>
    </item>
  </channel>
</rss>

