<?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 events problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/events-problem/m-p/1593418#M266721</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a program with alv_Tree and a normal AVL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I fill the data in both alv. And In both alv I have implemented the class to be able to use the event "double click", When I execute double click on alv_tree control to execute this function 'SET_DYNP_VALUE' everything works correctly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And with this function of it updates the corresponding text     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; CALL FUNCTION 'SET_DYNP_VALUE'
    EXPORTING
      I_FIELD = 'V_TXT_CDT'
      I_REPID = SY-REPID
      I_DYNNR = '0100'
      I_VALUE = ''
    EXCEPTIONS
      OTHERS  = 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I double click on alv normal, this function does not work &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  CALL FUNCTION 'SET_DYNP_VALUE'
    EXPORTING
      I_FIELD = 'V_TXT_RULE'
      I_REPID = SY-REPID
      I_DYNNR = '0100'
      I_VALUE = ''
    EXCEPTIONS
      OTHERS  = 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I make double click on ALVnormal The following events just don't happen.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS BEFORE OUTPUT.
PROCESS AFTER INPUT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The values are updated when I press return in any input field in the screen. How can I make these events to execute when I use the double click function because even if I call the functions that compound these events, the screen doesnt get updated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Oct 2006 22:29:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-09T22:29:12Z</dc:date>
    <item>
      <title>events problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/events-problem/m-p/1593418#M266721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a program with alv_Tree and a normal AVL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I fill the data in both alv. And In both alv I have implemented the class to be able to use the event "double click", When I execute double click on alv_tree control to execute this function 'SET_DYNP_VALUE' everything works correctly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And with this function of it updates the corresponding text     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; CALL FUNCTION 'SET_DYNP_VALUE'
    EXPORTING
      I_FIELD = 'V_TXT_CDT'
      I_REPID = SY-REPID
      I_DYNNR = '0100'
      I_VALUE = ''
    EXCEPTIONS
      OTHERS  = 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I double click on alv normal, this function does not work &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  CALL FUNCTION 'SET_DYNP_VALUE'
    EXPORTING
      I_FIELD = 'V_TXT_RULE'
      I_REPID = SY-REPID
      I_DYNNR = '0100'
      I_VALUE = ''
    EXCEPTIONS
      OTHERS  = 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I make double click on ALVnormal The following events just don't happen.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS BEFORE OUTPUT.
PROCESS AFTER INPUT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The values are updated when I press return in any input field in the screen. How can I make these events to execute when I use the double click function because even if I call the functions that compound these events, the screen doesnt get updated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 22:29:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/events-problem/m-p/1593418#M266721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T22:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: events problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/events-problem/m-p/1593419#M266722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right a doubleclick in an ALV grid will not fire a complete screen cycle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 22:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/events-problem/m-p/1593419#M266722</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-09T22:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: events problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/events-problem/m-p/1593420#M266723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So.... we must force it,  I wanted to test this before I actually suggested it,  in your event handler method for double click, add the following code at the end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    call method cl_gui_cfw=&amp;gt;set_new_ok_code
      exporting
        new_code = 'REFR'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adding this code will force a screen cycle, first PAI, then back around to PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 22:42:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/events-problem/m-p/1593420#M266723</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-09T22:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: events problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/events-problem/m-p/1593421#M266724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT WORK VERY WELL THANK YOU VERY MUCH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 23:02:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/events-problem/m-p/1593421#M266724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T23:02:03Z</dc:date>
    </item>
  </channel>
</rss>

