<?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: triggering without enter button on F4 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/triggering-without-enter-button-on-f4/m-p/1147135#M116474</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this program...i am assuming you are talking about a Z report program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  yytest88 LINE-COUNT 20 NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_param1(5),&lt;/P&gt;&lt;P&gt;             p_param2(5).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : itab like DYNPREAD occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for p_param1.&lt;/P&gt;&lt;P&gt;  p_param2 = 'my value'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-fieldname = 'P_PARAM2'.&lt;/P&gt;&lt;P&gt;itab-fieldvalue = p_param2.&lt;/P&gt;&lt;P&gt;append itab.&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                     = 'YYTEST88'&lt;/P&gt;&lt;P&gt;      dynumb                     = '1000'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      dynpfields                 = itab&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     INVALID_ABAPWORKAREA       = 1&lt;/P&gt;&lt;P&gt;     INVALID_DYNPROFIELD        = 2&lt;/P&gt;&lt;P&gt;     INVALID_DYNPRONAME         = 3&lt;/P&gt;&lt;P&gt;     INVALID_DYNPRONUMMER       = 4&lt;/P&gt;&lt;P&gt;     INVALID_REQUEST            = 5&lt;/P&gt;&lt;P&gt;     NO_FIELDDESCRIPTION        = 6&lt;/P&gt;&lt;P&gt;     UNDEFIND_ERROR             = 7&lt;/P&gt;&lt;P&gt;     OTHERS                     = 8.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&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;Start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; p_param1, p_param2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Feb 2006 12:56:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-08T12:56:10Z</dc:date>
    <item>
      <title>triggering without enter button on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/triggering-without-enter-button-on-f4/m-p/1147132#M116471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have parameter box and when i enter a value and press F4 it should trigger and get the corresponding value in the next parameter box (without enter or pressing any bUtton) The only button whihc is pressed is f4 ? ANy ideas how to trigger this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 12:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/triggering-without-enter-button-on-f4/m-p/1147132#M116471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-08T12:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: triggering without enter button on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/triggering-without-enter-button-on-f4/m-p/1147133#M116472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for that we need to use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fn module, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DYNPRO_VALUES_READ before just calling F4IF_INT_TABLE_VALUE_DISPLAY,  which reads screen values. no neED TO PRESS ENTER.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 12:51:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/triggering-without-enter-button-on-f4/m-p/1147133#M116472</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-02-08T12:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: triggering without enter button on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/triggering-without-enter-button-on-f4/m-p/1147134#M116473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;parameters: a(10) ,&lt;/P&gt;&lt;P&gt;            b(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for a .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here move the value to field b .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 12:54:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/triggering-without-enter-button-on-f4/m-p/1147134#M116473</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-02-08T12:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: triggering without enter button on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/triggering-without-enter-button-on-f4/m-p/1147135#M116474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this program...i am assuming you are talking about a Z report program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  yytest88 LINE-COUNT 20 NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_param1(5),&lt;/P&gt;&lt;P&gt;             p_param2(5).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : itab like DYNPREAD occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for p_param1.&lt;/P&gt;&lt;P&gt;  p_param2 = 'my value'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-fieldname = 'P_PARAM2'.&lt;/P&gt;&lt;P&gt;itab-fieldvalue = p_param2.&lt;/P&gt;&lt;P&gt;append itab.&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                     = 'YYTEST88'&lt;/P&gt;&lt;P&gt;      dynumb                     = '1000'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      dynpfields                 = itab&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     INVALID_ABAPWORKAREA       = 1&lt;/P&gt;&lt;P&gt;     INVALID_DYNPROFIELD        = 2&lt;/P&gt;&lt;P&gt;     INVALID_DYNPRONAME         = 3&lt;/P&gt;&lt;P&gt;     INVALID_DYNPRONUMMER       = 4&lt;/P&gt;&lt;P&gt;     INVALID_REQUEST            = 5&lt;/P&gt;&lt;P&gt;     NO_FIELDDESCRIPTION        = 6&lt;/P&gt;&lt;P&gt;     UNDEFIND_ERROR             = 7&lt;/P&gt;&lt;P&gt;     OTHERS                     = 8.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&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;Start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; p_param1, p_param2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2006 12:56:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/triggering-without-enter-button-on-f4/m-p/1147135#M116474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-08T12:56:10Z</dc:date>
    </item>
  </channel>
</rss>

