<?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 SLECTION SCREEN NAVIGATION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/slection-screen-navigation/m-p/3996444#M954796</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;In my Report program, im using a selection screen(1000) and in that screen i have three radio buttons. When user selects the second radio button, it will take to a dynamic screen(1001) with a table control. If user selects 'BACK' it will return to the selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is now after coming back to the selection screen from screen 1001, if user selects the back button present in the selection screen, it is again taking to screen 1001 instead of leaving the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to resolve this? where to insert code? what to insert?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls revert experts....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 22 Jun 2008 09:37:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-22T09:37:15Z</dc:date>
    <item>
      <title>SLECTION SCREEN NAVIGATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slection-screen-navigation/m-p/3996444#M954796</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;In my Report program, im using a selection screen(1000) and in that screen i have three radio buttons. When user selects the second radio button, it will take to a dynamic screen(1001) with a table control. If user selects 'BACK' it will return to the selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is now after coming back to the selection screen from screen 1001, if user selects the back button present in the selection screen, it is again taking to screen 1001 instead of leaving the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to resolve this? where to insert code? what to insert?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls revert experts....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2008 09:37:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slection-screen-navigation/m-p/3996444#M954796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-22T09:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: SLECTION SCREEN NAVIGATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slection-screen-navigation/m-p/3996445#M954797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Under the ok_code case of screen 1001under back  just add leave to screen 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code for screen 1001 may look like this&lt;/P&gt;&lt;P&gt;if you want to move to screen 1000 from 1001. then code like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case ok_code.&lt;/P&gt;&lt;P&gt;When 'BACK'.&lt;/P&gt;&lt;P&gt;   Leave to screen 1000.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to move from selection screen to program. then code like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case ok_code.&lt;/P&gt;&lt;P&gt;when 'BACK'.&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;If you use leave program simply it returns to code.Instead you use leave to screen &amp;lt;screen number&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other way is &lt;/P&gt;&lt;P&gt;Leave Screen.&lt;/P&gt;&lt;P&gt;set screen 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the leave screen get back the control and set it with screen 1000.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2008 10:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slection-screen-navigation/m-p/3996445#M954797</guid>
      <dc:creator>Pramanan</dc:creator>
      <dc:date>2008-06-22T10:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: SLECTION SCREEN NAVIGATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slection-screen-navigation/m-p/3996446#M954798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in PAI of 1001 screen write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

case ok_code.

when 'BACK'.

clear ok_code.

set screen 00.

leave screen.

endcase.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Jun 2008 10:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slection-screen-navigation/m-p/3996446#M954798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-22T10:15:26Z</dc:date>
    </item>
  </channel>
</rss>

