<?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 exit question in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748695#M35941</link>
    <description>&lt;P&gt;Yes you have to code, to add the selection of new data and their mapping to search help result.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;F4UT_PARAMETER_VALUE_GET to read some value from the search help (get the key fields)&lt;/LI&gt;&lt;LI&gt;some code here to select and map data (select, move)&lt;/LI&gt;&lt;LI&gt;F4UT_PARAMETER_RESULTS_PUT to map your result to  the search help (put the output fields)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&gt;Hints: Perform some where-used search or look at some SAP search-help exits. (browse DD30L where &lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Dec 2018 13:01:03 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2018-12-11T13:01:03Z</dc:date>
    <item>
      <title>Search help exit question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748691#M35937</link>
      <description>&lt;P&gt;Hi Experts,&lt;/P&gt;
  &lt;P&gt;I have a requirement to Create search help exit for a custom dictionary search help for Table A and I have to show another field of Table B in the search results, along with some fields of Table A. I have copied the code from function module "f4if_shlp_exit_example", but I am not getting the desired results. Do I also have to write some code ?? &lt;/P&gt;
  &lt;P&gt;Pls any advice to solve it ?&lt;/P&gt;
  &lt;P&gt;Kind Regards&lt;/P&gt;
  &lt;P&gt;Tariq&lt;/P&gt;</description>
      <pubDate>Mon, 10 Dec 2018 22:54:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748691#M35937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-12-10T22:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748692#M35938</link>
      <description>&lt;P&gt;If you define a foreign key between A and B, then you may create a help view on both tables A and B, and create a search help on this view (no need of a search help exit).&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 06:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748692#M35938</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2018-12-11T06:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748693#M35939</link>
      <description>&lt;P&gt;Thanks Sandra for your reply.&lt;/P&gt;&lt;P&gt;A foreign key exist for a field between Table A and Table B, datatype for that field is NUMC, but the length is different, in one table it's NUMC5 and in other table is NUMC7. That is a reason I have to create search help exit to solve this problem. &lt;/P&gt;&lt;P&gt;Please can you help me to solve this problem. &lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 11:12:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748693#M35939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-12-11T11:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748694#M35940</link>
      <description>&lt;P&gt;An exit is a place where you have to write some code. F4IF_SHLP_EXIT_EXAMPLE is just an example, with some documentation about how exit work (comments inside + repository documentation). Use it to create your own Z exit.&lt;/P&gt;&lt;P&gt;Define your search help with the selection method empty, choose the fields from A and B, and enter code in your Z exit. Try, use the debugger, and revert back with your questions (or search the forum).&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 12:23:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748694#M35940</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2018-12-11T12:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748695#M35941</link>
      <description>&lt;P&gt;Yes you have to code, to add the selection of new data and their mapping to search help result.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;F4UT_PARAMETER_VALUE_GET to read some value from the search help (get the key fields)&lt;/LI&gt;&lt;LI&gt;some code here to select and map data (select, move)&lt;/LI&gt;&lt;LI&gt;F4UT_PARAMETER_RESULTS_PUT to map your result to  the search help (put the output fields)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&gt;Hints: Perform some where-used search or look at some SAP search-help exits. (browse DD30L where &lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 13:01:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-question/m-p/748695#M35941</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-12-11T13:01:03Z</dc:date>
    </item>
  </channel>
</rss>

