<?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: Need to populate select options dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-populate-select-options-dynamically/m-p/1660715#M292854</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;Example of populating select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS SO_MATNR FOR MARA-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO_MATNR-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;SO_MATNR-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;SO_MATNR-LOW = '12345667809'.&lt;/P&gt;&lt;P&gt;APPEND S0_MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Oct 2006 15:20:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-20T15:20:22Z</dc:date>
    <item>
      <title>Need to populate select options dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-populate-select-options-dynamically/m-p/1660714#M292853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I got the requirement as below.&lt;/P&gt;&lt;P&gt;On the std. selection screen, i have a list box and if I select any of the values from the listbox, i will populate an internal table with some records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if the internal table which I had populated got say 5 records, i have to populate five select-options on the same std selection screen itself (below the list box parameter).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to achieve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in adv.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sookshma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Oct 2006 15:15:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-populate-select-options-dynamically/m-p/1660714#M292853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-20T15:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need to populate select options dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-populate-select-options-dynamically/m-p/1660715#M292854</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;Example of populating select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS SO_MATNR FOR MARA-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO_MATNR-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;SO_MATNR-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;SO_MATNR-LOW = '12345667809'.&lt;/P&gt;&lt;P&gt;APPEND S0_MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Oct 2006 15:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-populate-select-options-dynamically/m-p/1660715#M292854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-20T15:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Need to populate select options dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-populate-select-options-dynamically/m-p/1660716#M292855</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 can try to transfer the data in AT SELECTION-SCREEN event.&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;DESCRIBE TABLE SEL_OPT_1 LINES SY-TABIX.&lt;/P&gt;&lt;P&gt;IF SY-TABIX &amp;gt; 0.&lt;/P&gt;&lt;P&gt;REFRESH SEL_OPT_2.&lt;/P&gt;&lt;P&gt;LOOP AT SEL_OPT1.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING SEL_OPT1 TO SEL_OPT_2.&lt;/P&gt;&lt;P&gt;APPEND SEL_OPT_2.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use that code to fill the other select-options, but how to fill them depends on what you need to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U should give us more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Oct 2006 15:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-to-populate-select-options-dynamically/m-p/1660716#M292855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-20T15:23:55Z</dc:date>
    </item>
  </channel>
</rss>

