<?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: capturing List box value  in Module pool while executing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164577#M121449</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  When you select values from List box, you will get&lt;/P&gt;&lt;P&gt;  only key value of the entry.&lt;/P&gt;&lt;P&gt;  Lets say if you give key value 1 for AND and&lt;/P&gt;&lt;P&gt;  2 for OR then when you seelct the AND entry you will &lt;/P&gt;&lt;P&gt;  get 1 in the list box parameter, so again you need to&lt;/P&gt;&lt;P&gt;  read the value from the table to get it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Siri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Feb 2006 09:23:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-09T09:23:01Z</dc:date>
    <item>
      <title>capturing List box value  in Module pool while executing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164573#M121445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Plz let me know if any one can help me out in this regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have designed a screen with a list box.&lt;/P&gt;&lt;P&gt;And using VRM type pool, FM vrm_set_values am able get values in list box,the list box contains the values AND,OR...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is when executing am able to select value from the list box i.e.,AND&lt;/P&gt;&lt;P&gt;but the value 'AND' is not coming in the field...when i am debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help me out in capturing the field value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 09:04:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164573#M121445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T09:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: capturing List box value  in Module pool while executing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164574#M121446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sudha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. We can also use the FM&lt;/P&gt;&lt;P&gt;   F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  (here u will be able to capture the value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : BEGIN OF itab OCCURS 0,&lt;/P&gt;&lt;P&gt;         bukrs LIKE t001-bukrs,&lt;/P&gt;&lt;P&gt;         butxt LIKE t001-butxt,&lt;/P&gt;&lt;P&gt;         END OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT * FROM t001 INTO CORRESPONDING FIELDS OF TABLE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'BUKRS'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;      dynprofield     = 'MYLISTTAB'&lt;/P&gt;&lt;P&gt;      dynpprog        = sy-repid&lt;/P&gt;&lt;P&gt;      dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = itab&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      parameter_error = 1&lt;/P&gt;&lt;P&gt;      no_values_found = 2&lt;/P&gt;&lt;P&gt;      OTHERS          = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. In pai module,&lt;/P&gt;&lt;P&gt;   use the code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;  field mylistab module abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where field = your field name&lt;/P&gt;&lt;P&gt;      abc = module name (which contains the above coding in step 2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Amit Mittal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 09:12:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164574#M121446</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T09:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: capturing List box value  in Module pool while executing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164575#M121447</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;check these demo examples..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;demo_dropdown_list_box&lt;/P&gt;&lt;P&gt;demo_dynpro_dropdown_listbox&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 09:15:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164575#M121447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T09:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: capturing List box value  in Module pool while executing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164576#M121448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here in my screen 1000, i have input/output fields,which i converted to list box.These list boxes are not getting populated from dictionary.I have hard coded values in it as 'AND','OR','IN','&amp;lt;','&amp;gt;','&amp;lt;=',etc.&lt;/P&gt;&lt;P&gt;When I execute the program , i am able to select the value from list box , the problem is in debugging am not able to get these selected value for respective fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FM which you have suggested is for DB fields not for Hard coded values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help me out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 09:23:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164576#M121448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T09:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: capturing List box value  in Module pool while executing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164577#M121449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  When you select values from List box, you will get&lt;/P&gt;&lt;P&gt;  only key value of the entry.&lt;/P&gt;&lt;P&gt;  Lets say if you give key value 1 for AND and&lt;/P&gt;&lt;P&gt;  2 for OR then when you seelct the AND entry you will &lt;/P&gt;&lt;P&gt;  get 1 in the list box parameter, so again you need to&lt;/P&gt;&lt;P&gt;  read the value from the table to get it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Siri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 09:23:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164577#M121449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T09:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: capturing List box value  in Module pool while executing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164578#M121450</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;U have to write below statment in Flow logic under &lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field &amp;lt;name of listbox&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After selecting a value from list box, press enter.&lt;/P&gt;&lt;P&gt;so, above code will execute and it contain ur selected value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Digesh Panchal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 09:24:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164578#M121450</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T09:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: capturing List box value  in Module pool while executing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164579#M121451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The FM which you have suggested is for DB fields not for Hard coded values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its not so.&lt;/P&gt;&lt;P&gt;We can fill the INTERNAL TABLE manually.&lt;/P&gt;&lt;P&gt;In ur case define internal table,&lt;/P&gt;&lt;P&gt;and fill it with the AND OR IN &amp;lt; &amp;gt; = etc.&lt;/P&gt;&lt;P&gt;and pass it to this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will work fantastic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 09:30:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-list-box-value-in-module-pool-while-executing/m-p/1164579#M121451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T09:30:35Z</dc:date>
    </item>
  </channel>
</rss>

