<?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: Search help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017224#M80320</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the FM 'F4IF_INT_TABLE_VALUE_REQUEST'.&lt;/P&gt;&lt;P&gt;U have to populate the VALUE_TAB with the values that should be shown in the f4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jul 2005 13:30:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-05T13:30:37Z</dc:date>
    <item>
      <title>Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017222#M80318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to create a search help in a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a parameter in a selection screen of type char.This field needs to charge the search help with certains values of a table (not all ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You know a way of doing that ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2005 12:59:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017222#M80318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-05T12:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017223#M80319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you can create a view over the table and do the search help over the view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2005 13:13:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017223#M80319</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-05T13:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017224#M80320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the FM 'F4IF_INT_TABLE_VALUE_REQUEST'.&lt;/P&gt;&lt;P&gt;U have to populate the VALUE_TAB with the values that should be shown in the f4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2005 13:30:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017224#M80320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-05T13:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017225#M80321</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;There are many ways of creating a search help for a field on a report. indeed one of the method was specified by rich heilman. the other ways are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) if the parameter has a search help then you can modify the values which appear my creating an search help exit and then modify the output values. specify the search help in the parameter declaration as:&lt;/P&gt;&lt;P&gt;p_matnr like mara-matnr mactchcode object 'search help'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) if you want to populate the database values as the F4 values for the parameter then use the following function module 'F4IF_INT_TABLE_VALUE_REQUEST' where you can get the table values for the specified tablename and field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) if you want to populate some explicit values apart from the table values then populate them on a internal table and later pass it to the Function module 'F4_IF_FIELD_VALUE_REQUEST'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2005 14:06:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017225#M80321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-05T14:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017226#M80322</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 use the FM:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_fields type standard table of help_value,&lt;/P&gt;&lt;P&gt;      wa_fields type help_value.&lt;/P&gt;&lt;P&gt;data: it_values type standard table of t_value,&lt;/P&gt;&lt;P&gt;      wa_value(30).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'HELP_VALUES_GET_WITH_TABLE'&lt;/P&gt;&lt;P&gt;       importing&lt;/P&gt;&lt;P&gt;            select_value = p_form "your parameter&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            fields       = it_fields&lt;/P&gt;&lt;P&gt;            valuetab     = it_values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;populate the it_fields with the fields you want&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;  wa_fields-tabname = 'TSP01'.&lt;/P&gt;&lt;P&gt;  wa_fields-fieldname = 'RQ2NAME'.&lt;/P&gt;&lt;P&gt;  wa_fields-selectflag = 'X'.&lt;/P&gt;&lt;P&gt;  append wa_fields to it_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fields-tabname = 'USR01'.&lt;/P&gt;&lt;P&gt;  wa_fields-fieldname = 'BNAME'.&lt;/P&gt;&lt;P&gt;  wa_fields-selectflag = ' '.&lt;/P&gt;&lt;P&gt;  append wa_fields to it_fields.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;populate the it_values with the data you want&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  select rqident rqowner&lt;/P&gt;&lt;P&gt;    into (tsp01-rqident, tsp01-rqowner)&lt;/P&gt;&lt;P&gt;    from tsp01.&lt;/P&gt;&lt;P&gt;    wa_values-rqident = tsp01-rqident.&lt;/P&gt;&lt;P&gt;    wa_values-rqowner = tsp01-rqowner.&lt;/P&gt;&lt;P&gt;    append wa_values to it_values.&lt;/P&gt;&lt;P&gt;  endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Maria João Rocha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2005 16:52:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1017226#M80322</guid>
      <dc:creator>MariaJooRocha</dc:creator>
      <dc:date>2005-07-12T16:52:26Z</dc:date>
    </item>
  </channel>
</rss>

