<?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/1451511#M213804</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;Use the custom search help as follows: ZV_BSTNK is custom search help in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_bstnk      for   vbak-bstnk no-extension&lt;/P&gt;&lt;P&gt;                 matchcode object zv_bstnk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If problem solved, mark the points. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;GP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Jul 2006 03:22:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-25T03:22:02Z</dc:date>
    <item>
      <title>Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1451510#M213803</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;How to apply customized search help into the report selection screen ? I have already created a search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 03:19:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1451510#M213803</guid>
      <dc:creator>kowong</dc:creator>
      <dc:date>2006-07-25T03:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1451511#M213804</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;Use the custom search help as follows: ZV_BSTNK is custom search help in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_bstnk      for   vbak-bstnk no-extension&lt;/P&gt;&lt;P&gt;                 matchcode object zv_bstnk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If problem solved, mark the points. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;GP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 03:22:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1451511#M213804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T03:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1451512#M213805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This sol is given by Rich. Only problem is that you tend to hard code dropdown list. Check ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report zrich_0001 .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: begin of ihelp occurs 0,&lt;/P&gt;&lt;P&gt;      field type char10,&lt;/P&gt;&lt;P&gt;      ftext type char50,&lt;/P&gt;&lt;P&gt;      end of ihelp.&lt;/P&gt;&lt;P&gt;data: a_field(20) type c.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;select-options s_field for a_field.&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;  ihelp-field = 'A'.&lt;/P&gt;&lt;P&gt;  ihelp-ftext = 'Description A'.&lt;/P&gt;&lt;P&gt;  append ihelp.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  ihelp-field = 'B'.&lt;/P&gt;&lt;P&gt;  ihelp-ftext = 'Description B'.&lt;/P&gt;&lt;P&gt;  append ihelp.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  ihelp-field = 'C'.&lt;/P&gt;&lt;P&gt;  ihelp-ftext = 'Description C'.&lt;/P&gt;&lt;P&gt;  append ihelp.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;at selection-screen on value-request for s_field-low.&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    = 'FIELD'&lt;/P&gt;&lt;P&gt;            dynprofield = 'S_FIELD'&lt;/P&gt;&lt;P&gt;            dynpprog    = sy-cprog&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   = ihelp.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Nikhil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 05:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1451512#M213805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T05:09:58Z</dc:date>
    </item>
  </channel>
</rss>

