<?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: Drop down option in the development in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-option-in-the-development/m-p/3638113#M876185</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want drop down for a field for your own screen field then just go to layout of screen painter and click that field input/output  button ,,now you will get one dailog box within this you have one option called dropdown...just select this and below you have searchhelp give your ztable in that...thats it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helpful.&lt;/P&gt;&lt;P&gt;Dara.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 19 Apr 2008 08:07:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-19T08:07:48Z</dc:date>
    <item>
      <title>Drop down option in the development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-option-in-the-development/m-p/3638112#M876184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to give a drop down option to one field. The values in the drop down are needed to be appeared from one Ztable field. For example in standard Tcode MM01 - Industry sector or material type can be selected through drop down. Similarly to this I want to use in my development. Please suggest me..how we can achieve this. What is the command for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Apr 2008 07:05:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-option-in-the-development/m-p/3638112#M876184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-19T07:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Drop down option in the development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-option-in-the-development/m-p/3638113#M876185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want drop down for a field for your own screen field then just go to layout of screen painter and click that field input/output  button ,,now you will get one dailog box within this you have one option called dropdown...just select this and below you have searchhelp give your ztable in that...thats it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helpful.&lt;/P&gt;&lt;P&gt;Dara.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Apr 2008 08:07:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-option-in-the-development/m-p/3638113#M876185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-19T08:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Drop down option in the development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-option-in-the-development/m-p/3638114#M876186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this:  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' for search help for your drop down list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 15:38:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-option-in-the-development/m-p/3638114#M876186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T15:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Drop down option in the development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-option-in-the-development/m-p/3638115#M876187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Suresh,
&lt;STRONG&gt;To get Drop Drown Box on screen .&lt;/STRONG&gt;
Follow these steps.
&lt;STRONG&gt;1&lt;/STRONG&gt;.Go to T.Code SE51 and Select Laypout for the Screen.
&lt;STRONG&gt;2&lt;/STRONG&gt;.Double click on the field for which u want Dropdown box.
&lt;STRONG&gt;3&lt;/STRONG&gt;.Then U will see Name ,Text ,DROPDOWN.Click on that and select List Box or ListBox with key . Better to to select first one.
&lt;STRONG&gt;4&lt;/STRONG&gt;.Save and Activate ur screen .
&lt;STRONG&gt;5&lt;/STRONG&gt;.Enter the following piece of code in the PBO of the screen.(Change for ur requirement).

&lt;PRE&gt;&lt;CODE&gt;TYPE-POOLS :vrm.
DATA:
  i_natio TYPE vrm_values, "--&amp;gt;Table that is passed through FM vrm_set_values
  w_natio LIKE LINE OF i_natio.
 
DATA: 
BEGIN OF i_t005t OCCURS 0,
    land1 TYPE t005t-land1,
    natio TYPE t005t-natio,
END OF i_t005t.

IF i_t005t[] IS INITIAL.
  SELECT land1 natio
     FROM t005t
       INTO TABLE i_t005t
   WHERE spras = sy-langu.
  IF sy-subrc = 0.
  LOOP AT i_t005t .
      w_natio-key = i_t005t-land1.
      w_natio-text = i_t005t-natio.
      APPEND w_natio TO i_natio.
      CLEAR w_natio.
  ENDLOOP.
  ENDIF.
ENDIF.

CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
                       id = 'I_IT0002-NATIO' "--&amp;gt;Field for which dropdown is needed.
                values = i_natio
EXCEPTIONS
   id_illegal_name = 1
            OTHERS = 2.
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;
 
&lt;STRONG&gt;6&lt;/STRONG&gt;.Observe the above code and change as for ur requirement.

I hope that it helps u .

Regards,
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 15:48:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drop-down-option-in-the-development/m-p/3638115#M876187</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2008-04-21T15:48:42Z</dc:date>
    </item>
  </channel>
</rss>

