<?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: Back to Selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584001#M1081295</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jayavardhini&lt;/P&gt;&lt;P&gt;Before this statement&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;call selection-screen 1000.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;just add&lt;/P&gt;&lt;P&gt;clear the selection parameters what ever present in the screen&lt;/P&gt;&lt;P&gt;say for example: &lt;/P&gt;&lt;P&gt;clear: P_kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all the best&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Sep 2008 13:04:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-29T13:04:42Z</dc:date>
    <item>
      <title>Back to Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4583996#M1081290</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;I developed an ALV report, once the got the output , My intension is I should go back to the Selection-screen and the selection criteria has to be cleared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean a blank selection-screen..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so that I can enter new criteria with out deleting my previous entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vardhini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:51:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4583996#M1081290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T12:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Back to Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4583997#M1081291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use below code in your PAI -&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_1001 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE sy-ucomm.    "user command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;      LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;  "-&amp;gt;&amp;gt; write logic to clear select option value here.&lt;/P&gt;&lt;P&gt;  "-&amp;gt;&amp;gt; e.g. CLEAR: s_werks,s_bukrs.&lt;/P&gt;&lt;P&gt;  "-&amp;gt;&amp;gt; REFRESH: s_werks,s_bukrs.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    WHEN 'EXIT' OR 'CANCEL'.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " user_command_1001  INPUT&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;Aparna Gaikwad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:54:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4583997#M1081291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T12:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Back to Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4583998#M1081292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt; when 'BACK'.&lt;/P&gt;&lt;P&gt;  leave screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Clearing the Values of Selection Screen.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;clear : s_matnr ,&lt;/P&gt;&lt;P&gt;          p_ersda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;deepthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:56:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4583998#M1081292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T12:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Back to Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4583999#M1081293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can clear all the selection screen fields just after the ALV Call. Once system finished the ALV processing, it will process the clearing of the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Naimesh Patel on Sep 29, 2008 8:07 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 12:56:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4583999#M1081293</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-09-29T12:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Back to Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584000#M1081294</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 it at selection-screen output event.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Selection-Screen Output.&lt;/P&gt;&lt;P&gt;clear &amp;lt;fields&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Bhaskar Chikine on Sep 29, 2008 6:30 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 13:00:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584000#M1081294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T13:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Back to Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584001#M1081295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jayavardhini&lt;/P&gt;&lt;P&gt;Before this statement&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;call selection-screen 1000.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;just add&lt;/P&gt;&lt;P&gt;clear the selection parameters what ever present in the screen&lt;/P&gt;&lt;P&gt;say for example: &lt;/P&gt;&lt;P&gt;clear: P_kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all the best&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 13:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584001#M1081295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T13:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Back to Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584002#M1081296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Janagar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your answer helped me .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vardhini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 13:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584002#M1081296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T13:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Back to Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584003#M1081297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Janagar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution helped me in clearing my Select-options but not my parameters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Clear statment wont work for parameters as they are not like Internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u help me in this regard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vardhini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 14:05:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584003#M1081297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T14:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: Back to Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584004#M1081298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this.. add this code at the end of the report .. i.e. at the end of END-OF-SELECTION event .. all your selection input will be cleared&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FIELD-SYMBOLS : &amp;lt;fs&amp;gt;  .
ASSIGN ('(RSDBRUNT)MEMKEY-INT_MODE') TO &amp;lt;fs&amp;gt; .
IF sy-subrc = 0 .
   &amp;lt;FS&amp;gt; = '01' .
ENDIF. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 14:09:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584004#M1081298</guid>
      <dc:creator>Pawan_Kesari</dc:creator>
      <dc:date>2008-09-29T14:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Back to Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584005#M1081299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its working Perfect Pavan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a Ton&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Sep 2008 14:46:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/back-to-selection-screen/m-p/4584005#M1081299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-29T14:46:47Z</dc:date>
    </item>
  </channel>
</rss>

