<?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 problem, in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541826#M20204</link>
    <description>&lt;P&gt;F4UT_RESULTS_MAP&lt;/P&gt;
  &lt;P&gt;This function work fine , &lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Sun, 19 Nov 2017 08:19:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2017-11-19T08:19:44Z</dc:date>
    <item>
      <title>Search help Exit problem,</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541822#M20200</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 and , they wanted to have the domain description for some fields from other table. these values will be added at run time , The search help is working fine but one record description is not correct.&lt;/P&gt;
  &lt;P&gt; the table int_status_desc[] , contain the correct value before coming to the function, but when testing I got one result not correct. Also any attempt to sort the table will mix the data also , what is your advise to solve the problem?&lt;/P&gt;
  &lt;P&gt;the function is under event callcontrol-step = 'DISP' &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;CALL FUNCTION 'F4UT_PARAMETER_RESULTS_PUT'&lt;BR /&gt; EXPORTING&lt;BR /&gt; parameter = 'STEXT'&lt;BR /&gt; * OFF_SOURCE = 0&lt;BR /&gt; * LEN_SOURCE = 0&lt;BR /&gt; * VALUE =&lt;BR /&gt; fieldname = 'STEXT'&lt;BR /&gt; TABLES&lt;BR /&gt; shlp_tab = shlp_tab&lt;BR /&gt; record_tab = record_tab&lt;BR /&gt; source_tab = int_status_desc[]&lt;BR /&gt; CHANGING&lt;BR /&gt; shlp = shlp&lt;BR /&gt; callcontrol = callcontrol&lt;BR /&gt; * EXCEPTIONS&lt;BR /&gt; * PARAMETER_UNKNOWN = 1&lt;BR /&gt; * OTHERS = 2&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 06:39:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541822#M20200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-11-16T06:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Search help Exit problem,</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541823#M20201</link>
      <description>&lt;P&gt;Calling the function module F4UT_PARAMETER_RESULTS_PUT with parameter PARAMETER/FIELDNAME equal to 'STEXT' will only initialize the column STEXT. Do you have only one export parameter in your search help? Could you explain what is "not correct in one record description" ?&lt;/P&gt;
  &lt;P&gt;If you have several export parameters, and the names of export parameters are the same as the components of the internal table, it's more easy to use the function module F4UT_RESULTS_MAP.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 07:24:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541823#M20201</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-11-16T07:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Search help Exit problem,</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541824#M20202</link>
      <description>&lt;P&gt;If you want to:&lt;/P&gt;
  &lt;UL&gt;
   &lt;LI&gt;Add new records to result table: Call F4UT_RESULTS_MAP&lt;/LI&gt;
   &lt;LI&gt;Change some fields in result table: Call F4UT_PARAMETER_VALUE_GET to read some current values (read some key columns) then call F4UT_PARAMETER_RESULTS_PUT to change each column&lt;/LI&gt;
  &lt;/UL&gt;</description>
      <pubDate>Thu, 16 Nov 2017 14:20:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541824#M20202</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2017-11-16T14:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Search help Exit problem,</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541825#M20203</link>
      <description>&lt;P&gt;In the debug , the table int_status_desc contain all correct values but when I use this function at the end , some data displayed not correct in the search help result. This data I got in the run time by reading the values from the dictionary search help.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 04:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541825#M20203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-11-17T04:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Search help Exit problem,</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541826#M20204</link>
      <description>&lt;P&gt;F4UT_RESULTS_MAP&lt;/P&gt;
  &lt;P&gt;This function work fine , &lt;/P&gt;
  &lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 19 Nov 2017 08:19:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-problem/m-p/541826#M20204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-11-19T08:19:44Z</dc:date>
    </item>
  </channel>
</rss>

