<?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: selection table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768982#M332198</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I actually don't have a problem with either.  This program works really well.  Run it and check the selection screen, check material,  you can see the fields there in multiple selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002 .

data: iSEL TYPE TABLE OF RSPARAMS.
data: xsel type rsparams.


xsel-SELNAME = 'MATNR'.
xsel-KIND    = 'S'.
xsel-SIGN    = 'I'.
xsel-OPTION  = 'EQ'.
xsel-LOW     = '000000000040000692'.
append xsel to isel.

xsel-SELNAME = 'MATNR'.
xsel-KIND    = 'S'.
xsel-SIGN    = 'I'.
xsel-OPTION  = 'NE'.
xsel-LOW     = '000000000040000693'.
append xsel to isel.

xsel-SELNAME = 'MATNR'.
xsel-KIND    = 'S'.
xsel-SIGN    = 'E'.
xsel-OPTION  = 'EQ'.
xsel-LOW     = '000000000040000694'.
append xsel to isel.



submit RM07DOCS
        via selection-screen
                with selection-table isel
                          and return.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program runs transaction MB51&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Dec 2006 19:24:34 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-12-27T19:24:34Z</dc:date>
    <item>
      <title>selection table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768979#M332195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone tell me how to use selection table with option of NE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wrote a code like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L_t_RANGE-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;L_t_RANGE-option = 'NE'.&lt;/P&gt;&lt;P&gt;L_t_RANGE-low = 'Y'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the error message says SIGN 'I' with option 'NE' is not allowed. Neigher does 'E'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Linda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 19:18:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768979#M332195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T19:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: selection table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768980#M332196</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;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L_t_RANGE-SIGN = '&amp;lt;b&amp;gt;E&amp;lt;/b&amp;gt;'.&lt;/P&gt;&lt;P&gt;L_t_RANGE-option = '&amp;lt;b&amp;gt;EQ'&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;L_t_RANGE-low = 'Y'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 19:20:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768980#M332196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T19:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: selection table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768981#M332197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried. The same kind of error message. Sign 'E' with Option 'EQ' is not allowed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 19:23:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768981#M332197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T19:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: selection table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768982#M332198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I actually don't have a problem with either.  This program works really well.  Run it and check the selection screen, check material,  you can see the fields there in multiple selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002 .

data: iSEL TYPE TABLE OF RSPARAMS.
data: xsel type rsparams.


xsel-SELNAME = 'MATNR'.
xsel-KIND    = 'S'.
xsel-SIGN    = 'I'.
xsel-OPTION  = 'EQ'.
xsel-LOW     = '000000000040000692'.
append xsel to isel.

xsel-SELNAME = 'MATNR'.
xsel-KIND    = 'S'.
xsel-SIGN    = 'I'.
xsel-OPTION  = 'NE'.
xsel-LOW     = '000000000040000693'.
append xsel to isel.

xsel-SELNAME = 'MATNR'.
xsel-KIND    = 'S'.
xsel-SIGN    = 'E'.
xsel-OPTION  = 'EQ'.
xsel-LOW     = '000000000040000694'.
append xsel to isel.



submit RM07DOCS
        via selection-screen
                with selection-table isel
                          and return.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This program runs transaction MB51&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 19:24:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768982#M332198</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-12-27T19:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: selection table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768983#M332199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Linda,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You didnt have an option on NE for OPTION parameter to RANGES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use SIGN as E(for exclusive) in the RANGES &lt;/P&gt;&lt;P&gt;L_t_RANGE-SIGN = &amp;lt;b&amp;gt;'E'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;L_t_RANGE-option = &amp;lt;b&amp;gt;'EQ'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;L_t_RANGE-low = 'Y'.  &lt;/P&gt;&lt;P&gt;(or)&lt;/P&gt;&lt;P&gt;change the ranges as&lt;/P&gt;&lt;P&gt;L_t_RANGE-SIGN = &amp;lt;b&amp;gt;'I'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;L_t_RANGE-option = &amp;lt;b&amp;gt;'EQ'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;L_t_RANGE-low = 'Y'.  &lt;/P&gt;&lt;P&gt;Use ranges in SELECT query as NOT IN cluase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 19:26:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table/m-p/1768983#M332199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T19:26:58Z</dc:date>
    </item>
  </channel>
</rss>

