<?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: generated field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-generated-field/m-p/572655#M22352</link>
    <description>&lt;P&gt;you can implement a &lt;A href="https://archive.sap.com/discussions/thread/937518"&gt;search help exit&lt;/A&gt; with the additional field or create a CDS view. &lt;/P&gt;
  &lt;P&gt;JNN&lt;/P&gt;</description>
    <pubDate>Thu, 19 Oct 2017 23:07:14 GMT</pubDate>
    <dc:creator>nomssi</dc:creator>
    <dc:date>2017-10-19T23:07:14Z</dc:date>
    <item>
      <title>Search Help: generated field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-generated-field/m-p/572654#M22351</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
  &lt;P&gt;I'm working on ECC 6.0. I have a custom table with 5 fields, one of them is key. Basically, something like this:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;FIELD K1 ==&amp;gt; KEY
FIELD F1
FIELD F2
FIELD F3
FIELD F4
&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;I need a search help that shows all fields of this table, plus an extra dynamic field with a concatenation of values of field F1-F4.&lt;/P&gt;
  &lt;P&gt;Basically something like this:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;K1	F1	F2	F3	F4	DYNAMIC FIELD
--	--	--	--	--	-------------
1	A1	A2	A3	A4	A1-A2-A3-A4
2	G1	G2	G3	G4	G1-G2-G3-G4
3	H1	H2	H3	H4	H1-H2-H3-H4
&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Table is maintained by user using transaction SM30 and he will maintain only fields K1 and F1-F4. I don't mind how dynamic field is flled, but it must be done without any user action.&lt;/P&gt;
  &lt;P&gt;The problem is that I have no idea about how to do it...&lt;/P&gt;
  &lt;P&gt;Anyone can help me? &lt;/P&gt;
  &lt;P&gt;Thank you and best regard&lt;/P&gt;
  &lt;P&gt;gdec&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2017 15:37:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-generated-field/m-p/572654#M22351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-10-19T15:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help: generated field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-generated-field/m-p/572655#M22352</link>
      <description>&lt;P&gt;you can implement a &lt;A href="https://archive.sap.com/discussions/thread/937518"&gt;search help exit&lt;/A&gt; with the additional field or create a CDS view. &lt;/P&gt;
  &lt;P&gt;JNN&lt;/P&gt;</description>
      <pubDate>Thu, 19 Oct 2017 23:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-generated-field/m-p/572655#M22352</guid>
      <dc:creator>nomssi</dc:creator>
      <dc:date>2017-10-19T23:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help: generated field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-generated-field/m-p/572656#M22353</link>
      <description>&lt;P&gt;In the search-help definition, add your field (with some data-element) in the parameter list. &lt;BR /&gt;&lt;BR /&gt;Create and attach a search help-exit FM, in this FM, when callcontrol-step is 'DISP', so just before standard display of selected data, read correct data with FM &lt;A href="https://launchpad.support.sap.com/#/solutions/scnforums/?q=F4UT_PARAMETER_RESULTS_GET"&gt;F4UT_PARAMETER_VALUE_GET&lt;/A&gt; for each required field, modify the returned internal table results_tab (concatenate fields) and update it with FM &lt;A href="https://launchpad.support.sap.com/#/solutions/scnforums/?q=F4UT_PARAMETER_RESULTS_PUT"&gt;F4UT_PARAMETER_RESULTS_PUT&lt;/A&gt;, don't change the callcontrol-step, so SAP will then call the standard display.&lt;/P&gt;
  &lt;P&gt;&lt;EM&gt;Hint: Perform a where-used search on the FM and copy source code of a standard exit.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2017 06:44:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-generated-field/m-p/572656#M22353</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2017-10-20T06:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help: generated field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-generated-field/m-p/572657#M22354</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;
  &lt;P&gt;I already tried to do what you suggested, but I couldn't manage because of a stupid mistake.&lt;/P&gt;
  &lt;P&gt;I tried to add my &lt;EM&gt;DYNAMIC FIELD&lt;/EM&gt; in search help, but I had an error when activating because I don't specify any function module in &lt;EM&gt;search help exit&lt;/EM&gt;.&lt;/P&gt;
  &lt;P&gt;Of course I wanted to add it later, but first I wanted to solve that error. Stupid idea: as the error is solved exactly by adding the exit.&lt;/P&gt;
  &lt;P&gt;Thank you again!&lt;/P&gt;
  &lt;P&gt;gdec&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2017 13:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-generated-field/m-p/572657#M22354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-10-20T13:10:48Z</dc:date>
    </item>
  </channel>
</rss>

