<?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/1494363#M229657</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use RANGEs structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_mohan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Aug 2006 07:51:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-23T07:51:26Z</dc:date>
    <item>
      <title>SELECT-OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1494361#M229655</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 need selection screen to luk like dis,&lt;/P&gt;&lt;P&gt;Kunnr     &lt;/P&gt;&lt;P&gt;          from                          to &lt;/P&gt;&lt;P&gt;          from                          to&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;          . &lt;/P&gt;&lt;P&gt;          from                          to.&lt;/P&gt;&lt;P&gt;nearly i need 5 lines to give my i/p criteria.&lt;/P&gt;&lt;P&gt;Could anyone favor me in dis aspect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 07:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1494361#M229655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T07:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT-OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1494362#M229656</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;a normal select-option will work ! You can extend the from-to as many times you like, by clicking on the button on the right side of the TO value (Multiple selection)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_kna1 type kna1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S_KUNNR FOR wa_kna1-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Hans&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Hans Senden&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 07:49:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1494362#M229656</guid>
      <dc:creator>h_senden2</dc:creator>
      <dc:date>2006-08-23T07:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT-OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1494363#M229657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use RANGEs structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_mohan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 07:51:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1494363#M229657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T07:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT-OPTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1494364#M229658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use SELECT-OPTIONS which will allow you to enter several range of values in you click on the "arrow button" appears next to the high fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your requirment, if you really need that type of fields, to appear, then &lt;/P&gt;&lt;P&gt;take 2 PARAMETERS in each line &amp;amp; write those 2 betwen BEGIN OF LINE &amp;amp; END OF LINE.&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;give TEXT-002 as CUSTOMER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN : BEGIN OF LINE.
SELECTION-SCREEN  COMMENT 1(20) TEXT-002.
SELECTION-SCREEN : END OF LINE.
SELECTION-SCREEN : BEGIN OF LINE.
PARAMETERS: P_KUNNR1 TYPE KNA1-KUNNR,
P_KUNNR2 TYPE KNA1-KUNNR.
SELECTION-SCREEN : END OF LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Aug 2006 07:54:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1494364#M229658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-23T07:54:48Z</dc:date>
    </item>
  </channel>
</rss>

