<?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: MULTIPLE SELECTION IN SELECTION SCREEN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844793#M924376</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options:s_pernr for pa0002-pernr .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the select options can have multiple selections and it can hold 1624 multiple values..for the requirement you said u need to write in your own way..with the function module..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZPOPDATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: V_CODE LIKE SY-SUBRC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: V_MONTH LIKE ISELLIST-MONTH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR V_MONTH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_TO_SELECT_MONTH'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;ACTUAL_MONTH = '200205'&lt;/P&gt;&lt;P&gt;LANGUAGE = SY-LANGU&lt;/P&gt;&lt;P&gt;START_COLUMN = 8&lt;/P&gt;&lt;P&gt;START_ROW = 5&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;SELECTED_MONTH = V_MONTH&lt;/P&gt;&lt;P&gt;RETURN_CODE = V_CODE&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FACTORY_CALENDAR_NOT_FOUND = 1&lt;/P&gt;&lt;P&gt;HOLIDAY_CALENDAR_NOT_FOUND = 2&lt;/P&gt;&lt;P&gt;MONTH_NOT_FOUND = 3&lt;/P&gt;&lt;P&gt;OTHERS = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 May 2008 18:13:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-14T18:13:02Z</dc:date>
    <item>
      <title>MULTIPLE SELECTION IN SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844791#M924374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need in my selection screen (I do it with code not with Paint Painter) put anything that permit multiple selection..., &lt;/P&gt;&lt;P&gt;We have a class which have a characteristics multi value..., and I need to get in my selection screen put with code  SELECTION SCREEN or PARAMETERS... or another thing to get a multi value selection.... I mean, when user introduce a value ..., automatically appear another square to permit introduce another value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 16:12:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844791#M924374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T16:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: MULTIPLE SELECTION IN SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844792#M924375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PARAMETERS only allows one value, to be able to get multiple values just use&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: lv_matnr TYPE matnr.

SELECT-OPTIONS s_matnr FOR lv_matnr
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will give you the possibility to put in a material number or range with inclusions, exclusions etc., just click on the green arrow on the right hand side of the field once you execute your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 17:51:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844792#M924375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T17:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: MULTIPLE SELECTION IN SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844793#M924376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options:s_pernr for pa0002-pernr .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the select options can have multiple selections and it can hold 1624 multiple values..for the requirement you said u need to write in your own way..with the function module..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZPOPDATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: V_CODE LIKE SY-SUBRC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: V_MONTH LIKE ISELLIST-MONTH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR V_MONTH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_TO_SELECT_MONTH'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;ACTUAL_MONTH = '200205'&lt;/P&gt;&lt;P&gt;LANGUAGE = SY-LANGU&lt;/P&gt;&lt;P&gt;START_COLUMN = 8&lt;/P&gt;&lt;P&gt;START_ROW = 5&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;SELECTED_MONTH = V_MONTH&lt;/P&gt;&lt;P&gt;RETURN_CODE = V_CODE&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;FACTORY_CALENDAR_NOT_FOUND = 1&lt;/P&gt;&lt;P&gt;HOLIDAY_CALENDAR_NOT_FOUND = 2&lt;/P&gt;&lt;P&gt;MONTH_NOT_FOUND = 3&lt;/P&gt;&lt;P&gt;OTHERS = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 18:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844793#M924376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T18:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: MULTIPLE SELECTION IN SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844794#M924377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Pedro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just use SELECT-OPTIONS instead of PARAMETERS.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS has two fields - LOW and HIGH. There, you'll come up with a value range, from LOW to HIGH.&lt;/P&gt;&lt;P&gt;Like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES: mara.

SELECT-OPTIONS: s_matnr FOR mara-matnr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Brian Gonsales&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 12:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844794#M924377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T12:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: MULTIPLE SELECTION IN SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844795#M924378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi pedro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use SELECT-OPTIONS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is an example.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
tables: bkpf.

select-options s_belnr for bkpf-belnr.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 12:06:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844795#M924378</guid>
      <dc:creator>peter_ruiz2</dc:creator>
      <dc:date>2008-05-19T12:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: MULTIPLE SELECTION IN SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844796#M924379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thks all for your comments.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 14:15:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-in-selection-screen/m-p/3844796#M924379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T14:15:33Z</dc:date>
    </item>
  </channel>
</rss>

