<?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: select-options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033584#M417559</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you want to export that from one report and import that in another report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT  s_field to memory id 'MID'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the other report use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT s_field from memory id 'MID'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Mar 2007 14:16:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-16T14:16:38Z</dc:date>
    <item>
      <title>select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033583#M417558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;  I need to call select-options  parameters into another report.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 14:13:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033583#M417558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T14:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033584#M417559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you want to export that from one report and import that in another report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT  s_field to memory id 'MID'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in the other report use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT s_field from memory id 'MID'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 14:16:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033584#M417559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T14:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033585#M417560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you check the function module RS_REFRESH_FROM_SELECTOPTIONS ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 14:17:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033585#M417560</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-03-16T14:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033586#M417561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, Asha.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following will probebly solve your problem:&lt;/P&gt;&lt;P&gt;  DATA: rspar_tab TYPE TABLE OF rsparams,&lt;/P&gt;&lt;P&gt;             rspar_line LIKE LINE OF rspar_tab.&lt;/P&gt;&lt;P&gt;  rspar_line-sign = 'I'.&lt;/P&gt;&lt;P&gt;  rspar_line-option = 'EQ'.&lt;/P&gt;&lt;P&gt;  rspar_line-selname = 'SCHEMA'.&lt;/P&gt;&lt;P&gt;  rspar_line-kind = 'P'.&lt;/P&gt;&lt;P&gt;  rspar_line-low = 'ZM00'.&lt;/P&gt;&lt;P&gt;  APPEND rspar_line TO rspar_tab.&lt;/P&gt;&lt;P&gt;  SUBMIT rptime00 WITH SELECTION-TABLE rspar_tab&lt;/P&gt;&lt;P&gt;       EXPORTING LIST TO MEMORY AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Plz reward if it'll help you ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  R.R.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2007 08:38:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033586#M417561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-18T08:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033587#M417562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The way to pass parameter and select-options are&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ... USING SELECTION-SET vari&lt;/P&gt;&lt;P&gt;2. ... WITH p op f SIGN s&lt;/P&gt;&lt;P&gt;3. ... WITH p BETWEEN f1 AND f2 SIGN s&lt;/P&gt;&lt;P&gt;4. ... WITH p NOT BETWEEN f1 AND f2 SIGN s&lt;/P&gt;&lt;P&gt;5. ... WITH p IN sel&lt;/P&gt;&lt;P&gt;6. ... WITH SELECTION-TABLE seltab&lt;/P&gt;&lt;P&gt;7. ... WITH FREE SELECTIONS texpr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to choose the way depending on the data you have on your caller.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have the same select-options or parameters use option 2 for parameter and option 5 for select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more complex selection, you can use option 6, you fill the table SELTAB with the data needed : &lt;/P&gt;&lt;P&gt;for example :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: SELTAB     TYPE TABLE OF RSPARAMS, 

SELTAB_WA LIKE LINE OF SELTAB.

MOVE: 'LANGU' TO SELTAB_WA-SELNAME,
'S' TO SELTAB_WA-KIND, " SELECT-OPTION
'I' TO SELTAB_WA-SIGN,
'BT' TO SELTAB_WA-OPTION,
'D' TO SELTAB_WA-LOW,
'I' TO SELTAB_WA-HIGH.
APPEND SELTAB_WA TO SELTAB.

MOVE: 'E' TO SELTAB_WA-SIGN,
'EQ' TO SELTAB_WA-OPTION,
'F' TO SELTAB_WA-LOW,
SPACE TO SELTAB_WA-HIGH.
APPEND SELTAB_WA TO SELTAB.

CLEAR SELTAB_WA.
MOVE: 'ARBGB' TO SELTAB_WA-SELNAME,
'P' TO SELTAB_WA-KIND, " PARAMETER
'XX' TO SELTAB_WA-LOW.
APPEND SELTAB_WA TO SELTAB.


SUBMIT REPORT00
USING SELECTION-SET 'VARIANT1'
WITH ARBGB CP 'A*'
WITH SELECTION-TABLE SELTAB
AND RETURN. &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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2007 08:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033587#M417562</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-03-18T08:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033588#M417563</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;Use RS_REFRESH_FROM_SELECTOPTIONS  this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass  CURR_REPORT name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sasmita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Mar 2007 08:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2033588#M417563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-18T08:51:43Z</dc:date>
    </item>
  </channel>
</rss>

