<?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: Process On Value Request with Search Help Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-with-search-help-problem/m-p/894495#M54015</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you be more specific please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The POV statement is in the screen flow logic, which calls a module containing the code.  How else should it be implemented?  I am on version 4.6C by-the-way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. I have added all of the code in my screen flow logic in the above code sample&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;-Jason&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jason DeLuca&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Apr 2005 19:29:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-04-08T19:29:55Z</dc:date>
    <item>
      <title>Process On Value Request with Search Help Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-with-search-help-problem/m-p/894493#M54013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a screen with a field that has a custom search help attached to it.  I am using Process On Value-Request which ultimately uses function module F4IF_FIELD_VALUE_REQUEST to return the selected value from the search help. The value is then moved to the screen field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE PROBLEM: If I enter a value in a field on the screen, then use the search help from a different field the first value I entered gets cleared. Here is a code sample. Any suggestions as to why this is happening?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: The values that get cleared are fields on the screen that I do not reference at all in user_command_2501.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****&lt;STRONG&gt;SCREEN 2500 FLOW LOGIC&lt;/STRONG&gt;*********&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE status_2500.&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE user_command_2500.&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;  FIELD makt-matnr MODULE user_command_2501.&lt;/P&gt;&lt;P&gt;**************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_2501 INPUT.&lt;/P&gt;&lt;P&gt;  ok_code = sy-ucomm.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            searchhelp      = 'ZWS_ASSETMATR'&lt;/P&gt;&lt;P&gt;            fieldname       = ' '&lt;/P&gt;&lt;P&gt;            tabname         = ' '&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            return_tab      = search_itab&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            no_values_found = 1.&lt;/P&gt;&lt;P&gt;  MOVE search_itab-fieldval TO: makt-matnr.&lt;/P&gt;&lt;P&gt;  REFRESH search_itab.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE maktg FROM makt INTO crea_description&lt;/P&gt;&lt;P&gt;    WHERE matnr = search_itab-fieldval.&lt;/P&gt;&lt;P&gt;  MOVE 'I' TO scrn_attr_sw.&lt;/P&gt;&lt;P&gt;  sy-ucomm = 'ENTER'.&lt;/P&gt;&lt;P&gt;  LEAVE SCREEN.&lt;/P&gt;&lt;P&gt;  CALL SCREEN 2500.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " user_command_2501  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jason DeLuca&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jason DeLuca&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2005 17:47:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-with-search-help-problem/m-p/894493#M54013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-08T17:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Process On Value Request with Search Help Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-with-search-help-problem/m-p/894494#M54014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jason&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems you should first revise your code since your POV is not implemented so good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar &amp;lt;a href="https://www.sdn.sap.com:443http://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.sdn.businesscard.sdnbusinesscard?u=qbk%2bsag%2bjiw%3d"&amp;gt;[ BC ]&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2005 19:24:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-with-search-help-problem/m-p/894494#M54014</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2005-04-08T19:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Process On Value Request with Search Help Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-with-search-help-problem/m-p/894495#M54015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you be more specific please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The POV statement is in the screen flow logic, which calls a module containing the code.  How else should it be implemented?  I am on version 4.6C by-the-way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. I have added all of the code in my screen flow logic in the above code sample&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;-Jason&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jason DeLuca&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2005 19:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-with-search-help-problem/m-p/894495#M54015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-04-08T19:29:55Z</dc:date>
    </item>
  </channel>
</rss>

