<?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: Selct Options in Module Pool screen....... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selct-options-in-module-pool-screen/m-p/6744480#M1459090</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is much more easy to define a &amp;lt;a class="jive-link-external" href="http://help.sap.com/abapdocu_70/en/ABAPSELECTION-SCREEN_SUBSCREEN.htm" target="_newWindow"&amp;gt;selection-screen as subscreen&amp;lt;/a&amp;gt; (like a report selection-screen) and to include this subscreen into your screen. (SAP sample at &amp;lt;a class="jive-link-external" href="http://help.sap.com/abapdocu_70/en/ABENSEL_SCREEN_SUBSCREEN_ABEXA.htm" target="_newWindow"&amp;gt;Selection Screens as Subscreens &amp;lt;/a&amp;gt;)&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Feb 2010 14:20:21 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2010-02-24T14:20:21Z</dc:date>
    <item>
      <title>Selct Options in Module Pool screen.......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selct-options-in-module-pool-screen/m-p/6744478#M1459088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We know the way to get the Select options on the Module -Pool screen as follows....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create 2 separate fields in your screen layout - one for the low value and one for the high value. Insert an icon beside the high value which will call the multiple selections popup screen on user command. Use function module &lt;STRONG&gt;COMPLEX_SELECTIONS_DIALOG&lt;/STRONG&gt; to achieve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried the same as a test run for the FM. .but not returning meaningfull range......&lt;/P&gt;&lt;P&gt;Can any 1 clerify where the code containing the FM has to be included in the Screen flow (inside PAI, PBO or else) to get the range which can further be used inside the code for database selections or else..... .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondly, how is the inserted icon populated and  used while coding........????&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 And Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abhi........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 13:16:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selct-options-in-module-pool-screen/m-p/6744478#M1459088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-24T13:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selct Options in Module Pool screen.......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selct-options-in-module-pool-screen/m-p/6744479#M1459089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt; Please find the below code u will get select options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dont create any screen fitst jus type of prog is 'M' and create a tcode with 100 screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;than execute u will get select options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES:VBAP.

SELECTION-SCREEN BEGIN OF SCREEN 100 .
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
SELECT-OPTIONS S_VBELN FOR VBAP-VBELN.
PARAMETER P_WERKS LIKE VBAP-WERKS.
SELECT-OPTIONS S_ERDAT FOR VBAP-ERDAT.
SELECTION-SCREEN END OF BLOCK B1.
SELECTION-SCREEN END OF SCREEN 100.&lt;/CODE&gt;&lt;/PRE&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;Surendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 14:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selct-options-in-module-pool-screen/m-p/6744479#M1459089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-24T14:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Selct Options in Module Pool screen.......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selct-options-in-module-pool-screen/m-p/6744480#M1459090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is much more easy to define a &amp;lt;a class="jive-link-external" href="http://help.sap.com/abapdocu_70/en/ABAPSELECTION-SCREEN_SUBSCREEN.htm" target="_newWindow"&amp;gt;selection-screen as subscreen&amp;lt;/a&amp;gt; (like a report selection-screen) and to include this subscreen into your screen. (SAP sample at &amp;lt;a class="jive-link-external" href="http://help.sap.com/abapdocu_70/en/ABENSEL_SCREEN_SUBSCREEN_ABEXA.htm" target="_newWindow"&amp;gt;Selection Screens as Subscreens &amp;lt;/a&amp;gt;)&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&amp;lt;br /&amp;gt;&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 14:20:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selct-options-in-module-pool-screen/m-p/6744480#M1459090</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-02-24T14:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Selct Options in Module Pool screen.......</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selct-options-in-module-pool-screen/m-p/6744481#M1459091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thankss...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abhi.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 11:47:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selct-options-in-module-pool-screen/m-p/6744481#M1459091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T11:47:20Z</dc:date>
    </item>
  </channel>
</rss>

