<?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: capturing the selection screen input values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-the-selection-screen-input-values/m-p/8724874#M1672973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where you are using the call to the function module RS_REFRESH_FROM_SELECTOPTIONS, you must have calling the function module in routine which is passed to I_CALLBACK_USER_COMMAND, as this will be triggered after the output is displayed, the radio buttons and check boxes set and parameter values will be cleared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to call the function module after the START-OF-SELECTION it self and store the values in an internal table. Then use the internal table data in the routine I_CALLBACK_USER_COMMAND when user click on Selection button to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Call to function module and store the selection values in I_RSPARAMS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Logic to fetch the actual data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Display ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Use I_RSPARAMS data to display the selection values when user click on Selection button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Bala Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Apr 2012 02:09:30 GMT</pubDate>
    <dc:creator>former_member585060</dc:creator>
    <dc:date>2012-04-26T02:09:30Z</dc:date>
    <item>
      <title>capturing the selection screen input values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-the-selection-screen-input-values/m-p/8724872#M1672971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement is to capture the selection screen input values and display the same when the user clicks on the a custom button say 'Selection' on the ALV&amp;nbsp; report output . This functionality is to remind the user the input values keyed in for the current run. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The selection screen consists of parameters , select-options and check-boxes . I initially thought to make use of the FM RS_REFRESH_FROM_SELECTOTIONS&amp;nbsp; but realized that the check box values are not getting captured. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Request you guys to share your ideas/ inputs on how to achieve this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Glinsey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 01:42:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-the-selection-screen-input-values/m-p/8724872#M1672971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-04-26T01:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: capturing the selection screen input values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-the-selection-screen-input-values/m-p/8724873#M1672972</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;Can you try function module 'RS_COVERPAGE_SELECTIONS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also refer this &lt;A _jive_internal="true" href="https://answers.sap.com/thread/607282"&gt;http://scn.sap.com/thread/607282&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Lakshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 02:04:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-the-selection-screen-input-values/m-p/8724873#M1672972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-04-26T02:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: capturing the selection screen input values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-the-selection-screen-input-values/m-p/8724874#M1672973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where you are using the call to the function module RS_REFRESH_FROM_SELECTOPTIONS, you must have calling the function module in routine which is passed to I_CALLBACK_USER_COMMAND, as this will be triggered after the output is displayed, the radio buttons and check boxes set and parameter values will be cleared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to call the function module after the START-OF-SELECTION it self and store the values in an internal table. Then use the internal table data in the routine I_CALLBACK_USER_COMMAND when user click on Selection button to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Call to function module and store the selection values in I_RSPARAMS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Logic to fetch the actual data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Display ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* Use I_RSPARAMS data to display the selection values when user click on Selection button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Bala Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 02:09:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-the-selection-screen-input-values/m-p/8724874#M1672973</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2012-04-26T02:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: capturing the selection screen input values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-the-selection-screen-input-values/m-p/8724875#M1672974</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;Try passing GET_SELINFOS in alv layout as X. If this doesnt work , then please check my reply here &lt;A _jive_internal="true" href="https://answers.sap.com/thread/1860208"&gt;http://scn.sap.com/thread/1860208&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 05:47:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-the-selection-screen-input-values/m-p/8724875#M1672974</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2012-04-26T05:47:01Z</dc:date>
    </item>
  </channel>
</rss>

