<?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: dropdown list in a module pool screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-list-in-a-module-pool-screen/m-p/3878995#M932387</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;goto the dynpro, remove the radio buttons, create a text-box and in it´s preferences chance the type to drop-down-list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 May 2008 09:51:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-29T09:51:34Z</dc:date>
    <item>
      <title>dropdown list in a module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-list-in-a-module-pool-screen/m-p/3878994#M932386</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;There are 2  radio buttons in module pool for 2 Plants.&lt;/P&gt;&lt;P&gt;Now another plant has to be added in the screen. The radio button has to be replaced with a drop down list for these 3 plants.&lt;/P&gt;&lt;P&gt;How can we acheive this?&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;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 09:46:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-list-in-a-module-pool-screen/m-p/3878994#M932386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T09:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown list in a module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-list-in-a-module-pool-screen/m-p/3878995#M932387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;goto the dynpro, remove the radio buttons, create a text-box and in it´s preferences chance the type to drop-down-list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 09:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-list-in-a-module-pool-screen/m-p/3878995#M932387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T09:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown list in a module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-list-in-a-module-pool-screen/m-p/3878996#M932388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,  &lt;/P&gt;&lt;P&gt;   If u want a dropdown for the third plant you enter on the screen, You can use the FM  'VRM_SET_VALUES' to get the dropdown.&lt;/P&gt;&lt;P&gt; Just refer to this sample code to get a dropdown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: vrm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS p_werks LIKE mseg-werks AS LISTBOX&lt;/P&gt;&lt;P&gt;VISIBLE LENGTH 20 OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_werks TYPE vrm_values,&lt;/P&gt;&lt;P&gt;w_line LIKE LINE OF t_werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT werks  FROM mseg INTO table t_werks."(w_line-key, w_line-text).&lt;/P&gt;&lt;P&gt;*APPEND w_line TO t_carrid.&lt;/P&gt;&lt;P&gt;*ENDSELECT.&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;CALL FUNCTION 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;id = 'P_werks'&lt;/P&gt;&lt;P&gt;values = t_werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / 'Selected Carrid value:', p_werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kalyan Chakravarthi on May 29, 2008 11:55 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 09:54:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdown-list-in-a-module-pool-screen/m-p/3878996#M932388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T09:54:56Z</dc:date>
    </item>
  </channel>
</rss>

