<?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 - doubt in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076552#M729553</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But in your program when i put F4 its not asking any values yar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Nov 2007 06:45:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-26T06:45:05Z</dc:date>
    <item>
      <title>Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076548#M729549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            I am using the FM for F4 help inwhich i done a query also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      When i put F4, it populates all the values from the database,    But my requirement is when i put the F4, it needs to populate the restrictions screen first, from there only i will put input selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           How to do it, pls help me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 06:33:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076548#M729549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T06:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076549#M729550</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;for that filed do like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before writing t his code my parameter is also done same after writing t his it had given only values which satisfy my condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES : BEGIN OF ST_OBJID_SH,
         OTYPE TYPE HRP1000-OTYPE,
         OBJID TYPE HRP1000-OBJID,
        END OF ST_OBJID_SH.

DATA : IT_OBJID_SH TYPE STANDARD TABLE OF ST_OBJID_SH.
DATA : WA_OBJID_SH TYPE ST_OBJID_SH.

************SELECTION SCREEN DESIGN************************

SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.

*SELECT-OPTIONS : S_OTYPE FOR HRP1001-OTYPE NO INTERVALS .
SELECT-OPTIONS : S_OBJID FOR HRP1001-OBJID NO INTERVALS .
SELECT-OPTIONS : DATE FOR SY-DATUM NO-EXTENSION OBLIGATORY.

SELECTION-SCREEN END OF BLOCK B1.

***********END OF SELECTION SCREEN DESIGN******************

AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_OBJID-LOW.

*  IF S_OBJID IS NOT INITIAL.

    SELECT OTYPE OBJID FROM HRP1000
                 INTO TABLE IT_OBJID_SH
                 WHERE OTYPE = 'D'.

 IF SY-SUBRC EQ 0.

* SEARCH HELP FOR QUALIFICATION.

    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
*              DDIC_STRUCTURE         = ' '
        RETFIELD               =  'OBJID'
*              PVALKEY                = ' '
       DYNPPROG               = SY-REPID
       DYNPNR                 = SY-DYNNR
       DYNPROFIELD            = 'S_OBJID'
*              STEPL                  = 0
*              WINDOW_TITLE           =
*              VALUE                  = ' '
       VALUE_ORG              = 'S'
*              MULTIPLE_CHOICE        = ' '
*              DISPLAY                = ' '
*              CALLBACK_PROGRAM       = ' '
*              CALLBACK_FORM          = ' '
*              MARK_TAB               =
*            IMPORTING
*              USER_RESET             =
      TABLES
        VALUE_TAB              =  IT_OBJID_SH
*              FIELD_TAB              =
*              RETURN_TAB             = RETURN_TAB
*              DYNPFLD_MAPPING        =
*            EXCEPTIONS
*              PARAMETER_ERROR        = 1
*              NO_VALUES_FOUND        = 2
*              OTHERS                 = 3
              .
    IF SY-SUBRC &amp;lt;&amp;gt; 0.
*           MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
  ENDIF.

              .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Rewar di fusefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 06:36:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076549#M729550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T06:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076550#M729551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This can be done using Search help parameters. While creating Search help, it asks for Search help parameters. Specify your restriction parameters in that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kulwant Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 06:39:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076550#M729551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T06:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076551#M729552</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;   Goto SE11 display that search help and in dialog behavior tab set ur dialog type as dialog with value restriction. It will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 06:42:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076551#M729552</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-11-26T06:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076552#M729553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But in your program when i put F4 its not asking any values yar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 06:45:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076552#M729553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T06:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076553#M729554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           But am using search help FM yar, i have not created the serch help, now how can i do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 06:56:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076553#M729554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T06:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076554#M729555</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;no its working , ok place cursor in S_OBJID and press F4 &lt;/P&gt;&lt;P&gt;it will show values only related to that condition mentioned &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other wise do one thing write code for your requirment and try it ,it works fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if usefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 06:59:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076554#M729555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T06:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076555#M729556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the coding part which i done for Search help FM to the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i put F4, its populating all the values directly, but i want first the restriction screen. help me pls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF si_itab2 OCCURS 10 ,&lt;/P&gt;&lt;P&gt;          BUKRS    LIKE VBRK-BUKRS,&lt;/P&gt;&lt;P&gt;          VBELN    LIKE VBRK-VBELN,&lt;/P&gt;&lt;P&gt;          STCEG    LIKE VBRK-STCEG,&lt;/P&gt;&lt;P&gt;          KUNAG    LIKE VBRK-KUNAG,&lt;/P&gt;&lt;P&gt;          ERDAT    LIKE VBRK-ERDAT,&lt;/P&gt;&lt;P&gt;          FKDAT    LIKE VBRK-FKDAT,&lt;/P&gt;&lt;P&gt;          FKART    LIKE VBRK-FKART,&lt;/P&gt;&lt;P&gt;          AUBEL    LIKE VBRP-AUBEL,&lt;/P&gt;&lt;P&gt;        END OF si_itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CLEAR   : RETURN , DYNFIELDS , DYNMAP.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH : return , dynfields , dynmap , fieldtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT *   FROM VBRK&lt;/P&gt;&lt;P&gt;                INTO CORRESPONDING FIELDS OF TABLE si_itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT si_itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT SINGLE AUBEL FROM VBRP&lt;/P&gt;&lt;P&gt;                   INTO (si_itab2-AUBEL)&lt;/P&gt;&lt;P&gt;                   WHERE VBELN = si_itab2-VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MODIFY si_itab2.&lt;/P&gt;&lt;P&gt;    CLEAR : si_itab2.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&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        = 'VBELN'&lt;/P&gt;&lt;P&gt;      dynpprog        = sy-repid&lt;/P&gt;&lt;P&gt;      dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield     = 'VBRK-VBELN'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;      display         = 'F'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = si_itab2&lt;/P&gt;&lt;P&gt;      return_tab      = return&lt;/P&gt;&lt;P&gt;      dynpfld_mapping = dynmap&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;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;  READ TABLE return WITH KEY fieldname = 'VBRK-VBELN' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH : dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  dynfields-fieldname = return-retfield.&lt;/P&gt;&lt;P&gt;  dynfields-fieldvalue = return-fieldval.&lt;/P&gt;&lt;P&gt;  APPEND dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname     = sy-cprog&lt;/P&gt;&lt;P&gt;      dynumb     = sy-dynnr&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields = dynfields&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      OTHERS     = 8.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 07:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076555#M729556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T07:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076556#M729557</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;this an event level you have to call that function module under  event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_OBJID-LOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and give proper way like i had shown you above&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 07:12:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076556#M729557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T07:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076557#M729558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No i have done this in dialog programming actually.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 07:16:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076557#M729558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T07:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076558#M729559</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;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="646409"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="646409"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Attaching a search help to a field&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A search help can influence the behavior of a field when the input help is called. The search help must be assigned to the field in order to do this. You have the following options for this assignment: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attach search help to a data element / table or structure field / screen field / check table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conventionally search helps are attached to table fields or data elements. We shall see the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Attaching a search help to a table field&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Choose the field name, click on search help tab and&lt;/P&gt;&lt;P&gt;provide the name of the search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A search help is attached to a field of a table or structure in the maintenance transaction for this table/structure, analogously to attaching to a table. You must assign the interface parameters of the search help to any fields of the table/structure. The search field must be assigned to an EXPORT parameter of the search help at this time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attach the search help to the table field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The search help ZSTRAVELAG_NAME is therefore directly attached to the field AGENCYNUM of table ZSTRAVELAG. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Attaching a search help to a data element&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Provide the search help name and the parameter name&lt;/P&gt;&lt;P&gt;under the further characteristics tab of the data element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the input help of a field is defined by its data element, no further screen fields can be used in the input help. &lt;/P&gt;&lt;P&gt;Also note that the input F4 help would be available wherever the data element is used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Attaching a search help to a screen element&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A search help can be directly assigned to a screen field in two ways.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;The name of the search help must be entered in the Screen Painter in the Attributes for the field in the field Search help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The name of the search help can be defined for selection screens in ABAP reports in the PARAMETERS or SELECT-OPTIONS statement directly following the supplement MATCHCODE OBJECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, input help is only available for this particular screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Rewar dif usefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 07:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076558#M729559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T07:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076559#M729560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         Thanks for your valuable replies, but my requirement is,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         When i putting the F4, its taking so much time to populate all the values,&lt;/P&gt;&lt;P&gt;      and its Maximum Hit is 500, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                We can avoid this problem by 2 ways,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;             1, we should reduce the maximum hit, if so, how to reduce this, pls tell me, i dont know this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             2. Initially i need to open the restriction window not the data window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             how to do this, i hope u r getting me clearly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 07:30:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076559#M729560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T07:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - doubt</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076560#M729561</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;1, we should reduce the maximum hit, if so, how to reduce this, pls tell me, i dont know this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this can be done by select query , if write the select query properly ,eans perfect way then it will be ok to retrive data &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Initially i need to open the restriction window not the data window.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 07:34:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-doubt/m-p/3076560#M729561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T07:34:44Z</dc:date>
    </item>
  </channel>
</rss>

