<?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: Select-options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3688630#M888215</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Aastha Gupta,
Just execute and check the following code and read comments below for every statement.
&lt;PRE&gt;&lt;CODE&gt;REPORT zvenkat_test1.
TABLES pa0001.
SELECT-OPTIONS: p_pernr1 FOR pa0001-pernr.
"Without any addition to Select-option statement.
SELECT-OPTIONS: p_pernr2 FOR pa0001-pernr NO-EXTENSION.
"If you specify this addition, the pushbutton for multiple selection is not created on the selection screen.
SELECT-OPTIONS: p_pernr3 FOR pa0001-pernr NO INTERVALS.
"If you specify this addition, the second input screen is not created on the selection screen.
"The user can only specify a single comparison in the first line in the selection table on the
"selection screen. The dialog box for multiple selections still allows interval selections.
SELECT-OPTIONS: p_pernr4 FOR pa0001-pernr NO-EXTENSION NO INTERVALS.
"Declaration of a selection criterion for which a single comparison is possible on the selection screen,
"but multiple selection isnot possible.&lt;/CODE&gt;&lt;/PRE&gt; 

I hope that it can help you.
Regards,
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Apr 2008 03:50:43 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2008-04-07T03:50:43Z</dc:date>
    <item>
      <title>Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3688627#M888212</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;I want to know what is the use of no intervals no-extensions in select-options. Plz help me out regarding this !.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aastha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2008 03:39:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3688627#M888212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-07T03:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3688628#M888213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In select-options ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no intervals is used ,if you do not want ranges ,in this only one input field will be displayed(not ranges)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no extension is used when you do not want multiple selections,&lt;/P&gt;&lt;P&gt;( that side arrow will not come),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Talwinder&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2008 03:46:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3688628#M888213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-07T03:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3688629#M888214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to that select -option behaves like a Parameter ... &lt;/P&gt;&lt;P&gt;then we use no-interval &amp;amp; no extensions &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no-extensions - the pushbutton for multiple selection is not created on the selection screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no-intervals -  the second input screen is not created on the selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2008 03:46:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3688629#M888214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-07T03:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3688630#M888215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Aastha Gupta,
Just execute and check the following code and read comments below for every statement.
&lt;PRE&gt;&lt;CODE&gt;REPORT zvenkat_test1.
TABLES pa0001.
SELECT-OPTIONS: p_pernr1 FOR pa0001-pernr.
"Without any addition to Select-option statement.
SELECT-OPTIONS: p_pernr2 FOR pa0001-pernr NO-EXTENSION.
"If you specify this addition, the pushbutton for multiple selection is not created on the selection screen.
SELECT-OPTIONS: p_pernr3 FOR pa0001-pernr NO INTERVALS.
"If you specify this addition, the second input screen is not created on the selection screen.
"The user can only specify a single comparison in the first line in the selection table on the
"selection screen. The dialog box for multiple selections still allows interval selections.
SELECT-OPTIONS: p_pernr4 FOR pa0001-pernr NO-EXTENSION NO INTERVALS.
"Declaration of a selection criterion for which a single comparison is possible on the selection screen,
"but multiple selection isnot possible.&lt;/CODE&gt;&lt;/PRE&gt; 

I hope that it can help you.
Regards,
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2008 03:50:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3688630#M888215</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2008-04-07T03:50:43Z</dc:date>
    </item>
  </channel>
</rss>

