<?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 Reagrding List Box in Module Pool Program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reagrding-list-box-in-module-pool-program/m-p/1585473#M263992</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am M.Ramana Murthy, I got stuct in one issue in Dialog Programming regarding list box. Actually my requirement is like this I have 3 list box. In the first list box i have to get the list of countries from a Database table.And when i select the Country then in the second list box i have to get the states in that particular countries. and in the 3rd list box i have to get the districts in that particular state. So can any one help me out solving this probelm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;M.Ramana Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Oct 2006 04:38:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-05T04:38:15Z</dc:date>
    <item>
      <title>Reagrding List Box in Module Pool Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reagrding-list-box-in-module-pool-program/m-p/1585473#M263992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am M.Ramana Murthy, I got stuct in one issue in Dialog Programming regarding list box. Actually my requirement is like this I have 3 list box. In the first list box i have to get the list of countries from a Database table.And when i select the Country then in the second list box i have to get the states in that particular countries. and in the 3rd list box i have to get the districts in that particular state. So can any one help me out solving this probelm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;M.Ramana Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 04:38:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reagrding-list-box-in-module-pool-program/m-p/1585473#M263992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T04:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Reagrding List Box in Module Pool Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reagrding-list-box-in-module-pool-program/m-p/1585474#M263993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kishore kari  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"on your intenal table for country in the PBO status u can use&lt;/P&gt;&lt;P&gt;where NAME is the name of your list box&lt;/P&gt;&lt;P&gt;set list box property Respond to double click on give  the  function code to it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: NAME  TYPE vrm_id,&lt;/P&gt;&lt;P&gt;      OPT11 TYPE vrm_values,&lt;/P&gt;&lt;P&gt;      VALUE LIKE LINE OF OPT11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB_MM_RR_VEN_NR.           &lt;/P&gt;&lt;P&gt;  value-key  = ITAB_MM_RR_VEN_NR.&lt;/P&gt;&lt;P&gt;  value-text = ITAB_MM_RR_VEN_NR.&lt;/P&gt;&lt;P&gt;  APPEND value TO OPT11.&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                    = NAME    &lt;/P&gt;&lt;P&gt;    VALUES                = OPT11&lt;/P&gt;&lt;P&gt;      .&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI&lt;/P&gt;&lt;P&gt;check the OK_CODE and load the data using the same concept  used above to load the data of region and distict&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;Pulkit Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 04:52:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reagrding-list-box-in-module-pool-program/m-p/1585474#M263993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-05T04:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reagrding List Box in Module Pool Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reagrding-list-box-in-module-pool-program/m-p/1585475#M263994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think better to use F4 help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its easy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Oct 2006 05:33:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reagrding-list-box-in-module-pool-program/m-p/1585475#M263994</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-10-05T05:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Reagrding List Box in Module Pool Program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reagrding-list-box-in-module-pool-program/m-p/1585476#M263995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramana, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use the function module &amp;lt;b&amp;gt;VRM_SET_VAL&amp;lt;/b&amp;gt;UES to appear the values in list box. please refer the demo program &amp;lt;b&amp;gt;DEMO_DYNPRO_DROPDOWN_LISTBOX&amp;lt;/b&amp;gt; to have clear idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Alfred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Oct 2006 04:46:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reagrding-list-box-in-module-pool-program/m-p/1585476#M263995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-07T04:46:46Z</dc:date>
    </item>
  </channel>
</rss>

