<?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: how to do multiple selections for a selection screen object in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438864#M208949</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kiran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then why dont you do as below&lt;/P&gt;&lt;P&gt;data: begin of itab&lt;/P&gt;&lt;P&gt;      matnr type matnr&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select matnr form mara&lt;/P&gt;&lt;P&gt;       into itab&lt;/P&gt;&lt;P&gt;       where matnr in (the select-option that you have defined for rmcbc_matnr) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab will contain all the matnrs that you have defined in your selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award Points for helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2006 10:21:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-20T10:21:29Z</dc:date>
    <item>
      <title>how to do multiple selections for a selection screen object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438858#M208943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i need to select material (RMCBC_MATNR) from a selection screen. how do i facilitate for multiple selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help me out. thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:06:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438858#M208943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T10:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to do multiple selections for a selection screen object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438859#M208944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;at the end of the selection screen option you would find a button , please click on it and you can enter all the values  you would want to check out for&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:08:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438859#M208944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T10:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to do multiple selections for a selection screen object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438860#M208945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but how can i catch all those values and further use them. can u demonstrate that with a piece of sample code, if possible. thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:12:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438860#M208945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T10:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to do multiple selections for a selection screen object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438861#M208946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the Function Module &amp;lt;b&amp;gt;F4IF_FIELD_VALUE_REQUEST&amp;lt;/b&amp;gt;. In that FM, there is a parameter for Multiple selection. You have to set it &lt;/P&gt;&lt;P&gt;as 'X'. Call the FM in this following event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR RMCBC_MATNR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Whatever values that you have selected will be stored in the table parameter&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:13:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438861#M208946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T10:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to do multiple selections for a selection screen object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438862#M208947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am guessing that you have SELECT-OPTIONS in the selection screen. So, once you have entered mutlipel values by clicking on the button, all you have to do is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM XXX WHEER COLUMN IN S_OPTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_OPTION is your select options on the screen. It will take care of all the values entered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_OPTION is a internal table. Take a look at the help for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:14:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438862#M208947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T10:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to do multiple selections for a selection screen object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438863#M208948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt; For declaring the material in the prgram use select option.&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS s_mat FOR mara-matnr.&lt;/P&gt;&lt;P&gt;On execution Just right of the field you will get an arroe press on that a box will be opened put all your materials in this box and execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For using the select options for fetching the code use it&lt;/P&gt;&lt;P&gt;  SELECT matnr FROM mara INTO TABLE p_mara_table&lt;/P&gt;&lt;P&gt;               WHERE mtart IN s_mat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: mukesh kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:16:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438863#M208948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T10:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to do multiple selections for a selection screen object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438864#M208949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kiran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then why dont you do as below&lt;/P&gt;&lt;P&gt;data: begin of itab&lt;/P&gt;&lt;P&gt;      matnr type matnr&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select matnr form mara&lt;/P&gt;&lt;P&gt;       into itab&lt;/P&gt;&lt;P&gt;       where matnr in (the select-option that you have defined for rmcbc_matnr) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab will contain all the matnrs that you have defined in your selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award Points for helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438864#M208949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T10:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to do multiple selections for a selection screen object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438865#M208950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt; please check this small piece of code.&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;Report&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;tables : mara.&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;       matnr type mara-matnr,&lt;/P&gt;&lt;P&gt;       end of itab.&lt;/P&gt;&lt;P&gt;select-options : MATNO for mara-matnr.&lt;/P&gt;&lt;P&gt;select matnr from mara&lt;/P&gt;&lt;P&gt;       into table itab&lt;/P&gt;&lt;P&gt;       where matnr in MATNO.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt; write : / itab-matnr.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If found helpful, please do reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:40:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-multiple-selections-for-a-selection-screen-object/m-p/1438865#M208950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T10:40:16Z</dc:date>
    </item>
  </channel>
</rss>

