<?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: multiple selections in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selections/m-p/3749595#M902128</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from KNA1 &lt;/P&gt;&lt;P&gt;where ( kunnr in s_kunnr )&lt;/P&gt;&lt;P&gt;or       ( telf1 in s_telf )&lt;/P&gt;&lt;P&gt;or       ( stras in s_stras )...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 May 2008 07:23:39 GMT</pubDate>
    <dc:creator>andreas_mann3</dc:creator>
    <dc:date>2008-05-05T07:23:39Z</dc:date>
    <item>
      <title>multiple selections</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selections/m-p/3749594#M902127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could anyone help me with a sample program for the following reqt?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have three select options: Customer, telephone no. and address. If i want to choose 3 Customer names, 5 telephone numbers, 9 address. Each of this selection should be considered as 3 separate search data and the search should be performed independently.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 07:19:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selections/m-p/3749594#M902127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T07:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: multiple selections</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selections/m-p/3749595#M902128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from KNA1 &lt;/P&gt;&lt;P&gt;where ( kunnr in s_kunnr )&lt;/P&gt;&lt;P&gt;or       ( telf1 in s_telf )&lt;/P&gt;&lt;P&gt;or       ( stras in s_stras )...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 07:23:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selections/m-p/3749595#M902128</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2008-05-05T07:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: multiple selections</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selections/m-p/3749596#M902129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sneha-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this sample code and let me know the results because I have some doubts regarding multiple selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;tables kna1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;types:begin of st_kna1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;kunnr type kunnr,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;telf1 type telf1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;stras type STRAS_GP,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;end of st_kna1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data:i_kna1 type table of st_kna1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select-options:s_kunnr for kna1-kunnr,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;               &lt;STRONG&gt;s_telf  for kna1-telf1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;               &lt;STRONG&gt;s_stras for kna1-stras.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select kunnr&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;       &lt;STRONG&gt;telf1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;       &lt;STRONG&gt;stras from kna1 into table i_kna1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                  &lt;STRONG&gt;where  kunnr in s_kunnr[]  or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                         &lt;STRONG&gt;telf1 in s_telf[]   or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                         &lt;STRONG&gt;stras in s_stras[].&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;~Srini....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 10:57:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selections/m-p/3749596#M902129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T10:57:06Z</dc:date>
    </item>
  </channel>
</rss>

