<?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-option: in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853392#M361153</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;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: SO_SEL FOR ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO_SEL-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;SO_SEL-OPTION = 'BT'.&lt;/P&gt;&lt;P&gt;SO_SEL-LOW     = '1'.&lt;/P&gt;&lt;P&gt;SO_SEL-HIGH     = '14'.&lt;/P&gt;&lt;P&gt;APPEND SO_SEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO_SEL-LOW     = '17'.&lt;/P&gt;&lt;P&gt;SO_SEL-HIGH     = '20'.&lt;/P&gt;&lt;P&gt;APPEND SO_SEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jan 2007 08:16:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-25T08:16:42Z</dc:date>
    <item>
      <title>select-option:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853389#M361150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select-option is an selection table containing 4 standard fields&lt;/P&gt;&lt;P&gt;SIGN, OPTION, LOW, HIGH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone tell me a sample code for the following DOUBT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need(fetch) data for 20 records. i.e, 1 to 20.&lt;/P&gt;&lt;P&gt;but i don't need 15, 16 th records. (excluding these both) i.e, 1-14 and 17-20.&lt;/P&gt;&lt;P&gt;(not using WRITE st/m.)&lt;/P&gt;&lt;P&gt;using select-option st/m, and its fields. can u solve my problem.&lt;/P&gt;&lt;P&gt;( In Initialisation we hav to code it.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it's an interview question. help me pl.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 08:10:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853389#M361150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T08:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: select-option:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853390#M361151</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: abc for tab-abc.

abc-sign = 'I'.
abc-option = 'BT'.
abc-low = 1.
abc-high = 14.
append abc.

abc-sign = 'I'.
abc-option = 'BT'.
abc-low = 17.
abc-high = 20.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 08:13:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853390#M361151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T08:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: select-option:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853391#M361152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;tables: mara.

select-options: s_matnr for mara-matnr.

initialization.

   s_matnr-sign = 'I'.
   s_matnr-option = 'BT'.
   s_matnr-low = '1'.
   s_matnr-high = '20'.
   append s_matnr.

   s_matnr-sign = 'E'.
   s_matnr-option = 'BT'.
   s_matnr-low = '15'.
   s_matnr-high = '16'.
   append s_matnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 08:15:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853391#M361152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T08:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: select-option:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853392#M361153</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;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: SO_SEL FOR ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO_SEL-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;SO_SEL-OPTION = 'BT'.&lt;/P&gt;&lt;P&gt;SO_SEL-LOW     = '1'.&lt;/P&gt;&lt;P&gt;SO_SEL-HIGH     = '14'.&lt;/P&gt;&lt;P&gt;APPEND SO_SEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO_SEL-LOW     = '17'.&lt;/P&gt;&lt;P&gt;SO_SEL-HIGH     = '20'.&lt;/P&gt;&lt;P&gt;APPEND SO_SEL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 08:16:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853392#M361153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T08:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: select-option:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853393#M361154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the multiple selection button in the select-option output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : spfli.&lt;/P&gt;&lt;P&gt;data : it_spfli like table of spfli with header line.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: car for spfli-carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from spfli into table it_spfli where carrid in car.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the coding is same while executing the program select the multile selection button.&lt;/P&gt;&lt;P&gt;U will get a table control screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select the multiple selection button a search help opens tick the check box upto 14 records &amp;amp; then from 17th to 20 &amp;amp; click execute button.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 08:31:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853393#M361154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T08:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: select-option:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853394#M361155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ex: &lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:&lt;/P&gt;&lt;P&gt;s_bukrs   FOR fti_int_instr_selscr_items-company_code.&lt;/P&gt;&lt;P&gt;On the selection screen , if values 15 and 16 are excluded in the exclude tab then they wont appear in selection.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 06:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853394#M361155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T06:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: select-option:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853395#M361156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Simplest way,&lt;/P&gt;&lt;P&gt;Fetch all the 20 records from a select query into an internal table.&lt;/P&gt;&lt;P&gt;Then, delete itab from 15 to 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will infact improve performance and the index number can be passed dynamically also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 06:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853395#M361156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T06:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: select-option:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853396#M361157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try this:&lt;/P&gt;&lt;P&gt;***********************************************************&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK name&lt;/P&gt;&lt;P&gt;  SELECT-OPTIONS&lt;/P&gt;&lt;P&gt;     x FOR dataelement&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK name&lt;/P&gt;&lt;P&gt;***********************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION&lt;/P&gt;&lt;P&gt; lr_name = x&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT *&lt;/P&gt;&lt;P&gt;    FROM your_database&lt;/P&gt;&lt;P&gt;    INTO TABLE itab&lt;/P&gt;&lt;P&gt;    WHERE y IN lr_name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab INTO wa&lt;/P&gt;&lt;P&gt;     IF wa-y NE 15 OR wa-y NE 16&lt;/P&gt;&lt;P&gt;        APPEND wa TO itab_2&lt;/P&gt;&lt;P&gt;     ENDIF&lt;/P&gt;&lt;P&gt;  ENDLOOP&lt;/P&gt;&lt;P&gt;  CLEAR itab&lt;/P&gt;&lt;P&gt;  itab = itab_2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 07:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853396#M361157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T07:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: select-option:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853397#M361158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks to all for helping me solving my problem....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 19:12:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1853397#M361158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T19:12:45Z</dc:date>
    </item>
  </channel>
</rss>

