<?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/3949208#M944237</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;We can restrict the values in F4 help of one parameter depending upon the values selected in the previous parameter on the selection screen.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example: In the following selection-screen if you select a particular value for the field ERNAM (created by) then the F4 help for material should show only the material numbers on the particular date, i.e., the value entered in the ERNAM (created by) field.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a sample code-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : it_return1 LIKE ddshretval OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       it_return2 LIKE ddshretval OCCURS 0 WITH HEADER LINE.DATA: BEGIN OF it_ernam OCCURS 0,&lt;/P&gt;&lt;P&gt;      ernam LIKE mara-ernam,&lt;/P&gt;&lt;P&gt;      END OF it_ernam.DATA: BEGIN OF it_matnr OCCURS 0,&lt;/P&gt;&lt;P&gt;      matnr LIKE mara-matnr,&lt;/P&gt;&lt;P&gt;      END OF it_matnr.PARAMETERS: p_ernam LIKE mara-ernam,&lt;/P&gt;&lt;P&gt;            p_matnr LIKE mara-matnr.DATA m LIKE mara-matnr.AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_ernam.  SELECT ernam FROM mara INTO TABLE it_ernam.  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'P_ERNAM'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = it_ernam&lt;/P&gt;&lt;P&gt;      return_tab      = it_return1&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.  p_ernam = it_return1-fieldval.  SELECT matnr FROM mara INTO TABLE it_matnr WHERE ernam = p_ernam.AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_matnr. CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'P_MATNR'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = it_matnr&lt;/P&gt;&lt;P&gt;      return_tab      = it_return2&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;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2008 05:52:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-04T05:52:58Z</dc:date>
    <item>
      <title>search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949204#M944233</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;Can anyone please  tel me any function module to be used for search help???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:47:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949204#M944233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949205#M944234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Try this FM &lt;STRONG&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949205#M944234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949206#M944235</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;Try Using this Function Module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION &lt;STRONG&gt;'F4IF_FIELD_VALUE_REQUEST'&lt;/STRONG&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            tabname     = 'DEMOF4HELP'&lt;/P&gt;&lt;P&gt;            fieldname   = 'CARRIER1'&lt;/P&gt;&lt;P&gt;            dynpprog    = progname&lt;/P&gt;&lt;P&gt;            dynpnr      = dynnum&lt;/P&gt;&lt;P&gt;            dynprofield = 'CARRIER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if Helpfull,&lt;/P&gt;&lt;P&gt; Naresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:51:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949206#M944235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949207#M944236</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;You can do this by two way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Make a help by using SE11 &amp;amp; attach it to your field like this 'parameters abc like zstudent-name matchcode object id = search help name'&lt;/P&gt;&lt;P&gt;&amp;amp;&lt;/P&gt;&lt;P&gt;2. Use Function module to make help on your field by using this coding.&lt;/P&gt;&lt;P&gt;********************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lc_vbeln LIKE vbrk-vbeln,&lt;/P&gt;&lt;P&gt;ltab_fields LIKE help_value OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BEGIN OF ltab_values OCCURS 0,&lt;/P&gt;&lt;P&gt;feld(40) TYPE c,&lt;/P&gt;&lt;P&gt;END OF ltab_values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;**&amp;amp; Form HELP_CHECK&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;text &lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;FORM help_check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set up fields to retrieve data &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ltab_fields-tabname = 'VBRK'.&lt;/P&gt;&lt;P&gt;ltab_fields-fieldname = 'VBELN'.&lt;/P&gt;&lt;P&gt;ltab_fields-selectflag = 'X'.&lt;/P&gt;&lt;P&gt;APPEND ltab_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ltab_fields-tabname = 'VBRK'.&lt;/P&gt;&lt;P&gt;ltab_fields-fieldname = 'FKDAT'.&lt;/P&gt;&lt;P&gt;ltab_fields-selectflag = space.&lt;/P&gt;&lt;P&gt;APPEND ltab_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fill values &lt;/P&gt;&lt;P&gt;SELECT * FROM vbrk WHERE kunag = 'RICO0US'.&lt;/P&gt;&lt;P&gt;ltab_values-feld = vbrk-vbeln.&lt;/P&gt;&lt;P&gt;APPEND ltab_values.&lt;/P&gt;&lt;P&gt;ltab_values-feld = vbrk-fkdat.&lt;/P&gt;&lt;P&gt;APPEND ltab_values.&lt;/P&gt;&lt;P&gt;ENDSELECT.&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;EXPORTING&lt;/P&gt;&lt;P&gt;fieldname = 'VBELN'&lt;/P&gt;&lt;P&gt;tabname = 'VBRK'&lt;/P&gt;&lt;P&gt;title_in_values_list = 'Select a value'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;select_value = pr_vbeln&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;fields = ltab_fields&lt;/P&gt;&lt;P&gt;valuetab = ltab_values&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;field_not_in_ddic = 01&lt;/P&gt;&lt;P&gt;more_then_one_selectfield = 02&lt;/P&gt;&lt;P&gt;no_selectfield = 03.&lt;/P&gt;&lt;P&gt;ENDFORM. "fiscal_year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;End of Coding&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make this coding according to your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rishika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:51:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949207#M944236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949208#M944237</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;We can restrict the values in F4 help of one parameter depending upon the values selected in the previous parameter on the selection screen.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example: In the following selection-screen if you select a particular value for the field ERNAM (created by) then the F4 help for material should show only the material numbers on the particular date, i.e., the value entered in the ERNAM (created by) field.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a sample code-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : it_return1 LIKE ddshretval OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       it_return2 LIKE ddshretval OCCURS 0 WITH HEADER LINE.DATA: BEGIN OF it_ernam OCCURS 0,&lt;/P&gt;&lt;P&gt;      ernam LIKE mara-ernam,&lt;/P&gt;&lt;P&gt;      END OF it_ernam.DATA: BEGIN OF it_matnr OCCURS 0,&lt;/P&gt;&lt;P&gt;      matnr LIKE mara-matnr,&lt;/P&gt;&lt;P&gt;      END OF it_matnr.PARAMETERS: p_ernam LIKE mara-ernam,&lt;/P&gt;&lt;P&gt;            p_matnr LIKE mara-matnr.DATA m LIKE mara-matnr.AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_ernam.  SELECT ernam FROM mara INTO TABLE it_ernam.  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'P_ERNAM'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = it_ernam&lt;/P&gt;&lt;P&gt;      return_tab      = it_return1&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.  p_ernam = it_return1-fieldval.  SELECT matnr FROM mara INTO TABLE it_matnr WHERE ernam = p_ernam.AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_matnr. CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'P_MATNR'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = it_matnr&lt;/P&gt;&lt;P&gt;      return_tab      = it_return2&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;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:52:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949208#M944237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949209#M944238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A search help describes a standard process of an input help for a field. The special semantics of the field could require that some points deviate from this standard. Such a deviation from the standard can also be implemented with a search help exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The input help process should look as much the same as possible throughout the entire system. Search help exits should therefore only be used for exceptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A search help exit is a function module that has a predefined interface. A search help exit is called at certain times by the help processor. The administrative data of the help processor are passed to the search help exit using the interface. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can store your own program logic that manipulates this administrative data in the search help exit. Individual steps of the input help process can be skipped with a search help exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each search help exit must have the same interface as function module &lt;STRONG&gt;F4IF_SHLP_EXIT_EXAMPLE&lt;/STRONG&gt; (is used as pattern for all the search help exits to be created). You can find more information about the interface in the documentation for this function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Nagesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949209#M944238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949210#M944239</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;creating elementary search help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select the object class Search help in the initial screen of the ABAP Dictionary, enter the name of the search help and choose Create. &lt;/P&gt;&lt;P&gt;A dialog box appears in which you must select the type of search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select Elementary search help and choose Continue. &lt;/P&gt;&lt;P&gt;The maintenance screen for elementary search helps appears.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter an explanatory text in the field Short text. &lt;/P&gt;&lt;P&gt;You can search for example for the search help using this short text at a later time with the R/3 Repository Information System (with Utilities ® Infosystem).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select the selection method of the search help. &lt;/P&gt;&lt;P&gt;You can enter the name of a table or a view (database view, projection view or help view) here. If there is a text table for the specified table, its name is automatically entered in the corresponding field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In exceptions it could be necessary to change the standard process defined by the search help. You can implement the deviation from the standard using a search help exit. &lt;/P&gt;&lt;P&gt;In this case enter the name of the search help exit in the corresponding field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Choose the dialog type of the search help. &lt;/P&gt;&lt;P&gt;The dialog type defines how the hit list is displayed in the input help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define the parameters for the search help. &lt;/P&gt;&lt;P&gt;All the fields of the chosen selection method are offered by the input help for the field Parameter. Choose the parameters you required from this list. The data element of the parameter is automatically copied from the selection method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select the Imp flag if it is an import parameter. Select the Exp flag if it is an export parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can define the dialog for the input help with the fields LPos, SPos and SDis. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter the position in the hit list where the parameter should be displayed in LPos. If you enter nothing or the value 0 here, the parameter is not displayed in the hit list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can define the position where the parameter should appear in the dialog box for value selection in SPos. If you enter nothing or the value 0 here, the parameter is not displayed in the dialog box for value selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you set the SDis flag, the parameter will become a pure display field in the dialog box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Default value field you can assign the parameter a default value (see Default Values for Search Help Parameters) that takes effect if the parameter is not explicitly defined when it is attached to a field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the search help is to be accessed with a short cut, you must define a one-place ID in the Short cut field. &lt;/P&gt;&lt;P&gt;All the elementary search helps contained in a collective search help should have different short cuts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save your entries. &lt;/P&gt;&lt;P&gt;A dialog box appears in which you have to assign a development class to the search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activate the search help.&lt;/P&gt;&lt;P&gt;Information on the activation process can be found in the activation log. You can call the activation log with Utilities ® Activation log. If errors occurred during activation, the activation log is automatically displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:58:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949210#M944239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949211#M944240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : MARA.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_MARA OCCURS 0,&lt;/P&gt;&lt;P&gt;MATNR LIKE MARA-MATNR,&lt;/P&gt;&lt;P&gt;END OF IT_MARA.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA : IT_RETURN TYPE STANDARD TABLE OF DDSHRETVAL WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS : P_MATNR LIKE MARA-MATNR.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_MATNR.&lt;/P&gt;&lt;P&gt;  SELECT MATNR FROM MARA UP TO 10 ROWS INTO TABLE IT_MARA.&lt;/P&gt;&lt;P&gt;  SORT IT_MARA BY MATNR.&lt;/P&gt;&lt;P&gt;  DELETE ADJACENT DUPLICATES FROM IT_MARA COMPARING MATNR.&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        = 'MATNR'&lt;/P&gt;&lt;P&gt;      DYNPPROG        = SY-REPID&lt;/P&gt;&lt;P&gt;      DYNPNR          = '1000'&lt;/P&gt;&lt;P&gt;      DYNPROFIELD     = 'P_MATNR'&lt;/P&gt;&lt;P&gt;      VALUE_ORG       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      VALUE_TAB       = IT_MARA&lt;/P&gt;&lt;P&gt;      RETURN_TAB      = IT_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;    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;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Reward&lt;/P&gt;&lt;P&gt;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 06:11:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3949211#M944240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T06:11:57Z</dc:date>
    </item>
  </channel>
</rss>

