<?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: selection screen parameter update in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147442#M748278</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;You could use functions DYNP_VALUES_READ to get the parameter w/o pressing &amp;lt;Enter&amp;gt;.&lt;/P&gt;&lt;P&gt;Then use F4IF_INT_TABLE_VALUE_REQUEST to provide your own F4 value help data.&lt;/P&gt;&lt;P&gt;BR, Dima&lt;/P&gt;</description>
    <pubDate>Thu, 09 Dec 2021 09:58:30 GMT</pubDate>
    <dc:creator>dmitry_sharshatkin</dc:creator>
    <dc:date>2021-12-09T09:58:30Z</dc:date>
    <item>
      <title>selection screen parameter update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147438#M748274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to update parameters on selection screen depending on values of other parameters without pressing Enter, ie at focus change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example: I have three parameters on the selection screen: &lt;/P&gt;&lt;P&gt; 1. plant(werks) 2. material(matnr) 3.batch(charg) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I enter values for plant and material and without pressing enter move the cursor to batch field. Here when i press F4 for search help i want the search help to take the values of plant and material automatically. I tried to do it using parameter ids but they wait a button click.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I achieve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 08:34:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147438#M748274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T08:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen parameter update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147439#M748275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: werks&lt;/P&gt;&lt;P&gt;            matnr&lt;/P&gt;&lt;P&gt;            charg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR CHARG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT &amp;lt;field name&amp;gt; FROM &amp;lt;table name&amp;gt; INTO TABLE &amp;lt;internal table&amp;gt;&lt;/P&gt;&lt;P&gt;                             WHERE werks = werks&lt;/P&gt;&lt;P&gt;                               and matnr = matnr.&lt;/P&gt;&lt;P&gt;                             &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        = 'charg'&lt;/P&gt;&lt;P&gt;      DYNPPROG        = SY-REPID&lt;/P&gt;&lt;P&gt;      DYNPNR          = SY-DYNNR&lt;/P&gt;&lt;P&gt;      DYNPROFIELD     = 'charg'&lt;/P&gt;&lt;P&gt;      VALUE_ORG       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      VALUE_TAB       = &amp;lt;internal table&amp;gt;&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;P&gt;&lt;/P&gt;&lt;P&gt;If usefull reward points is helpfull......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 08:45:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147439#M748275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T08:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen parameter update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147440#M748276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Rajneesh;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx for the answer. But still the user needs to press 'Enter' in order to transfer values of matnr and werks; when I check during debug these values are empty. What I need is transfer of values at cursor focus change.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 08:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147440#M748276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T08:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen parameter update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147441#M748277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved using search view&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2008 10:53:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147441#M748277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-02T10:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen parameter update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147442#M748278</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;You could use functions DYNP_VALUES_READ to get the parameter w/o pressing &amp;lt;Enter&amp;gt;.&lt;/P&gt;&lt;P&gt;Then use F4IF_INT_TABLE_VALUE_REQUEST to provide your own F4 value help data.&lt;/P&gt;&lt;P&gt;BR, Dima&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 09:58:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-parameter-update/m-p/3147442#M748278</guid>
      <dc:creator>dmitry_sharshatkin</dc:creator>
      <dc:date>2021-12-09T09:58:30Z</dc:date>
    </item>
  </channel>
</rss>

