<?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: Display Select option in module pool screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396683#M815631</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As fas as I know the only possibility is to define a selection screen in the module pool like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN xxxx&lt;/P&gt;&lt;P&gt;  SELECT-OPTIONS:&lt;/P&gt;&lt;P&gt;     se_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END   OF SCREEN xxxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and to use a CALL SELECTION-SCREEN xxxx in your module pool.&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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Feb 2008 09:40:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-15T09:40:44Z</dc:date>
    <item>
      <title>Display Select option in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396682#M815630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are the Function modules used to display Select option type fields in a module pool screen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 09:35:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396682#M815630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T09:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: Display Select option in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396683#M815631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As fas as I know the only possibility is to define a selection screen in the module pool like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN xxxx&lt;/P&gt;&lt;P&gt;  SELECT-OPTIONS:&lt;/P&gt;&lt;P&gt;     se_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END   OF SCREEN xxxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and to use a CALL SELECTION-SCREEN xxxx in your module pool.&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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 09:40:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396683#M815631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T09:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Display Select option in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396684#M815632</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;You can use the SELECT-OPTIONS statement to place a group of fields on the screen that allows users&lt;/P&gt;&lt;P&gt;to enter complex selections. The selection may be a single value, or any form of interval&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection ranges are stored in programs using an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ABAP statement SELECT-OPTIONS &amp;lt;selname&amp;gt; FOR &amp;lt;field&amp;gt; declares an internal table called&lt;/P&gt;&lt;P&gt;&amp;lt;selname&amp;gt;, containing four fields - SIGN, OPTION, LOW, and HIGH. The fields LOW and HIGH have&lt;/P&gt;&lt;P&gt;the same type as the field &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SIGN field can take the value 'I' (for inclusive) or 'E' (for exclusive).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The OPTION field can contain relational operators (EQ, NE, LE, LT, GE, GT), pattern operators (CP,NP), and operators that allow you to enter intervals (BT, NB).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK conn WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS pa_car LIKE wa_sflight-carrid OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: so_car FOR wa_sflight-carrid,&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK conn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this helps, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 09:40:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396684#M815632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T09:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Display Select option in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396685#M815633</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;There is no such Function module ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but u can declare ur selection screen in the mpool program as a screen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and u can call the selection screen in ur subscreen area....&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 09:43:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396685#M815633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T09:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Display Select option in module pool screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396686#M815634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have already not discovered, please see function module 'COMPLEX_SELECTIONS_DIALOG'.  I found it when inquiring for something similar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2008 19:04:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-select-option-in-module-pool-screen/m-p/3396686#M815634</guid>
      <dc:creator>brian_basch</dc:creator>
      <dc:date>2008-07-28T19:04:44Z</dc:date>
    </item>
  </channel>
</rss>

