<?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 Hi in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3300195#M789986</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a match code object/search help for the required field. but i am getting only the values but not the description for that respective field. how to get that short text. its very urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the table i used if s063 and fields are fegrp, fecod , surcod , urgrp. (i created each match code obj for the field as user req)&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;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jan 2008 09:10:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-31T09:10:27Z</dc:date>
    <item>
      <title>Hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3300195#M789986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a match code object/search help for the required field. but i am getting only the values but not the description for that respective field. how to get that short text. its very urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the table i used if s063 and fields are fegrp, fecod , surcod , urgrp. (i created each match code obj for the field as user req)&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;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 09:10:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3300195#M789986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T09:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3300196#M789987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Sankar&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a dynamic f4 help. that has more control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk this sample&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;codetables: mara, makt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of btab occurs 0,&lt;/P&gt;&lt;P&gt;maktx like makt-maktx,&lt;/P&gt;&lt;P&gt;end of btab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data mak like makt-maktx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : return like ddshretval occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of dynpfields occurs 0.&lt;/P&gt;&lt;P&gt;include structure dynpread.&lt;/P&gt;&lt;P&gt;data: end of dynpfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;p_maktx like makt-maktx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Initialization.&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;&lt;/P&gt;&lt;P&gt;REFRESH ITAB.&lt;/P&gt;&lt;P&gt;SELECT matnr FROM mara INTO TABLE ITAB.&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;dynprofield = 'P_MATNR '&lt;/P&gt;&lt;P&gt;dynpprog = sy-REPID&lt;/P&gt;&lt;P&gt;dynpnr = sy-dynnr&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = ITAB&lt;/P&gt;&lt;P&gt;return_tab = return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single maktx from makt into mak where matnr = return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_matnr = return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refresh return.&lt;/P&gt;&lt;P&gt;clear return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move 'P_MAKTX' to dynpfields-fieldname.&lt;/P&gt;&lt;P&gt;move mak to dynpfields-fieldvalue.&lt;/P&gt;&lt;P&gt;append dynpfields.&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 = dynpfields&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;invalid_abapworkarea = 1&lt;/P&gt;&lt;P&gt;invalid_dynprofield = 2&lt;/P&gt;&lt;P&gt;invalid_dynproname = 3&lt;/P&gt;&lt;P&gt;invalid_dynpronummer = 4&lt;/P&gt;&lt;P&gt;invalid_request = 5&lt;/P&gt;&lt;P&gt;no_fielddescription = 6&lt;/P&gt;&lt;P&gt;undefind_error = 7&lt;/P&gt;&lt;P&gt;OTHERS = 8.&lt;/P&gt;&lt;P&gt;&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;refresh return.&lt;/P&gt;&lt;P&gt;clear return.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plzz reward if it is useful,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mahi&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 09:11:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3300196#M789987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T09:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3300197#M789988</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 field&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;Attaching a search help to a table field&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;Attaching a search help to a data element&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;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;&lt;/P&gt;&lt;P&gt;IF YOU WANT TO ATTCH A SERACH HELP TO THE SCREEN FILED THIS IS THE CODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;codeTYPES : 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.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IF USEFULL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 09:14:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3300197#M789988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T09:14:09Z</dc:date>
    </item>
  </channel>
</rss>

