<?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: Multiple Selection For Selections screen field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695172#M623737</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;Use a select option for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In select option, you can enter multiple range of values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope that solves your doubt.&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;Ravish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Aug 2007 05:32:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-21T05:32:03Z</dc:date>
    <item>
      <title>Multiple Selection For Selections screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695171#M623736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any body tell me how to create multiple selection for a field in selection screen and how to capture all those values of that fields in program for database selction. Suppose i am having document number EBELN from EKKO exists in selectio screen . how to create multiple selection for that and how to use all those values given to EBELN to get data from EKKO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 05:29:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695171#M623736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T05:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection For Selections screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695172#M623737</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;Use a select option for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In select option, you can enter multiple range of values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope that solves your doubt.&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;Ravish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 05:32:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695172#M623737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T05:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection For Selections screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695173#M623738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can get multiple selection by default if you declare so_eblen as select option&lt;/P&gt;&lt;P&gt;if you dont give nay input on selection screen and execute all the PO's will be considered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES : ekko.

SELECT-OPTIONS : so_ebeln FOR ekko-ebeln.

DATA : it_ekko TYPE TABLE OF ekko,
       is_ekko TYPE ekko.

START-OF-SELECTION.

  SELECT * FROM ekko
           INTO TABLE it_ekko
           WHERE ebeln IN so_ebeln.

  SORT it_ekko BY ebeln.

  LOOP AT it_ekko INTO is_ekko.
    WRITE : / is_ekko-ebeln.
    CLEAR : is_ekko.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 05:34:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695173#M623738</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-08-21T05:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection For Selections screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695174#M623739</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;select-options is one type of parameters where u can give multiple values in ranges or single as a input. when u use select-options then system will create a selection screen for u and u give multiple values as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;select-options: s_ebeln for ekko-ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;internally system creates a internal for s_ebeln which has for attributes&lt;/P&gt;&lt;P&gt; 1. low --- starting value if  range is used&lt;/P&gt;&lt;P&gt;  2. high -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt; ending value&lt;/P&gt;&lt;P&gt; 3. sign -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt; operator used for validating field&lt;/P&gt;&lt;P&gt; 4. option -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; to exclude given range of values or single value or to include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for this u can assign default values in INITIALIZATION event as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;s_ebeln -low = '1'.&lt;/P&gt;&lt;P&gt;s_ebeln- high = '100-100'.&lt;/P&gt;&lt;P&gt;s_ebeln-sign = 'BT'.&lt;/P&gt;&lt;P&gt;s_ebeln-option = 'I' // include&lt;/P&gt;&lt;P&gt;                         'E' // exclude.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh Aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 06:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695174#M623739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T06:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Selection For Selections screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695175#M623740</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;Use select-options for this .&lt;/P&gt;&lt;P&gt;On your selection screen, press Arrow button in front of ur field .&lt;/P&gt;&lt;P&gt;You will get another window, now select Ranges tab , here you can give your &lt;/P&gt;&lt;P&gt;ranges like 1 to 10 , 20 to 50 and 100 to 125..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps .&lt;/P&gt;&lt;P&gt;Praveen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2007 06:46:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-selections-screen-field/m-p/2695175#M623740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-21T06:46:32Z</dc:date>
    </item>
  </channel>
</rss>

