<?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 capture the Selection Screen Input fields Values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790862#M1679169</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 I know what type of report your using to display ( ALV or Module pool or Classical?? )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Jun 2012 06:32:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-06-22T06:32:35Z</dc:date>
    <item>
      <title>How to capture the Selection Screen Input fields Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790859#M1679166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how to capture the selection screen input field values after executing the report and if user comes back it has to display the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have selection option with manual F4help code is written in which I have given multiple selections is equal to X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assume I have following fields in the select-option along with the checkboxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Apple&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ball&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Cricket&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;If user selects Apple and cricket and executes the report and comesback and checks the F4help select-option it will display unchecked list of field values.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ﻿&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise how can I record this selection and if user comes back to screen after execution he should be able to see both Apple and cricket are selected in the F4help of the select option.&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;Sunil Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2012 06:20:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790859#M1679166</guid>
      <dc:creator>sunilkumar_krishnamurthy2</dc:creator>
      <dc:date>2012-06-22T06:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture the Selection Screen Input fields Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790860#M1679167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you handling a "BACK" button event in your program. Looks like the variables of checkbox are being cleared in the program. Please check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2012 06:26:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790860#M1679167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-22T06:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture the Selection Screen Input fields Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790861#M1679168</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;To retrieve the values, do it at AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;LOOP AT Screen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ......&amp;nbsp; &amp;lt;--- capture your fields values here&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT TO MEMORY ...&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;---- to store values to memory area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next thing, in INITIALIZATION:&lt;/P&gt;&lt;P&gt;IMPORT MEMORY ...&amp;nbsp; &amp;lt;---- Get your last saved values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then set the values back to selection screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2012 06:32:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790861#M1679168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-22T06:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture the Selection Screen Input fields Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790862#M1679169</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 I know what type of report your using to display ( ALV or Module pool or Classical?? )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2012 06:32:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790862#M1679169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-06-22T06:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to capture the Selection Screen Input fields Values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790863#M1679170</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;I am using back button and it is an ALV report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sunil Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2012 06:42:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-capture-the-selection-screen-input-fields-values/m-p/8790863#M1679170</guid>
      <dc:creator>sunilkumar_krishnamurthy2</dc:creator>
      <dc:date>2012-06-22T06:42:04Z</dc:date>
    </item>
  </channel>
</rss>

