<?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: Can Selection Screen processing events be triggered manually? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199422#M762480</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you -- I'll check it out!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Dec 2007 19:47:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-10T19:47:01Z</dc:date>
    <item>
      <title>Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199411#M762469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Selection Screen where a user can select a value from a drop-down box.  If a particular value is used, I assign default text to another Selection Screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, because choosing the drop-down value doesn't trigger a Selection Screen processing event (AT SELECTION-SCREEN and AT SELECTION-SCREEN OUTPUT) the value doesn't get updated on the screen field, even though it gets updated in memory.  It only updates on the screen if the user selects a radio button value for another field because that triggers the Selection Screen processing events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've read about various methods in an attempt to get this to work, but nothing is working.  Is there ANY way to trigger SAP to go to these events?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, and points for all helpful advice!&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 16:28:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199411#M762469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T16:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199412#M762470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you have a look at this DEMO program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_DROPDOWN_LISTBOX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 16:31:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199412#M762470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T16:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199413#M762471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi dave,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Selecting a listbox on selection screen,&lt;/P&gt;&lt;P&gt;    and immediately populating a field value on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;2. just copy paste to get a taste of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS : VRM.&lt;/P&gt;&lt;P&gt;DATA : VALUES TYPE VRM_VALUES.&lt;/P&gt;&lt;P&gt;DATA : VW LIKE LINE OF VALUES.&lt;/P&gt;&lt;P&gt;DATA : FLAG TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : LIST TYPE C AS LISTBOX VISIBLE LENGTH 10&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;USER-COMMAND ABC.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : A(10) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  VW-KEY = '1'.&lt;/P&gt;&lt;P&gt;  VW-TEXT = 'SUN'.&lt;/P&gt;&lt;P&gt;  APPEND VW TO VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  VW-KEY = '2'.&lt;/P&gt;&lt;P&gt;  VW-TEXT = 'MON'.&lt;/P&gt;&lt;P&gt;  APPEND VW TO VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  VW-KEY = '3'.&lt;/P&gt;&lt;P&gt;  VW-TEXT = 'TUE'.&lt;/P&gt;&lt;P&gt;  APPEND VW TO VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      ID              = 'LIST'&lt;/P&gt;&lt;P&gt;      VALUES          = VALUES&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      ID_ILLEGAL_NAME = 1&lt;/P&gt;&lt;P&gt;      OTHERS          = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------------" /&gt;&lt;P&gt;&amp;lt;b&amp;gt;AT SELECTION-SCREEN  OUTPUT.&lt;/P&gt;&lt;P&gt;A = LIST.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 16:31:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199413#M762471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T16:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199414#M762472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's not a listbox.  It's defined this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS p_linlay TYPE dfkk_selp_res-sel_name OBLIGATORY.  "Line layout&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I then have this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Populate the drop-down for Line Layout&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_linlay.&lt;/P&gt;&lt;P&gt;  PERFORM fill_table_p_linlay.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use this to populate my list:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*This function is called to provide the input help for the user.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'SEL_NAME'&lt;/P&gt;&lt;P&gt;      dynpprog        = v_repid&lt;/P&gt;&lt;P&gt;      dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield     = l_option&lt;/P&gt;&lt;P&gt;      window_title    = 'Select Line Layout'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;      display         = ' '&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = it_line_layout&lt;/P&gt;&lt;P&gt;      return_tab      = it_return_table&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      parameter_error = 1&lt;/P&gt;&lt;P&gt;      no_values_found = 2&lt;/P&gt;&lt;P&gt;      OTHERS          = 3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 16:34:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199414#M762472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T16:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199415#M762473</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;Try to use&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'.             " Dummy F code
endmethod.
&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>Mon, 10 Dec 2007 16:42:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199415#M762473</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-12-10T16:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199416#M762474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried your suggestion (call method cl_gui_cfw) but that didn't work.  It just displayed the Selection Screen without going to the AT SELECTION-SCREEN event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 18:52:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199416#M762474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T18:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199417#M762475</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;After that you need to call fm DYNP_VALUES_UPDATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 18:59:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199417#M762475</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-12-10T18:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199418#M762476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still didn't work.  Here's my section of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_gui_cfw=&amp;gt;set_new_ok_code&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      new_code = 'REFR'.             " Dummy F code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname     = 'ZFIR_PSCD_REPORTING'&lt;/P&gt;&lt;P&gt;      dynumb     = sy-dynnr&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields = it_dynpread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE e999 WITH 'Error'.&lt;/P&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 19:07:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199418#M762476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T19:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199419#M762477</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;Please check this thread. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the reply as suggested by Rich.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 19:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199419#M762477</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-12-10T19:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199420#M762478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see a "Rich" in that thread, and the topic looks like it doesn't have anything to do with my question.  Is that the correct link?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 19:28:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199420#M762478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T19:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199421#M762479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I have updated the wrong thread. Now you please the thread&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 19:33:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199421#M762479</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-12-10T19:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can Selection Screen processing events be triggered manually?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199422#M762480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you -- I'll check it out!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 19:47:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-selection-screen-processing-events-be-triggered-manually/m-p/3199422#M762480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T19:47:01Z</dc:date>
    </item>
  </channel>
</rss>

