<?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/3833767#M921921</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use the follwoing function module, you get search help. But you have to pass your table name, field names below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_itab type help_info, &lt;/P&gt;&lt;P&gt;rsmdy_ret type rsmdy. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_itab1 type table of dselc initial size 0, &lt;/P&gt;&lt;P&gt;it_itab2 type table of dval initial size 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_itab-tabname = 'GMGR'. " Table Name&lt;/P&gt;&lt;P&gt;it_itab-fieldname = 'GRANT_NBR'. " Field Name&lt;/P&gt;&lt;P&gt;it_itab-MCOBJ = 'GMGRANT'. " Name of the Search Help&lt;/P&gt;&lt;P&gt;it_itab-TCODE = 'CJ20N'. " Transaction Code&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; &amp;amp;*&lt;/P&gt;&lt;P&gt;&amp;amp; Function Module for calling Search Helps from DYNPRO &amp;amp;&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DD_SHLP_CALL_FROM_DYNP'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;HELP_INFOS = it_itab&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;SELECT_VALUE = SELECT_VALUE&lt;/P&gt;&lt;P&gt;RSMDY_RET = RSMDY_RET&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DYNPSELECT = it_itab1&lt;/P&gt;&lt;P&gt;DYNPVALUETAB = it_itab2&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;others = 1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass the search help value to a temporary variable &lt;/P&gt;&lt;P&gt;l_temp = select_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;KUmar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 May 2008 06:31:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-12T06:31:56Z</dc:date>
    <item>
      <title>Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3833766#M921920</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;  I need search help for absence type and Employee sub group based on the country selected by the user in the selection screen. The country selections are in radio button.&lt;/P&gt;&lt;P&gt;I heard that the following Function Module can be used to do that,&lt;/P&gt;&lt;P&gt;DD_SHLP_CALL_FROM_DYNP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell how to use it or any other way to give search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and Regards,&lt;/P&gt;&lt;P&gt;Arunsri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2008 06:24:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3833766#M921920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-12T06:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3833767#M921921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use the follwoing function module, you get search help. But you have to pass your table name, field names below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_itab type help_info, &lt;/P&gt;&lt;P&gt;rsmdy_ret type rsmdy. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_itab1 type table of dselc initial size 0, &lt;/P&gt;&lt;P&gt;it_itab2 type table of dval initial size 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_itab-tabname = 'GMGR'. " Table Name&lt;/P&gt;&lt;P&gt;it_itab-fieldname = 'GRANT_NBR'. " Field Name&lt;/P&gt;&lt;P&gt;it_itab-MCOBJ = 'GMGRANT'. " Name of the Search Help&lt;/P&gt;&lt;P&gt;it_itab-TCODE = 'CJ20N'. " Transaction Code&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; &amp;amp;*&lt;/P&gt;&lt;P&gt;&amp;amp; Function Module for calling Search Helps from DYNPRO &amp;amp;&lt;/P&gt;&lt;P&gt;&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DD_SHLP_CALL_FROM_DYNP'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;HELP_INFOS = it_itab&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;SELECT_VALUE = SELECT_VALUE&lt;/P&gt;&lt;P&gt;RSMDY_RET = RSMDY_RET&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DYNPSELECT = it_itab1&lt;/P&gt;&lt;P&gt;DYNPVALUETAB = it_itab2&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;others = 1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass the search help value to a temporary variable &lt;/P&gt;&lt;P&gt;l_temp = select_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;KUmar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2008 06:31:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3833767#M921921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-12T06:31:56Z</dc:date>
    </item>
  </channel>
</rss>

