<?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-options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443171#M826888</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;Once u speify the select-options u will get the range of values for the year...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u give year between 2002 and 2008 ,u will get 2003,2004,2005,2006,207 along with 2002 and 2008..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Feb 2008 07:59:07 GMT</pubDate>
    <dc:creator>former_member404244</dc:creator>
    <dc:date>2008-02-13T07:59:07Z</dc:date>
    <item>
      <title>Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443170#M826887</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;  i have given select-options for the year in the selection-screen.&lt;/P&gt;&lt;P&gt;If particular range is given i want to get all the years in between that range.Beacuse i will include that year in my record of internal table n modify it.Kindly tell me how to get all the years between the range given in the selection-screen&lt;/P&gt;&lt;P&gt;Thanks in advnce&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 07:51:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443170#M826887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T07:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443171#M826888</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;Once u speify the select-options u will get the range of values for the year...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u give year between 2002 and 2008 ,u will get 2003,2004,2005,2006,207 along with 2002 and 2008..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 07:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443171#M826888</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2008-02-13T07:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443172#M826889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey nagraj,&lt;/P&gt;&lt;P&gt;  i know that i will get the range but in the Selection options table&lt;/P&gt;&lt;P&gt;the fields will be sign,between,low n hign right.but i want all the years explicitly in that range so that i will use that year and append my table&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;sunitha.p&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 08:04:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443172#M826889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T08:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443173#M826890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;premraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_year LIKE ...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF s_year-low LE s_year-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE : s_year-low TO itab-year.&lt;/P&gt;&lt;P&gt;  APPEND YEAR. &lt;/P&gt;&lt;P&gt;  s_year-low =  s_year-low + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 08:08:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443173#M826890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T08:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443174#M826891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi PremRaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Basically we used selection option to run the command while selection data from Data Base. if you required for that then not to worry it automatically taken that range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of this if you want to use this range in your program then I suggesu the following way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-option S_mblnr   type  mseg-mblnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type : begin of tp_mseg,&lt;/P&gt;&lt;P&gt;         mblnr    type  mseg-mblnr,&lt;/P&gt;&lt;P&gt;endof tp_mseg,&lt;/P&gt;&lt;P&gt;Data : t_mseg     type table of t_mseg,&lt;/P&gt;&lt;P&gt;         wa_mseg  type             wa_mseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Selection-screen.&lt;/P&gt;&lt;P&gt;Data :wa_str    type  mseg-mblnr.&lt;/P&gt;&lt;P&gt;data  : wa_tmp type  mseg-mblnr.&lt;/P&gt;&lt;P&gt;wa_Str =  s_mblnr-high  -  s_mblnr-low.&lt;/P&gt;&lt;P&gt;wa_tmp   =  s_mblnr-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do wa_str times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    t_mseg-mblnr =  wa_tmp.&lt;/P&gt;&lt;P&gt;wa_tmp = wa_tmp + 1.&lt;/P&gt;&lt;P&gt;    append t_mseg.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  hope ti help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Swati&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 08:16:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/3443174#M826891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T08:16:53Z</dc:date>
    </item>
  </channel>
</rss>

