<?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 pull down menu in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-down-menu/m-p/1623796#M278858</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need a pull down menu in the selection screen based on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lable             Value      Type            comments&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SurveyProvider     T71JPR06   Pull Down       &lt;/P&gt;&lt;P&gt;                              Menu&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;in comments he mentioned : All data returned for  T71JPR06 must be within the data selection period defined in the report period selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so how can i get the pull down menu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;laxmi.A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Oct 2006 12:40:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-06T12:40:07Z</dc:date>
    <item>
      <title>pull down menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-down-menu/m-p/1623796#M278858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need a pull down menu in the selection screen based on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lable             Value      Type            comments&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SurveyProvider     T71JPR06   Pull Down       &lt;/P&gt;&lt;P&gt;                              Menu&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;in comments he mentioned : All data returned for  T71JPR06 must be within the data selection period defined in the report period selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so how can i get the pull down menu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;laxmi.A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 12:40:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-down-menu/m-p/1623796#M278858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T12:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: pull down menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-down-menu/m-p/1623797#M278859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the FM &amp;lt;b&amp;gt;VRM_SET_VALUES&amp;lt;/b&amp;gt; to give the dropdown for a field in selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 12:42:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-down-menu/m-p/1623797#M278859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T12:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: pull down menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-down-menu/m-p/1623798#M278860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer the sample programs:&lt;/P&gt;&lt;P&gt;RSDEMO_DROPDOWN_LISTBOX or&lt;/P&gt;&lt;P&gt;DEMO_DROPDOWN_LIST_BOX&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 12:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-down-menu/m-p/1623798#M278860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T12:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: pull down menu</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pull-down-menu/m-p/1623799#M278861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi laxmi check the code below and award points if found helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
***DATA DECLARATION

DATA : V TYPE VRM_VALUES.

DATA : DROPDOWN LIKE LINE OF V. 

INITIALIZATION.

*** Vars for population of dropdown 


DROPDOWN-KEY = '1'.

DROPDOWN-TEXT = 'BSE'.

APPEND DROPDOWN TO V. 


DROPDOWN-KEY = '2'.

DROPDOWN-TEXT = 'NSE'. 


APPEND DROPDOWN TO V. 


CALL FUNCTION 'VRM_SET_VALUES'

EXPORTING

ID = 'EXCH'

VALUES = V

EXCEPTIONS

ID_ILLEGAL_NAME = 1

OTHERS = 2. 

IF EXCH = 1.

L_EXCH = 'BSE'.

ELSEIF EXCH = 2.

L_EXCH = 'NSE'.

ELSE.

FLAG_END = 'X'.

MESSAGE I000(ZZ) WITH 'Select an exchange from dropdown'.

STOP.

ENDIF. 

****SELECTION SCREEN
PARAMETERS: EXCH(3) TYPE C AS LISTBOX VISIBLE LENGTH 10

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 12:52:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pull-down-menu/m-p/1623799#M278861</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2006-10-06T12:52:45Z</dc:date>
    </item>
  </channel>
</rss>

