<?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: Ranges input using multiple selection in select-options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500399#M1258192</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;data n type i value 0.&lt;/P&gt;&lt;P&gt;TABLES: ekko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:&lt;/P&gt;&lt;P&gt;s_ponum FOR ekko-ebeln NO INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE s_ponum lines n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF n = 0.&lt;/P&gt;&lt;P&gt;  WRITE: 'Initial'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will work....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Apr 2009 04:54:50 GMT</pubDate>
    <dc:creator>former_member242255</dc:creator>
    <dc:date>2009-04-16T04:54:50Z</dc:date>
    <item>
      <title>Ranges input using multiple selection in select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500395#M1258188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have declared a single selection field with multiple selection as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:&lt;/P&gt;&lt;P&gt;   S_PONUM FOR EKKO-EBELN NO INTERVALS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a range is entered using multiple selection, no value appears in the selection field on screen, however, the ranges tab in multiple selection shows the range. Is there a way to programatically test if a range has been entered using multiple selection? Help is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 04:44:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500395#M1258188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T04:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges input using multiple selection in select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500396#M1258189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
data: lv_lines type i.
describe table S_PONUM lines lv_lines.

if lv_lines GT 1.
  write:/ 'multiple selection'.
else.
  write: 'single value'.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 04:49:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500396#M1258189</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-04-16T04:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges input using multiple selection in select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500397#M1258190</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 you not displaying the intervals then user can enter only one value then option field will be with 'EQ' sign.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT S_PONUM.

IF S_PONUM-OPTION NE 'EQ'
 " Then Values are entered using the multple selections
ENDIF.

ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 04:49:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500397#M1258190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T04:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges input using multiple selection in select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500398#M1258191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;s_ponum will work as itab. So, you get check for number of entries in s_ponum using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE s_ponum LINES wf_lines.&lt;/P&gt;&lt;P&gt;IF wf_lines GT 1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;It means more than one entry...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I got u correct and this helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 04:51:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500398#M1258191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T04:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Ranges input using multiple selection in select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500399#M1258192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;data n type i value 0.&lt;/P&gt;&lt;P&gt;TABLES: ekko.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:&lt;/P&gt;&lt;P&gt;s_ponum FOR ekko-ebeln NO INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE s_ponum lines n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF n = 0.&lt;/P&gt;&lt;P&gt;  WRITE: 'Initial'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will work....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 04:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ranges-input-using-multiple-selection-in-select-options/m-p/5500399#M1258192</guid>
      <dc:creator>former_member242255</dc:creator>
      <dc:date>2009-04-16T04:54:50Z</dc:date>
    </item>
  </channel>
</rss>

