<?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: list Box in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910495#M56928</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your requirement is not clear&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you want something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value-key = '1'. &lt;/P&gt;&lt;P&gt;value-text = 'A'.&lt;/P&gt;&lt;P&gt;append value to list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value-key = '2'. &lt;/P&gt;&lt;P&gt;value-text = 'A'.&lt;/P&gt;&lt;P&gt;append value to list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value-key = '3'. &lt;/P&gt;&lt;P&gt;value-text = 'A'.&lt;/P&gt;&lt;P&gt;append value to list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this wont be useful/meaningful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be if you explain your requirement clearly we can helpout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 May 2005 08:46:26 GMT</pubDate>
    <dc:creator>athavanraja</dc:creator>
    <dc:date>2005-05-16T08:46:26Z</dc:date>
    <item>
      <title>list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910487#M56920</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;       i'm facing a small probs,plz help me out of this,in my selection sceen i have a list box which should have 4 values.all those 4 values are not from any database table.i had created an internal table with those 4values,i want that four to be displayed in the drop downlist box on the selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 04:47:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910487#M56920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-16T04:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910488#M56921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the code sample &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;type-pools: vrm.
data: name type vrm_id, list type vrm_values, value like line of
list.
parameters: p_obj(2) as listbox visible length 50 obligatory
            default 'AA' .
at selection-screen output.

clear list .
    refresh list .
    name = 'P_OBJ'.
    value-key = 'AA'. value-text = 'AA text'.
    append value to list .

     value-key = 'BB'. value-text = 'BB text'. append value to
    list .

    value-key = 'CC'. value-text =
    'CC text'.
    append value to list .

    call function 'VRM_SET_VALUES'
         exporting
              id     = name
              values = list.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 04:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910488#M56921</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-05-16T04:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910489#M56922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This topic ahs been discussed in the past in this form. Please search through the fourm and I'm sure you'll find the answer. One of the topics will be &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="23895"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 04:53:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910489#M56922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-16T04:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910490#M56923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u raja,&lt;/P&gt;&lt;P&gt;             its working very well,here based upon the vlue key we have to select the data na,plz guide me how to give the condition,to select the data for particular selection on the screen .koncham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 05:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910490#M56923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-16T05:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910491#M56924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want to make a selection from DB table based on what user selected in the parameter field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if yes , in the given example the value will be avaialable in &amp;lt;b&amp;gt;p_obj.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from xxxx into table yyyy where xxx = &amp;lt;b&amp;gt;p_obj&amp;lt;/b&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is this what you want?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, since your question is answered why dont you reward the answers that helped you and close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 05:35:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910491#M56924</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-05-16T05:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910492#M56925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi raja,&lt;/P&gt;&lt;P&gt;         actually i had displayed  4 names in the list,for each four names there are 4 values,for example i had displayed a,b,c,d in the list box.and i had assigned 1,2,3,4 for each values diplayed.upon selecting the a in the list box,it should take 1 for selection criteria.how to do this let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 06:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910492#M56925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-16T06:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910493#M56926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you saying that the your list table is like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value-key = '1'. &lt;/P&gt;&lt;P&gt;value-text = 'A'.&lt;/P&gt;&lt;P&gt;append value to list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value-key = '2'. &lt;/P&gt;&lt;P&gt;value-text = 'B'.&lt;/P&gt;&lt;P&gt;append value to list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value-key = '3'. &lt;/P&gt;&lt;P&gt;value-text = 'C'.&lt;/P&gt;&lt;P&gt;append value to list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value-key = '4'. &lt;/P&gt;&lt;P&gt;value-text = 'D'.&lt;/P&gt;&lt;P&gt;append value to list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes, then when the user selects 'A' , '1' will be passed to the parameter field automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 06:29:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910493#M56926</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-05-16T06:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910494#M56927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi raja,&lt;/P&gt;&lt;P&gt;       thanks for ur help but for single value text i have to pass 3 value-keys,how to do,its urgent for me.help me out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 08:38:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910494#M56927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-16T08:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910495#M56928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your requirement is not clear&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do you want something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value-key = '1'. &lt;/P&gt;&lt;P&gt;value-text = 'A'.&lt;/P&gt;&lt;P&gt;append value to list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value-key = '2'. &lt;/P&gt;&lt;P&gt;value-text = 'A'.&lt;/P&gt;&lt;P&gt;append value to list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value-key = '3'. &lt;/P&gt;&lt;P&gt;value-text = 'A'.&lt;/P&gt;&lt;P&gt;append value to list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this wont be useful/meaningful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be if you explain your requirement clearly we can helpout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 08:46:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910495#M56928</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-05-16T08:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910496#M56929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have four texts vertex,chem,system and cm4,this things to be displayed in the list box which i'm able to do,and cm4 has value xxxx,system value xxxx, chem value xxxx and vertex is having 3 values as xxxx,xyxy,yyyy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm passing among this selected one into select statement in where condition for system field prodh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is working for all the text i.e cm4,system and chem.but it is not working for vertex which is having 3 values.it is taking only the last value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 09:06:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910496#M56929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-16T09:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: list Box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910497#M56930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK got your point. &lt;/P&gt;&lt;P&gt;This you have to code it your self.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for vertex set the key to some unique stuff 'ABC' &lt;/P&gt;&lt;P&gt;create a range table.&lt;/P&gt;&lt;P&gt;ranges: test like &amp;lt;xxx&amp;gt; .&lt;/P&gt;&lt;P&gt;when the user selects 'ABC' &lt;/P&gt;&lt;P&gt;fill the range table with xxxx, xyxy, yyyy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then do the select where &amp;lt;ddd&amp;gt; in test .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2005 09:11:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-box/m-p/910497#M56930</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-05-16T09:11:50Z</dc:date>
    </item>
  </channel>
</rss>

