<?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: about select-option in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-select-option/m-p/1066261#M93383</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after you run your report , you will see 'multiple selection' option , just click it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a new popup window opens up, here you can give as many single values as you want A, B, C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you got my point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this 'multiple selection' is a button with arrow at the end of you select option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Surpreet Singh Bal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Oct 2005 02:33:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-13T02:33:51Z</dc:date>
    <item>
      <title>about select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-select-option/m-p/1066259#M93381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I wanna use a select-options whose options are three conditions A,B,C. Like this: From A,B,C to . &lt;/P&gt;&lt;P&gt;How to implement?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 02:02:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-select-option/m-p/1066259#M93381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T02:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: about select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-select-option/m-p/1066260#M93382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Julian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A Select-Option is in reality a RANGE in ABAP.&lt;/P&gt;&lt;P&gt;Therefore, it is essantially an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok so let's say you have a select-option for vbeln and you want to default '123', '456', '789' as three separate sales orders:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
select-options s_vbeln for vbak-vbeln.

at-load-of-program.

perform update_svbeln using: '123',
                             '456',
                             '789'.
        
form update_svbeln using ip_vbeln.

  clear s_vbeln.
  s_vbeln-option = 'I'.  "I = include, E = exclude
  s_vbeln-sign   = 'EQ'. "EQ = equals, BT = between, etc
  s_vbeln-low    = ip_vbeln. "Low value
  append s_vbeln.

endform.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This means that your range will be populated with the 3 sales orders from when you run the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can look at the SAP Help (hit F1 inthe ABAP Editor and enter in 'SELECT-OPTIONS') as your key word for more info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS. Kindly assign Reward Points to the posts you find helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 02:22:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-select-option/m-p/1066260#M93382</guid>
      <dc:creator>former_member221770</dc:creator>
      <dc:date>2005-10-13T02:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: about select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-select-option/m-p/1066261#M93383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after you run your report , you will see 'multiple selection' option , just click it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a new popup window opens up, here you can give as many single values as you want A, B, C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you got my point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this 'multiple selection' is a button with arrow at the end of you select option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Surpreet Singh Bal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 02:33:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-select-option/m-p/1066261#M93383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T02:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: about select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-select-option/m-p/1066262#M93384</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;as like the normal select-option using&lt;/P&gt;&lt;P&gt;select-options  s_matnr for mara-matnar&lt;/P&gt;&lt;P&gt;and in the query &lt;/P&gt;&lt;P&gt;select ............. where matnr in s_matnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and when you run the report in the To column specify A,B,C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2005 03:38:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-select-option/m-p/1066262#M93384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-13T03:38:51Z</dc:date>
    </item>
  </channel>
</rss>

