<?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 Search help problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem/m-p/7798010#M1586807</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have defined one search help "ZSH1" with 2 search help parameters VBELN (data element VBELN_VA) and POSNR (data element POSNR_VA).  Both are Import and Export parameters. &lt;/P&gt;&lt;P&gt;Then I have assigned this search help to data element "ZDE1" (Search help = ZSH1 and Parameters = VBELN), &lt;/P&gt;&lt;P&gt;Finally I have created a Report and for my selecction screen I have written:&lt;/P&gt;&lt;P&gt;PARAMETERS : NUM_ORD TYPE ZDE1.&lt;/P&gt;&lt;P&gt;So it shows the search help (a table with 2 columns: one for VBELN and other for POSNR), I choose the option I want and it works fine. The problem is that I also would like to store the value of  POSNR but i don't know how. &lt;/P&gt;&lt;P&gt;How should I proceed?&lt;/P&gt;&lt;P&gt;I hope you understand my requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Luis Álvarez.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Apr 2011 13:09:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-04-08T13:09:29Z</dc:date>
    <item>
      <title>Search help problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem/m-p/7798010#M1586807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have defined one search help "ZSH1" with 2 search help parameters VBELN (data element VBELN_VA) and POSNR (data element POSNR_VA).  Both are Import and Export parameters. &lt;/P&gt;&lt;P&gt;Then I have assigned this search help to data element "ZDE1" (Search help = ZSH1 and Parameters = VBELN), &lt;/P&gt;&lt;P&gt;Finally I have created a Report and for my selecction screen I have written:&lt;/P&gt;&lt;P&gt;PARAMETERS : NUM_ORD TYPE ZDE1.&lt;/P&gt;&lt;P&gt;So it shows the search help (a table with 2 columns: one for VBELN and other for POSNR), I choose the option I want and it works fine. The problem is that I also would like to store the value of  POSNR but i don't know how. &lt;/P&gt;&lt;P&gt;How should I proceed?&lt;/P&gt;&lt;P&gt;I hope you understand my requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Luis Álvarez.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2011 13:09:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem/m-p/7798010#M1586807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-08T13:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Search help problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem/m-p/7798011#M1586808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;search the forum...for a single element, you need only specify for vbak-vbeln, or like vbak-vbeln to "inherit" the SAP search helps.  For this, here's a hint:...the function module might be F4IF_INT_TABLE_VALUE_REQUEST and it's mentioned in various posts in this forum.  A search of the forum should turn up posts with how to use this to populate more than one field/value from a single use of this FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Apr 2011 13:13:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem/m-p/7798011#M1586808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-08T13:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Search help problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem/m-p/7798012#M1586809</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;If I get correct - When you Press F4 on sel. Screen You got the table with VBELN &amp;amp; POSNR - Right?&lt;/P&gt;&lt;P&gt;And You want the 'Selected' values for Both the Fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then --&amp;gt; Use FM 'F4IF_INT_TABLE_VALUE_REQUEST'  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* If ALV then in Event AT SELECTION-SCREEN ON VALUE-REQUEST FOR num_ord.

* If Screen then in PAI of Scren - PROCESS ON VALUE-REQUEST.   FIELD num_ord MODULE f4_desp.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
 EXPORTING
.
.
.
 TABLES
                value_tab              = gi_valtab
*               FIELD_TAB           =
               return_tab              = t_return
*               DYNPFLD_MAPPING        =
...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here table t_return is you "selected values" of VBELN &amp;amp; POSNR -&lt;/P&gt;&lt;P&gt;Reply if you have any query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ashlesha R. Bhagat on Apr 9, 2011 7:29 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Apr 2011 05:28:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem/m-p/7798012#M1586809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-09T05:28:55Z</dc:date>
    </item>
  </channel>
</rss>

