<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032031#M84051</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain how I could use this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Nov 2005 11:28:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-16T11:28:50Z</dc:date>
    <item>
      <title>F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032020#M84040</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 looking to retrieve a list of all possible values for a given screen/table and field.  I have come across F4IF_FIELD_VALUE_REQUEST which seems to solve most of my problem.  The only issue I have is that calling this function module sometimes brings up a dialog that I wish to supress.  I can supress the results by setting the SUPPRESS_RECORDLIST parameter but I cannot find a way to supress all dialogs and only return the results in a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm hoping this is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Charles&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 10:01:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032020#M84040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T10:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032021#M84041</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;Here is the sample code for the FM 'F4IF_INT_TABLE_VALUE_REQUEST'.THis will serve your purpose.Kindly reward points by clikcing the star on the left of reply,if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables kna1.&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;begin of t_values occurs 2,&lt;/P&gt;&lt;P&gt;value like kna1-begru,&lt;/P&gt;&lt;P&gt;end of t_values,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_return like ddshretval occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options s_begru for kna1-begru.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for s_begru-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refresh t_values.&lt;/P&gt;&lt;P&gt;t_values = 'PAR*'.&lt;/P&gt;&lt;P&gt;append t_values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_values = 'UGG'.&lt;/P&gt;&lt;P&gt;append t_values.&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 = 'BEGRU'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;value_tab = t_values&lt;/P&gt;&lt;P&gt;return_tab = t_return&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 sy-subrc = 0.&lt;/P&gt;&lt;P&gt;read table t_return index 1.&lt;/P&gt;&lt;P&gt;s_begru-low = t_return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 10:06:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032021#M84041</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-11-15T10:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032022#M84042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Charles Evans &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using function module:  F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function module also retrieve a list of all possible values for a given screen/table and field.&lt;/P&gt;&lt;P&gt;And you don't need to supress any dialog box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Sample code of the same: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GO TO se51.&lt;/P&gt;&lt;P&gt;PROGRAM:   DEMO_DROPDOWN_LIST_BOX&lt;/P&gt;&lt;P&gt;SCREEN :   0100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vijay Raheja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 10:09:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032022#M84042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T10:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032023#M84043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I may have the wrong end of the stick here but I couldn't get F4IF_INT_TABLE_VALUE_REQUEST to automatically bring back the possible values for the given table and field.  Instead, I had to manually populate the VALUE_TAB table with the values that were to be displayed on the subsequent form. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldn't find a way to do this automatically nor could i find a way to do this without any dialogs being displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 10:20:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032023#M84043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T10:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032024#M84044</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;Instead of appending manually,use select statement to fetch the data from the required table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 10:30:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032024#M84044</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-11-15T10:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032025#M84045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think we have 2 options for list of all possible values.&lt;/P&gt;&lt;P&gt;*************************&lt;/P&gt;&lt;P&gt;1.   refresh t_itab.&lt;/P&gt;&lt;P&gt;  clear t_return.&lt;/P&gt;&lt;P&gt;  select pernr  from zfdmr_records into table t_itab.&lt;/P&gt;&lt;P&gt;  delete adjacent duplicates from t_itab.&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DDIC_STRUCTURE         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      RETFIELD               = 'PERNR'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PVALKEY                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     DYNPPROG               = sy-cprog&lt;/P&gt;&lt;P&gt;     DYNPNR                 = sy-dynnr&lt;/P&gt;&lt;P&gt;     DYNPROFIELD            = 'ZFDMR_RECORDS-PERNR'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STEPL                  = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WINDOW_TITLE           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  VALUE                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     VALUE_ORG              = 'S'&lt;/P&gt;&lt;P&gt;     MULTIPLE_CHOICE        = ' '&lt;/P&gt;&lt;P&gt;     DISPLAY                = 'F'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_PROGRAM       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_FORM          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      VALUE_TAB              = t_itab&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIELD_TAB              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     RETURN_TAB             = t_return&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPFLD_MAPPING        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARAMETER_ERROR        = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_VALUES_FOUND        = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                 = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  READ TABLE t_return INDEX 1.&lt;/P&gt;&lt;P&gt;  p_s_pernr = t_return-fieldval.&lt;/P&gt;&lt;P&gt;*******&lt;/P&gt;&lt;P&gt;2. If it is Z-Table you can fill the List of possible values in the DOMAIN level.&lt;/P&gt;&lt;P&gt;That is in the DOMAIN--&amp;gt;Value Range.&lt;/P&gt;&lt;P&gt;In this you can give values what are all the list of possible values.&lt;/P&gt;&lt;P&gt;Then you need to get this values from table DD07T.&lt;/P&gt;&lt;P&gt;From this table you need to go to FM 'F4IF_FIELD_VALUE_REQUEST'.&lt;/P&gt;&lt;P&gt;*****************&lt;/P&gt;&lt;P&gt;I hope this will help you.&lt;/P&gt;&lt;P&gt;If your issue is solved with this award points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Deepak333 k&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 11:03:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032025#M84045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T11:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032026#M84046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem with the solutions you have privded is that it requires me to know where the possible values come from.  I am looking at a more generic approach to this solution where I do not have to manually populate any tables with the possible values. (ie.  No SELECT statements to fill an internal table with the possible values)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F4IF_FIELD_VALUE_REQUEST seems to do this without having to know any underlying tables but my problem is that with some fields a dialog box is shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take the following example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ITAB TYPE TABLE OF DDSHRETVAL WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_TABLE LIKE DFIES-TABNAME DEFAULT 'RMMG1'.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_FIELD LIKE DFIES-FIELDNAME DEFAULT 'MATNR'.&lt;/P&gt;&lt;P&gt;&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;    TABNAME                   = P_TABLE&lt;/P&gt;&lt;P&gt;    FIELDNAME                 = P_FIELD&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEARCHHELP                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SHLPPARAM                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPPROG                  = 'SAPLMGMM'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPNR                    = '0060'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPROFIELD               = 'MATNR'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STEPL                     = 0&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   VALUE                     = '*'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MULTIPLE_CHOICE           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DISPLAY                   = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   SUPPRESS_RECORDLIST       = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_PROGRAM          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_FORM             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   RETURN_TAB                = ITAB&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIELD_NOT_FOUND           = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_HELP_FOR_FIELD         = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INCONSISTENT_HELP         = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_VALUES_FOUND           = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                    = 5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the default values of RMMG1 and MATNR, the code will pop up a dialog.  Once the dialog is closed, the results I want are returned to ITAB.  If I use SFLIGHT and CARRID as another test, the dialog is not shown and the results are available to me in ITAB.  I want to know if there is anyway I can specify that no dialog box should be shown at all.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope the above explains the problem a little more clearly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Charles&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 11:19:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032026#M84046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T11:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032027#M84047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Charles Evans  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Definitely SUPPRESS_RECORDLIST = 'X' suppresses the dialogues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But Setting the parameter does not automatically suppress all dialogs. Depending on the search help,the dialoges for restricting and for selecting an elementary search help can still appear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the same case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setting this parameter reflects the most common application.If you need other settings, you can overwrite CALLCONTROL in a CALLBACK form.&lt;/P&gt;&lt;P&gt;Like for Personal help values are not used. &amp;lt;b&amp;gt;set (CALLCONTROL-PVALUES = 'D'.)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go inside code of function module 'F4IF_FIELD_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;and read &amp;lt;b&amp;gt;Function Module Documentation.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vijay Raheja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 11:52:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032027#M84047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T11:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032028#M84048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try uncommenting he parameter below and do as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change from&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;* DISPLAY = 'X'&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;DISPLAY = SPACE&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 13:18:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032028#M84048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T13:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032029#M84049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have setup a callback and changed CALLCONTROL-PVALUES to 'D'.  This doesn't seem to make any difference.  Nor does changing the DISPLAY parameter of the main call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The two CHANGING parameters I have are: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  shlp_top TYPE SHLP_DESCR_T&lt;/P&gt;&lt;P&gt;  callcontrol TYPE ddshf4ctrl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there anything in those parameters that I can change to stop the display of the entire form?  I have managed to remove the maximum records section from the form but I don't want the form shown at all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 14:53:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032029#M84049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T14:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032030#M84050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this is what you need F4IF_SELECT_VALUES&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2005 18:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032030#M84050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-15T18:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032031#M84051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain how I could use this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2005 11:28:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1032031#M84051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-16T11:28:50Z</dc:date>
    </item>
  </channel>
</rss>

