<?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: F4IF_FIELD_VALUE_REQUEST without dialog in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request-without-dialog/m-p/8302019#M1635744</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Keshav. But we are not calling the function in AT .. ON VALUE REQUEST event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are rather using the DEBI search help to search customers for an interface. We want the function to work silently, while we can pass various ways to search Customers using for example name, search term and some other criterion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Nov 2011 07:35:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-11-25T07:35:13Z</dc:date>
    <item>
      <title>F4IF_FIELD_VALUE_REQUEST without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request-without-dialog/m-p/8302017#M1635742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to call function F4IF_FIELD_VALUE_REQUEST without search value input dialog. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know F4IF_FIELD_VALUE_REQUEST has parameter SUPPRESS_RECORDLIST can be used to suppress the output record list dialog and instead return values in RETURN_TAB. But what we need is a way to suppress the input dialog and somehow pass the values directly for search fields through the calling program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What a team member is trying to do in our project is to call F4IF_FIELD_VALUE_REQUEST and feed the input value programmatically without dialog. We are trying to search Customers using search help DEBI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please any ideas in this direction would be much appreciated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you in advance,&lt;/P&gt;&lt;P&gt;Vishnu T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2011 06:54:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request-without-dialog/m-p/8302017#M1635742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-25T06:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request-without-dialog/m-p/8302018#M1635743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This question sounds basic, but considering the effort done from your side i would like to help you &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to use DYNP_VALUES_UPDATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS:pmatnr TYPE matnr.

DATA:repid TYPE sy-repid.

at selection-screen on value-request for pmatnr.

  DATA:w_dynpfields TYPE dynpread,
      i_dynpfields LIKE STANDARD TABLE OF dynpread.

  w_dynpfields-fieldname    = 'PMATNR'.
  w_dynpfields-fieldvalue   = 'A'.
  APPEND w_dynpfields TO i_dynpfields.

  CALL FUNCTION 'DYNP_VALUES_UPDATE'
       EXPORTING
            dyname     = repid
            dynumb     = sy-dynnr
       TABLES
            dynpfields = i_dynpfields.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2011 07:32:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request-without-dialog/m-p/8302018#M1635743</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-11-25T07:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request-without-dialog/m-p/8302019#M1635744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Keshav. But we are not calling the function in AT .. ON VALUE REQUEST event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are rather using the DEBI search help to search customers for an interface. We want the function to work silently, while we can pass various ways to search Customers using for example name, search term and some other criterion.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2011 07:35:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request-without-dialog/m-p/8302019#M1635744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-25T07:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST without dialog</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request-without-dialog/m-p/8302020#M1635745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishnu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please explain how your are planning to use F4IF_FIELD_VALUE_REQUEST in DEBI search help .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kesav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2011 07:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request-without-dialog/m-p/8302020#M1635745</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-11-25T07:47:55Z</dc:date>
    </item>
  </channel>
</rss>

