<?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 screen element search help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-search-help/m-p/3318274#M794883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;i set input/output field search help in screen.&lt;/P&gt;&lt;P&gt;when i choose one of the values in f4 help i hav to do modify another screen element how to do it.&lt;/P&gt;&lt;P&gt;please reply if u know..&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jan 2008 07:23:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-30T07:23:39Z</dc:date>
    <item>
      <title>screen element search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-search-help/m-p/3318274#M794883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;i set input/output field search help in screen.&lt;/P&gt;&lt;P&gt;when i choose one of the values in f4 help i hav to do modify another screen element how to do it.&lt;/P&gt;&lt;P&gt;please reply if u know..&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 07:23:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-search-help/m-p/3318274#M794883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T07:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: screen element search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-search-help/m-p/3318275#M794884</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;Attaching a search help to a screen element&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;In this case, the search help is only available for this screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR by useing FM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer this code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF ST_OBJID_SH,&lt;/P&gt;&lt;P&gt;OTYPE TYPE HRP1000-OTYPE,&lt;/P&gt;&lt;P&gt;OBJID TYPE HRP1000-OBJID,&lt;/P&gt;&lt;P&gt;END OF ST_OBJID_SH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : IT_OBJID_SH TYPE STANDARD TABLE OF ST_OBJID_SH.&lt;/P&gt;&lt;P&gt;DATA : WA_OBJID_SH TYPE ST_OBJID_SH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;STRONG&gt;SELECTION SCREEN DESIGN&lt;/STRONG&gt;***********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*SELECT-OPTIONS : S_OTYPE FOR HRP1001-OTYPE NO INTERVALS .&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_OBJID FOR HRP1001-OBJID NO INTERVALS .&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : DATE FOR SY-DATUM NO-EXTENSION OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********&lt;STRONG&gt;END OF SELECTION SCREEN DESIGN&lt;/STRONG&gt;*****************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********&lt;STRONG&gt;VALIDATION FOR SCREEN FIELDS&lt;/STRONG&gt;********************&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF S_OBJID IS NOT INITIAL. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT OTYPE OBJID FROM HRP1000&lt;/P&gt;&lt;P&gt;INTO TABLE IT_OBJID_SH&lt;/P&gt;&lt;P&gt;WHERE OTYPE = 'D'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SEARCH HELP FOR QUALIFICATION. &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;&lt;/P&gt;&lt;P&gt;DDIC_STRUCTURE = ' ' &lt;/P&gt;&lt;P&gt;RETFIELD = 'OBJID'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PVALKEY = ' ' &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 = 'S_OBJID'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEPL = 0 &lt;/P&gt;&lt;P&gt;WINDOW_TITLE = &lt;/P&gt;&lt;P&gt;VALUE = ' ' &lt;/P&gt;&lt;P&gt;VALUE_ORG = 'S'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MULTIPLE_CHOICE = ' ' &lt;/P&gt;&lt;P&gt;DISPLAY = ' ' &lt;/P&gt;&lt;P&gt;CALLBACK_PROGRAM = ' ' &lt;/P&gt;&lt;P&gt;CALLBACK_FORM = ' ' &lt;/P&gt;&lt;P&gt;MARK_TAB = &lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;USER_RESET = &lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;VALUE_TAB = IT_OBJID_SH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD_TAB = &lt;/P&gt;&lt;P&gt;RETURN_TAB = RETURN_TAB &lt;/P&gt;&lt;P&gt;DYNPFLD_MAPPING = &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;&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;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward Points if found helpfull..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Cheers,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Chandra Sekhar.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 07:34:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-element-search-help/m-p/3318275#M794884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-30T07:34:06Z</dc:date>
    </item>
  </channel>
</rss>

