<?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: taking data from select - option into internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266438#M1529581</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Please do not ask or answer basic questions - thread locked

Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Sep 2010 17:14:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-16T17:14:43Z</dc:date>
    <item>
      <title>taking data from select - option into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266432#M1529575</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 have declared a select option as under:&lt;/P&gt;&lt;P&gt;   select-options: s_matnr type matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to loop at the data from the select option &amp;amp; do some operation , how can i take each data into an internal table, with all SIGN,OPTIONS,LOW &amp;amp; HIGH value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mudit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Sep 2010 17:35:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266432#M1529575</guid>
      <dc:creator>muditbathwal621</dc:creator>
      <dc:date>2010-09-15T17:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: taking data from select - option into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266433#M1529576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first of all, you select-option should be for a table-field, like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;tables: mara
 ...
select-option: s_matnr for mara-matnr.
...
  select matnr from mara into table it_matnr "where defined as a table with one field matnr....
      where matnr in s_matnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;this wil give you a table of materials that matched your selection input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Sep 2010 18:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266433#M1529576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-15T18:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: taking data from select - option into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266434#M1529577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Select option itself is like internal table ,you can perform some logic for select as below,&lt;/P&gt;&lt;P&gt;Loop at &amp;lt;sel_opt&amp;gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;here you can write you logic.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Sep 2010 19:00:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266434#M1529577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-15T19:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: taking data from select - option into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266435#M1529578</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;  Thanks for the solution, but the internal table in which i m populating the data will have only the value not the sign and option field&lt;/P&gt;&lt;P&gt;how can i populate that too,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mudit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Sep 2010 16:23:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266435#M1529578</guid>
      <dc:creator>muditbathwal621</dc:creator>
      <dc:date>2010-09-16T16:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: taking data from select - option into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266436#M1529579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use f1 help on Select-option and then Ranges  , you will get the answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Sep 2010 16:28:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266436#M1529579</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2010-09-16T16:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: taking data from select - option into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266437#M1529580</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 need to just loop at to your select option field it will have all sign option low and high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
parameters : s_vbeln for vbak-vbeln.

loop at s_vbeln.
write : / s_vbeln-sign, s_vbeln-option,s_vbeln-low,s_vbeln-high
enloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anmol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Sep 2010 16:53:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266437#M1529580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-16T16:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: taking data from select - option into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266438#M1529581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;Moderator message - Please do not ask or answer basic questions - thread locked

Rob&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Sep 2010 17:14:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/taking-data-from-select-option-into-internal-table/m-p/7266438#M1529581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-16T17:14:43Z</dc:date>
    </item>
  </channel>
</rss>

