<?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: Reg.. Select-options -values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191422#M1001934</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;    Selct-options not only takes care of multiple values but also contains some validations..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for paramter say p_vbeln we write select query as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * from vbak into t_vbeln where vbeln  = p_vbeln&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for select-option say s_vbeln ( as it contains multiple values ) we write select query as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * from vbak into t_vbeln where vbeln IN s_vbeln&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so please observe the difference between two queries..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if possible check the structure of s_vbeln in debug mode so that you understand the structure of select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Narin Nandivada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jul 2008 05:36:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-24T05:36:29Z</dc:date>
    <item>
      <title>Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191412#M1001924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;       I have three select-options in a selection-screen like s_vbeln for vbak-vbeln,&lt;/P&gt;&lt;P&gt;s_vkorg for vbak-vkorg,&lt;/P&gt;&lt;P&gt;s_kunnr for vbak-kunnr.....&lt;/P&gt;&lt;P&gt;I want to display the  values entered in the select-options of the selection-screen on the report. &lt;/P&gt;&lt;P&gt;eg!..&lt;/P&gt;&lt;P&gt;If user enters the multiple values in the select-options how do we display all the multiple values on the report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191412#M1001924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191413#M1001925</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 ....&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;FROM VBAK&lt;/P&gt;&lt;P&gt;INTO TABLE ITAB&lt;/P&gt;&lt;P&gt;WHERE VBELN IN S_VBELN &lt;/P&gt;&lt;P&gt;             AND VKORG IN S_VKORG &lt;/P&gt;&lt;P&gt;              AND KUNNR IN S_KUNNR &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And to display the select as of enterd in sleection screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT S_VBELN.&lt;/P&gt;&lt;P&gt;WRITE: S_VBELN-LOW.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As the select options behaves as a internal table or a range table.&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;plz reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;dhanashri.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Dhanashri Pawar on Jul 24, 2008 7:29 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Dhanashri Pawar on Jul 24, 2008 7:31 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:29:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191413#M1001925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191414#M1001926</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;Selection options act as an Internal Tables .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets say u have entered 5 values in your select options then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at s_kunnr .&lt;/P&gt;&lt;P&gt;write : s_kunnr-low &lt;/P&gt;&lt;P&gt;endloop .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope your problem is solved with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Hitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:29:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191414#M1001926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191415#M1001927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Each select options is like an internal table with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so do loop and write like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_vbeln.&lt;/P&gt;&lt;P&gt;write:/ s_vbeln-sign, s_vbeln-option, s_vbeln-low, s_vbeln-high.&lt;/P&gt;&lt;P&gt;clear: s_vbeln.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do same for remaioning select options .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:30:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191415#M1001927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191416#M1001928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop the &amp;lt;s_vbeln&amp;gt;&lt;/P&gt;&lt;P&gt;  write &amp;lt;s_vbeln&amp;gt;-sign&lt;/P&gt;&lt;P&gt;         &amp;lt;s_vbeln&amp;gt;-option&lt;/P&gt;&lt;P&gt;         &amp;lt;s_vbeln&amp;gt;-low&lt;/P&gt;&lt;P&gt;         &amp;lt;s_vbeln&amp;gt;-high&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;Select options takes care of all the selection criteria... you need not bother about the multiple values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:30:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191416#M1001928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191417#M1001929</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;For this ..fetch entries into internal table for entries entered on selection screen  and display...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen like s_vbeln for vbak-vbeln&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If user enters s_vbeln-low = 0. s_vbeln-high = 99999.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select distinct vbeln into table itab_vbeln where vbeln in s_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin M M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:30:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191417#M1001929</guid>
      <dc:creator>sachin_mathapati</dc:creator>
      <dc:date>2008-07-24T05:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191418#M1001930</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;You have to write select Query for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select distinct Vbeln &lt;/P&gt;&lt;P&gt;from Vabk&lt;/P&gt;&lt;P&gt;into table itab&lt;/P&gt;&lt;P&gt;where vbeln bt s_vbeln-low and s_vbeln-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Repeat this for the other two.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:32:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191418#M1001930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191419#M1001931</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;Actualy all the select option behave as internal and stores the value entered in them. So here all the three of your select options s_vbeln, s_vkorg, s_kunnr are internal tables. &lt;/P&gt;&lt;P&gt;To display the value Just use  LOOP AT  to each of them and Write statement to print values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anirban&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:34:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191419#M1001931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191420#M1001932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;s_vbeln , s_vkorg and s_kunnr are internal tables..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once execute ur program in debugging mode and check the fields for this table...&lt;/P&gt;&lt;P&gt;U can loop in to the table and display the data...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191420#M1001932</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2008-07-24T05:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191421#M1001933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii!&lt;/P&gt;&lt;P&gt;  Check this sample code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT z_sdn.
TABLES:
  vbak.

SELECT-OPTIONS:
  s_vbeln for vbak-vbeln,
  s_vkorg for vbak-vkorg,
  s_kunnr for vbak-kunnr.


WRITE:
  / s_vbeln-low,
  / s_vbeln-high,
  / s_vkorg-low,
  / s_vkorg-high,
  / s_kunnr-low,
  / s_kunnr-high.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhijeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:34:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191421#M1001933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191422#M1001934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;    Selct-options not only takes care of multiple values but also contains some validations..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for paramter say p_vbeln we write select query as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * from vbak into t_vbeln where vbeln  = p_vbeln&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for select-option say s_vbeln ( as it contains multiple values ) we write select query as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * from vbak into t_vbeln where vbeln IN s_vbeln&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so please observe the difference between two queries..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if possible check the structure of s_vbeln in debug mode so that you understand the structure of select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Narin Nandivada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:36:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191422#M1001934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191423#M1001935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  There is no need for specially selecting the values, they will be automatically get selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just do the normal select into an internal table and write them on the list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT s_vbeln&lt;/P&gt;&lt;P&gt;s_vkorg&lt;/P&gt;&lt;P&gt;s_kunnr&lt;/P&gt;&lt;P&gt;FROM vbak&lt;/P&gt;&lt;P&gt;INTO TABLE itab&lt;/P&gt;&lt;P&gt;WHERE vbeln IN s_vbeln&lt;/P&gt;&lt;P&gt;AND vkorg IN s_vkorg&lt;/P&gt;&lt;P&gt;AND kunnr IN s_kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will select all the values in the select options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:36:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191423#M1001935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191424#M1001936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For displaying all the values of select options, by using select query you can display that on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will be same as another query..as you are using that values for fetching data from database and you will use internal table also so just need to display that select option field on selection screen from them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:36:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191424#M1001936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191425#M1001937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ..&lt;/P&gt;&lt;P&gt;you can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at s_kunnr .&lt;/P&gt;&lt;P&gt;write : s_kunnr-low &lt;/P&gt;&lt;P&gt;endloop .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at s_vbeln .&lt;/P&gt;&lt;P&gt;write : s_vbeln-low &lt;/P&gt;&lt;P&gt;endloop .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at s_vkorg .&lt;/P&gt;&lt;P&gt;write : s_vkorg-low &lt;/P&gt;&lt;P&gt;endloop .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will help you.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 05:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191425#M1001937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T05:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191426#M1001938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;I have three select-options in a selection-screen like s_vbeln for vbak-vbeln,&lt;/P&gt;&lt;P&gt;s_vkorg for vbak-vkorg,&lt;/P&gt;&lt;P&gt;s_kunnr for vbak-kunnr.....&lt;/P&gt;&lt;P&gt;I want to display the values entered in the select-options of the selection-screen on the report. &lt;/P&gt;&lt;P&gt;eg!..&lt;/P&gt;&lt;P&gt;If user enters the multiple values in the select-options, it has to show all the values entered . How do we display all the multiple values on the report.&lt;/P&gt;&lt;P&gt;IF user enter the ranges in the select-options it has to show only the range value(From and To value). How do we display only the range (from and to value) on the report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 06:35:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191426#M1001938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T06:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Reg.. Select-options -values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191427#M1001939</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;Plz check my earlier code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sumit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2008 06:39:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-select-options-values/m-p/4191427#M1001939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-24T06:39:03Z</dc:date>
    </item>
  </channel>
</rss>

