<?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: How to fill another parameter automatically on selection screen? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766752#M1117345</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;When you press F4 and selects the data for that field then immediately move the ID field to the parameter of the id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Nov 2008 09:48:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-05T09:48:05Z</dc:date>
    <item>
      <title>How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766748#M1117341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two parameters on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date &lt;/P&gt;&lt;P&gt;ID&lt;/P&gt;&lt;P&gt;When I do F4 for Date parameter, By calling following function it gives me date and ID value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CALL FUNCTION 'F4_ZAHLLAUF'
   EXPORTING
     F1TYP               = 'D'
     F1NME               = ' '
     F2NME               = 'F110V-LAUFI'
     DISPLAY_LAUFK       = 'X'
     EXPLAIN_LAUFK       = ' '
   IMPORTING
     LAUFD               = v_laufd
     LAUFI               = v_laufi.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All I need is when I do F4, It should automatic fill the ID parameter.&lt;/P&gt;&lt;P&gt;Note : Date parameter filled automatically by doing F4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me an example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:38:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766748#M1117341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T09:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766749#M1117342</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;Assign the value to another parameter in the event&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:41:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766749#M1117342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T09:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766750#M1117343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'F4_ZAHLLAUF'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     F1TYP               = 'D'&lt;/P&gt;&lt;P&gt;     F1NME               = ' '&lt;/P&gt;&lt;P&gt;     F2NME               = 'F110V-LAUFI'&lt;/P&gt;&lt;P&gt;     DISPLAY_LAUFK       = 'X'&lt;/P&gt;&lt;P&gt;     EXPLAIN_LAUFK       = ' '&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     LAUFD               = v_laufd&lt;/P&gt;&lt;P&gt;     LAUFI               = v_laufi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;date-low = v_laufd.&lt;/P&gt;&lt;P&gt;id-low = va_laufi.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:46:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766750#M1117343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T09:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766751#M1117344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ronny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the below example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say two parameters.&lt;/P&gt;&lt;P&gt;1. Plant&lt;/P&gt;&lt;P&gt;2. Material type C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now say u enter Plant 0820. and if u press F4 in Material Field, F4 has to show all the material of Plant 0820.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your question is as above here is the answer for that.&lt;/P&gt;&lt;P&gt;Else come out of Loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get all the material Using select query with respect to plant into one internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now using At Selection Screen on value-request for material.&lt;/P&gt;&lt;P&gt;call FM f4if_int_table_value_request.&lt;/P&gt;&lt;P&gt;Pass the internal table here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you press F4 for Material, u will get only those values corresponding to Plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope useful to U.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:47:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766751#M1117344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T09:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766752#M1117345</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;When you press F4 and selects the data for that field then immediately move the ID field to the parameter of the id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:48:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766752#M1117345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T09:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766753#M1117346</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;U need to use the fm DYNP_VALUES_UPDATE in order to update ther field V_LAUFI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: V_LAUFD TYPE F110V-LAUFD,
            V_LAUFI TYPE F110V-LAUFI.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR V_LAUFD.

  DATA: DYNAME     LIKE  D020S-PROG,
        DYNUMB     LIKE  D020S-DNUM,
        DYNPFIELDS TYPE  TABLE OF DYNPREAD WITH HEADER LINE.

  CALL FUNCTION 'F4_ZAHLLAUF'
       EXPORTING
            F1TYP         = 'D'
            F1NME         = ' '
            F2NME         = 'F110V-LAUFI'
            DISPLAY_LAUFK = 'X'
            EXPLAIN_LAUFK = ' '
       IMPORTING
            LAUFD         = V_LAUFD
            LAUFI         = V_LAUFI.

  DYNAME = SY-REPID.
  DYNUMB = SY-DYNNR.
  DYNPFIELDS-FIELDNAME  = 'V_LAUFI'.
  DYNPFIELDS-FIELDVALUE = V_LAUFI.
  APPEND DYNPFIELDS.

  CALL FUNCTION 'DYNP_VALUES_UPDATE'
       EXPORTING
            DYNAME     = DYNAME
            DYNUMB     = DYNUMB
       TABLES
            DYNPFIELDS = DYNPFIELDS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766753#M1117346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T09:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766754#M1117347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to mention both field names in the function call (I assume these are v_laufd and v_laufi):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'F4_ZAHLLAUF'
   EXPORTING
     F1TYP               = 'D'
     F1NME               = 'V_LAUFD'
     F2NME               = 'V_LUFI'
     DISPLAY_LAUFK       = 'X'
     EXPLAIN_LAUFK       = ' '
   IMPORTING
     LAUFD               = v_laufd
     LAUFI               = v_laufi.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no need for dynpro update and such things, just check what the standard is doing &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 09:53:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766754#M1117347</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-05T09:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766755#M1117348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is the event AT SELECTION-SCREEN ON VALUE-REQUEST &amp;lt;FIELD&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After leaving the event all values of all other input/output fields of selection-screen (except &amp;lt;FIELD&amp;gt;) will be lost: so if it needs to update other input/output fields in this event, the fm DYNP_VALUES_UPDATE has to be used just I've explained in my previuos answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 10:13:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766755#M1117348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T10:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766756#M1117349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;woud you please give it a try with the following example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS : p_laufd TYPE reguh-laufd,
             p_laufi TYPE reguh-laufi.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_laufd.

  CALL FUNCTION 'F4_ZAHLLAUF'
   EXPORTING
     f1typ               = 'D'
     f1nme               = 'P_LAUFD'
     f2nme               = 'P_LAUFI'
*   DISPLAY_LAUFK       = 'X'
*   EXPLAIN_LAUFK       = ' '
   IMPORTING
     laufd               = p_laufd
     laufi               = p_laufi.
* TABLES
*   LAUFK               =.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(pls. note the difference: in importing parameters f1nme and f2nme the names of the dynpro fields have to be mentioned)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 10:18:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766756#M1117349</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-05T10:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766757#M1117350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution can't work, see my answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 10:24:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766757#M1117350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T10:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766758#M1117351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Max is right Eric.&lt;/P&gt;&lt;P&gt;I already tried like u did but its not working.&lt;/P&gt;&lt;P&gt;anyway i got ans.&lt;/P&gt;&lt;P&gt;Thanks Max,&lt;/P&gt;&lt;P&gt;Thanks All.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 10:26:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766758#M1117351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T10:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766759#M1117352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;interesting... if I try than it works &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;can you copy the code here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, again, again: the importing parameters (f1nme and f2nme) of the FM has to get the &lt;EM&gt;names&lt;/EM&gt; of the two selection screen fields for the payment run and date, the DYNP_VALUE_UPDATE FM will be called inside the F4_ZAHLLAUF FM in this case&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modified source code of Max:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: V_LAUFD TYPE F110V-LAUFD,
            V_LAUFI TYPE F110V-LAUFI.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR V_LAUFD.

*  DATA: DYNAME     LIKE  D020S-PROG,
*        DYNUMB     LIKE  D020S-DNUM,
*        DYNPFIELDS TYPE  TABLE OF DYNPREAD WITH HEADER LINE.

  CALL FUNCTION 'F4_ZAHLLAUF'
       EXPORTING
            F1TYP         = 'D'
            F1NME         = 'V_LAUFD'
            F2NME         = 'V_LAUFI'
            DISPLAY_LAUFK = 'X'
            EXPLAIN_LAUFK = ' '
       IMPORTING
            LAUFD         = V_LAUFD
            LAUFI         = V_LAUFI.

*  DYNAME = SY-REPID.
*  DYNUMB = SY-DYNNR.
*  DYNPFIELDS-FIELDNAME  = 'V_LAUFI'.
*  DYNPFIELDS-FIELDVALUE = V_LAUFI.
*  APPEND DYNPFIELDS.
*
*  CALL FUNCTION 'DYNP_VALUES_UPDATE'
*       EXPORTING
*            DYNAME     = DYNAME
*            DYNUMB     = DYNUMB
*       TABLES
*            DYNPFIELDS = DYNPFIELDS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 10:27:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766759#M1117352</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-05T10:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766760#M1117353</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'm sorry Eric is right, that works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS : V_laufd TYPE reguh-laufd,
             V_laufi TYPE reguh-laufi.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR V_laufd.

  CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
      f1typ         = 'D'
      f1nme         = 'V_LAUFD'
      f2nme         = 'V_LAUFI'
      DISPLAY_LAUFK = 'X'
      EXPLAIN_LAUFK = ' '
    IMPORTING
      laufd         = V_laufd
      laufi         = V_laufi.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where is the trick?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just into the fm F4_ZAHLLAUF, here the fm DYNP_VALUES_UPDATE is called in order to update both fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 10:43:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766760#M1117353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-05T10:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766761#M1117354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;
&amp;gt;       f1nme         = 'V_LAUFD'
&amp;gt;       f2nme         = 'V_LAUFI'
&amp;gt;&lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Where is the trick?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Just into the fm F4_ZAHLLAUF, here the fm DYNP_VALUES_UPDATE is called in order to update both fields.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Max&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I left only the "tricky" change from the FM call - you can note the difference (I told earlier these are importing parameters, but no, they are exporting ones.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2008 10:54:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766761#M1117354</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-05T10:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766762#M1117355</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 just found this thread, because I have the same problem. I inserted the solution but it doesn't work sufficient.&lt;/P&gt;&lt;P&gt;When I choose F4 in the field LAUFD it succesfully shows all the payment runs. If I choose one of them only the field LAUFD will be updated. The field LAUFI remains empty. Here my listing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_laufd LIKE f110v-laufd OBLIGATORY,&lt;/P&gt;&lt;P&gt;                         p_laufi LIKE f110v-laufi OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&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;   At Selection-Screen                                               *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_laufd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4_ZAHLLAUF'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            f1typ         = 'D'&lt;/P&gt;&lt;P&gt;            f1nme         = 'F110V-LAUFD'&lt;/P&gt;&lt;P&gt;            f2nme         = 'F110V-LAUFI'&lt;/P&gt;&lt;P&gt;            display_laufk = 'X'&lt;/P&gt;&lt;P&gt;            explain_laufk = ' '&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            laufd         = p_laufd&lt;/P&gt;&lt;P&gt;            laufi         = p_laufi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is wrong on it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 08:39:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766762#M1117355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T08:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill another parameter automatically on selection screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766763#M1117356</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;got the solution. For my request it as necessary to use the function  DYNP_VALUES_UPDATE. Now it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank to all.&lt;/P&gt;&lt;P&gt;Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2009 09:36:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-fill-another-parameter-automatically-on-selection-screen/m-p/4766763#M1117356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-18T09:36:31Z</dc:date>
    </item>
  </channel>
</rss>

