<?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: elementary search help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/elementary-search-help/m-p/8831712#M1683253</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to look at this thread. &lt;A _jive_internal="true" class="active_link" href="https://answers.sap.com/thread/414626" title="http://scn.sap.com/thread/414626"&gt;http://scn.sap.com/thread/414626&lt;/A&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;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jake&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 May 2012 07:41:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-05-23T07:41:04Z</dc:date>
    <item>
      <title>elementary search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elementary-search-help/m-p/8831711#M1683252</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;&lt;/P&gt;&lt;P&gt;create the search help (elementory search help) from se11, but i want to provide the search help depending on the condition &lt;/P&gt;&lt;P&gt;ex: from but000 table i want to display 3 fields&lt;/P&gt;&lt;P&gt;partner ,&amp;nbsp; name_first ,&amp;nbsp; name_last&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; these three fields should be display depending on bu_sort2 = 'PDD'&lt;/P&gt;&lt;P&gt;here bu_sort2 is also from the same table but000 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i just create elementory search help , but how to provide this condition base only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(requirement is : provide search help for a field which is in module pool screen)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please tell me the process...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;Moderator message: described in SAP documentation for search helps, please do more research before posting.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Thomas Zloch&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 07:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elementary-search-help/m-p/8831711#M1683252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T07:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: elementary search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elementary-search-help/m-p/8831712#M1683253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to look at this thread. &lt;A _jive_internal="true" class="active_link" href="https://answers.sap.com/thread/414626" title="http://scn.sap.com/thread/414626"&gt;http://scn.sap.com/thread/414626&lt;/A&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;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jake&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 07:41:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elementary-search-help/m-p/8831712#M1683253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T07:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: elementary search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/elementary-search-help/m-p/8831713#M1683254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Place below code in POV module of that specific field.&lt;/P&gt;&lt;P&gt;select single bu_sort2&amp;nbsp; from but000 into l_sort.&lt;/P&gt;&lt;P&gt;IF l_sort = 'PDD'.&lt;/P&gt;&lt;P&gt;select partner&amp;nbsp; name_first&amp;nbsp; name_last&amp;nbsp;&amp;nbsp; from but00 into table t_f4help. &lt;/P&gt;&lt;P&gt;and then pass this internal table to below FM&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 = field from int table whose value will be returned &lt;/P&gt;&lt;P&gt;DYNPPROG = SY-CPROG&lt;/P&gt;&lt;P&gt;DYNPNR = SY-DYNNR&lt;/P&gt;&lt;P&gt;DYNPROFIELD = 'screen field'&lt;/P&gt;&lt;P&gt;VALUE_ORG = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;VALUE_TAB = internal table whose values will be shown.&lt;/P&gt;&lt;P&gt;RETURN_TAB = internal table of type DDSHRETVAL &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;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2012 08:03:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/elementary-search-help/m-p/8831713#M1683254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-23T08:03:08Z</dc:date>
    </item>
  </channel>
</rss>

