<?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 Regd: Select Options.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114009#M442277</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abap gurus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement where I have to use an Select Option and the selection can be single or a range how can I do that ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Urgent plzz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Mar 2007 09:55:15 GMT</pubDate>
    <dc:creator>former_member182354</dc:creator>
    <dc:date>2007-03-29T09:55:15Z</dc:date>
    <item>
      <title>Regd: Select Options..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114009#M442277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abap gurus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement where I have to use an Select Option and the selection can be single or a range how can I do that ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Urgent plzz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 09:55:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114009#M442277</guid>
      <dc:creator>former_member182354</dc:creator>
      <dc:date>2007-03-29T09:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regd: Select Options..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114010#M442278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is a normal select-options where the user is free to give either single value or in range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;tables lfa1.

select-options lifnr for lfa1-lifnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;pankaj singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 09:58:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114010#M442278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-29T09:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regd: Select Options..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114011#M442279</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;PRE&gt;&lt;CODE&gt;
SELECT-OPTIONS: s_datum FOR sy-datum.   "most common
SELECT-OPTIONS: s_datum FOR sy-datum NO-EXTENSION.   "like a parameter

Usage:
SELECT * 
  FROM mkpf
  INTO TABLE gt_mkpf
  WHERE budat IN s_datum.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Tamá&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 09:59:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114011#M442279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-29T09:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Regd: Select Options..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114012#M442280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi dude,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use select option in a way depicted below -&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES: pa0000.

DATA: BEGIN OF gt_pernr OCCURS 0,
        pernr                TYPE pa0000-pernr,
      END OF gt_pernr.

SELECT-OPTIONS: s_pernr      FOR  pa0000-pernr,

START-OF-SELECTION.
* FETCH PERNRs
  SELECT pernr
  INTO TABLE gt_pernr
  FROM pa0000
  WHERE pernr IN s_pernr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;System will take care of both single and multiple selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manish Joshi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 10:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114012#M442280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-29T10:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Regd: Select Options..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114013#M442281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if u want to have a range ur a single value use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : tablename.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;select-options lvariable name for tabname-field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;otherways of using it our&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options lvariable name for tabname-field no interval. for without range&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options lvariable name for tabname-field no extension for with range and only one value in both inpute&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options lvariable name for tabname-field no extension no interval for a parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;navjot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward for helpfull answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 10:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114013#M442281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-29T10:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regd: Select Options..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114014#M442282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghavender,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just go thru the systax of SELECT OPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: selectioncriteria FOR dataobject.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will allow you make either single or multiple selections&lt;/P&gt;&lt;P&gt;If u r still not clear just enter 'SELECT OPTION' in ABAP editor and then click on 'F1' for detailed documentation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;sowmya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 10:05:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regd-select-options/m-p/2114014#M442282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-29T10:05:49Z</dc:date>
    </item>
  </channel>
</rss>

