<?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: Selection Screen Processing.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812674#M657574</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok..thanks a lot for the answer..so is it that when we leave the current screen (for example output screen) and go back to the previous screen (input screen) the screen number is automatically assigned to the current screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Sep 2007 14:57:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-27T14:57:39Z</dc:date>
    <item>
      <title>Selection Screen Processing..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812668#M657568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Haii All..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done a program in which i have a selection-screen and a respective alv list, but the problem is that when i click f3 button on the alv list screen i should come back to the selection-screen and the previous input values shouldnt be gone so that i could continue with selection..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used leave to transaction sy-tcode, but the problem is that when i click the f3 button on the output screen, i come back to the selection-screen but the transaction is startting newly..and i am losing the previous values given in the selection-screen and when i use call selection-screen 1000 i am not able to come out of the selection-screen when i click f3 on the selection-screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 13:50:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812668#M657568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T13:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Processing..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812669#M657569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assign the function code you want to the back button in PF-status.&lt;/P&gt;&lt;P&gt;There is no need of calling the screen again. The values will not be lost when you do like this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 14:13:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812669#M657569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T14:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Processing..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812670#M657570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;     when 'BACK'.&lt;/P&gt;&lt;P&gt;      call selection-screen 1000.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     leave to transaction sy-tcode.      &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     when 'CANCEL'.&lt;/P&gt;&lt;P&gt;      leave program.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i click f3 it should come back again to the selection-screen, which is successfull for me and also the values are not lost..but the problem is that when i cilck f3 on the selection-screen m going to the output screen again rather than quit the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i used leave to transaction sy-tcode, here m getting out of program but the values are lost in the selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope its clear for u now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 14:27:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812670#M657570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T14:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Processing..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812671#M657571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

case sy-ucomm.
when 'BACK'.
  set screen 0.
  leave screen.

when 'CANCEL'.
  leave program.
endcase.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 14:30:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812671#M657571</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-09-27T14:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Processing..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812672#M657572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh My God..Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working now..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 14:44:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812672#M657572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T14:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Processing..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812673#M657573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep, what is happening here is that you are now saying that there is no "Next screen" in the sequence, and you are leaving the current screen, which will always end the current screen and show the previous.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 14:47:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812673#M657573</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-09-27T14:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen Processing..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812674#M657574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok..thanks a lot for the answer..so is it that when we leave the current screen (for example output screen) and go back to the previous screen (input screen) the screen number is automatically assigned to the current screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2007 14:57:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-processing/m-p/2812674#M657574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-27T14:57:39Z</dc:date>
    </item>
  </channel>
</rss>

