<?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: combo box in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888500#M678666</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In case of module programming, place an input / output field on the screen and double clikc on it, whihc will lead you to the properties window of that element.&lt;/P&gt;&lt;P&gt;now the 3rd option is the Dropdown--&amp;gt; chose it to Listbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will make ur field a list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use my above code and write it in the PBO of the screen module.&lt;/P&gt;&lt;P&gt;and make sure you pass the correct name for the listbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Sep 2007 05:09:29 GMT</pubDate>
    <dc:creator>gopi_narendra</dc:creator>
    <dc:date>2007-09-20T05:09:29Z</dc:date>
    <item>
      <title>combo box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888496#M678662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        I have a following problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           mode of receipt (DD/Cash/Cheque)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           I need to create a field in a table and store these value accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          And i want to bring the field into dialog programming &lt;/P&gt;&lt;P&gt;       for selecting the mode of receipt and store the single value in a field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         How to do this, what concept we need to use, is combox box available or any other method. If it is check table and value table means pls explain me the methods also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           Iam very new to this concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 04:21:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888496#M678662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T04:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: combo box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888497#M678663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please be more specific i did not understand your problem?????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 04:29:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888497#M678663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T04:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: combo box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888498#M678664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do it this way&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPE-POOLS : vrm.
PARAMETER : p_int AS LISTBOX VISIBLE LENGTH 10 OBLIGATORY.

DATA : name  TYPE vrm_id,
       list  TYPE vrm_values,
       value LIKE LINE OF list.


AT SELECTION-SCREEN OUTPUT.
  name = 'P_INT'.
  p_int = '1'.
  value-key = '1'.
  value-text = 'DD'.
  APPEND value TO list.
  value-key = '2'.
  value-text = 'Cash'.
  APPEND value TO list.
  value-key = '3'.
  value-text = 'Cheque'.
  APPEND value TO list.

  CALL FUNCTION 'VRM_SET_VALUES'
       EXPORTING
            id     = name
            values = list.
  CLEAR list.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its the case of a dailog programming, make sure you write this code in the PBO of the screen module only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 04:29:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888498#M678664</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-09-20T04:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: combo box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888499#M678665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gopi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        You have used parameter na, actually i need to use listbox or combo box in dialog programming not in report program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        How to use in dialog programming and whats about check and value table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        will it not used for this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your effort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajaram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 04:47:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888499#M678665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T04:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: combo box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888500#M678666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In case of module programming, place an input / output field on the screen and double clikc on it, whihc will lead you to the properties window of that element.&lt;/P&gt;&lt;P&gt;now the 3rd option is the Dropdown--&amp;gt; chose it to Listbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will make ur field a list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use my above code and write it in the PBO of the screen module.&lt;/P&gt;&lt;P&gt;and make sure you pass the correct name for the listbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 05:09:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888500#M678666</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-09-20T05:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: combo box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888501#M678667</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;Try to refer &amp;lt;b&amp;gt;"demo_sel_screen_parameters_2"&amp;lt;/b&amp;gt; program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Dharmishta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 05:16:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/combo-box/m-p/2888501#M678667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T05:16:41Z</dc:date>
    </item>
  </channel>
</rss>

