<?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/3966042#M947251</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I should have mentioned I already checked the search help and it is 'dialog with value restriction.   the FM is called as follows:&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             = 'MARA'&lt;/P&gt;&lt;P&gt;            fieldname           = 'MATNR'&lt;/P&gt;&lt;P&gt;            searchhelp          = p_mtch&lt;/P&gt;&lt;P&gt;            multiple_choice     = 'X'&lt;/P&gt;&lt;P&gt;            suppress_recordlist = 'X'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;            return_tab          = it_data&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            field_not_found     = 1&lt;/P&gt;&lt;P&gt;            no_help_for_field   = 2&lt;/P&gt;&lt;P&gt;            inconsistent_help   = 3&lt;/P&gt;&lt;P&gt;            no_values_found     = 4&lt;/P&gt;&lt;P&gt;            OTHERS              = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works fine in 46b but does not in ECC 6.  We have not changed anything.  something must be different in the function module which is preventing the selection screen on this search help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jun 2008 12:03:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-19T12:03:42Z</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/3966037#M947246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are calling this function F4IF_FIELD_VALUE_REQUEST to display different search helps in a custom piece of code.   We are upgrading from 4.6b to ECC 603.  In 4.6b the function will display a selection screen for the user to enter values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ECC 603 , this is not happening , the function simply returns a list of records not allowing the user to enter any search criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 11:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/3966037#M947246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T11:17:24Z</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/3966038#M947247</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;pls check with the below sample code, by default the search option will come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables:&lt;/P&gt;&lt;P&gt;       t001s.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: ret_tab like ddshretval occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters:&lt;/P&gt;&lt;P&gt;           p_bukrs like t001s-bukrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for p_bukrs.&lt;/P&gt;&lt;P&gt;&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                   = 'T001S'&lt;/P&gt;&lt;P&gt;    fieldname                 = 'BUKRS'&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                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPNR                    = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPROFIELD               = ' '&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;LI level="1" type="ul"&gt;&lt;P&gt;  VALUE                     = ' '&lt;/P&gt;&lt;/LI&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                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SUPPRESS_RECORDLIST       = ' '&lt;/P&gt;&lt;/LI&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                = ret_tab&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;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    read table ret_tab index 1.&lt;/P&gt;&lt;P&gt;    p_bukrs = ret_tab-fieldval.&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;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Sreeram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 11:35:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/3966038#M947247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T11:35:56Z</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/3966039#M947248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;      You can provide search help name .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 11:38:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/3966039#M947248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T11:38:52Z</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/3966040#M947249</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;The main issue is that in Search help which u r using in ECC6 .&lt;/P&gt;&lt;P&gt;first check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to relevant serach help thru SE11.&lt;/P&gt;&lt;P&gt;Then with in that , you will find DIALOG Option which shud be checked ( I havent remeberd the screen at this momnet).&lt;/P&gt;&lt;P&gt;Check one more thing-- Dialog with Restrictions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above things should be mentioned in search help to have pop up box wen f4 is pressed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 11:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/3966040#M947249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T11:43:54Z</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/3966041#M947250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii,&lt;/P&gt;&lt;P&gt;F4IF_FIELD_VALUE_REQUEST - Shud be working fine,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just check with the Dialog type of the search help.&lt;/P&gt;&lt;P&gt;1.Display value imm...&lt;/P&gt;&lt;P&gt;2.Depends on set of values&lt;/P&gt;&lt;P&gt;3,Dialog with value restriction.&lt;/P&gt;&lt;P&gt;Change it accordingly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 11:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/3966041#M947250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T11:53:13Z</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/3966042#M947251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I should have mentioned I already checked the search help and it is 'dialog with value restriction.   the FM is called as follows:&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             = 'MARA'&lt;/P&gt;&lt;P&gt;            fieldname           = 'MATNR'&lt;/P&gt;&lt;P&gt;            searchhelp          = p_mtch&lt;/P&gt;&lt;P&gt;            multiple_choice     = 'X'&lt;/P&gt;&lt;P&gt;            suppress_recordlist = 'X'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;            return_tab          = it_data&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            field_not_found     = 1&lt;/P&gt;&lt;P&gt;            no_help_for_field   = 2&lt;/P&gt;&lt;P&gt;            inconsistent_help   = 3&lt;/P&gt;&lt;P&gt;            no_values_found     = 4&lt;/P&gt;&lt;P&gt;            OTHERS              = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works fine in 46b but does not in ECC 6.  We have not changed anything.  something must be different in the function module which is preventing the selection screen on this search help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 12:03:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/3966042#M947251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T12:03:42Z</dc:date>
    </item>
  </channel>
</rss>

