<?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: filling select-option dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116574#M443077</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;INITIALISATION event is called once only at the start.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you press particular radio button, you can that code &lt;/P&gt;&lt;P&gt;at user command. by giving FCODE for the selct option field &amp;amp; then check it at at user coomand &amp;amp; try to fill the select option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Apr 2007 11:19:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-19T11:19:52Z</dc:date>
    <item>
      <title>filling select-option dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116571#M443074</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 have two radio buttons.&lt;/P&gt;&lt;P&gt;I want to fill the select-options (account group ktokk) when i click a radio button.&lt;/P&gt;&lt;P&gt;I tried to fill them at INITIALIZATION event. But it is not working.&lt;/P&gt;&lt;P&gt;Is it possible to do so.&lt;/P&gt;&lt;P&gt;Please answer my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rekha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 11:11:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116571#M443074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T11:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: filling select-option dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116572#M443075</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;chk this code sample:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/abap" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/abap&lt;/A&gt;&lt;EM&gt;Program&lt;/EM&gt;to&lt;EM&gt;generate&lt;/EM&gt;select-options+dynamically&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**reward if helpful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 11:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116572#M443075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T11:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: filling select-option dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116573#M443076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rekha,&lt;/P&gt;&lt;P&gt;try like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:vbak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:p_1   RADIOBUTTON GROUP g1 USER-COMMAND cmd1,&lt;/P&gt;&lt;P&gt; p_2   RADIOBUTTON GROUP g1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:s_vbeln for vbak-vbeln.&lt;/P&gt;&lt;P&gt;*SELECTION-SCREEN :PUSHBUTTON /2(10) but1 USER-COMMAND fcode .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*INITIALIZATION.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; but1 = 'GET List'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  IF p_1 = 'X'.&lt;/P&gt;&lt;P&gt;    s_vbeln-low = '1000'.&lt;/P&gt;&lt;P&gt;    s_vbeln-option = 'EQ'.&lt;/P&gt;&lt;P&gt;    s_vbeln-sign = 'I'.&lt;/P&gt;&lt;P&gt;    APPEND s_vbeln.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    REFRESH s_vbeln.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 11:18:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116573#M443076</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2007-04-19T11:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: filling select-option dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116574#M443077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;INITIALISATION event is called once only at the start.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you press particular radio button, you can that code &lt;/P&gt;&lt;P&gt;at user command. by giving FCODE for the selct option field &amp;amp; then check it at at user coomand &amp;amp; try to fill the select option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 11:19:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116574#M443077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T11:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: filling select-option dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116575#M443078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Try doing that in AT SELECTION-SCREEN event by giving Radio button a User command.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;       Jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 11:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116575#M443078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T11:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: filling select-option dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116576#M443079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YOU HAVE TO CODE IN AT SELECTION-SCREEN OUTPUT...&lt;/P&gt;&lt;P&gt;PARAMETERS : R1 RADIOBUTTON GROUP RG1 USER-COMMAND PRES,&lt;/P&gt;&lt;P&gt;             R2 RADIOBUTTON GROUP RG1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF R2 = 'X'.&lt;/P&gt;&lt;P&gt; SELECT &amp;lt;FIELD&amp;gt; FROM &amp;lt;DBTAB&amp;gt; INTO &amp;lt;PARAMETER NAME&amp;gt; WHERE....&lt;/P&gt;&lt;P&gt;ENDIF. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS&lt;/P&gt;&lt;P&gt;SHIBA DUTTA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2007 11:22:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/filling-select-option-dynamically/m-p/2116576#M443079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-19T11:22:39Z</dc:date>
    </item>
  </channel>
</rss>

