<?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: ALV OOPs back button on Interactive report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861822#M1475870</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In debugging while clicking on back button for first time, I found that after 'Leave to screen 0' statement debugger goes to double click event of screen 100 and start processing from a statment written immediately after 'Call screen 200' statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, that's right. The processing will be continued from next stamtement after CALL SCREEN 200. But after the PAI will finish it shoud go to NEXT SCREEN which is 0. &lt;/P&gt;&lt;P&gt;If that doens't work you can try leaving the screen 100 explicitly as well.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
   CALL SCREEN 200.  
   LEAVE TO SCREEN 0.  "the processing will terminate screen 100 as well
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Try it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Apr 2010 09:03:44 GMT</pubDate>
    <dc:creator>MarcinPciak</dc:creator>
    <dc:date>2010-04-23T09:03:44Z</dc:date>
    <item>
      <title>ALV OOPs back button on Interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861819#M1475867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,,&lt;/P&gt;&lt;P&gt;I am working on an Interactive report(Using OOPS). On selection screen selection ALV report is genrated on screen 100(Call screen 100). On double click event at any row a new alv is shown on another screen 200(Call screen 200). &lt;/P&gt;&lt;P&gt;From last screen when I click 'BACK' it comes back to screen 100 on single click. But its not coming back to selection screen on single click of 'BACK' button.&lt;/P&gt;&lt;P&gt;I have to click it twice to go back to selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 07:38:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861819#M1475867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T07:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: ALV OOPs back button on Interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861820#M1475868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In screen 100 atrributes set &lt;EM&gt;NEXT SCREEN&lt;/EM&gt; to 0.&lt;/P&gt;&lt;P&gt;When you go back from screen 200 and be back in 100, the next screen to show will be 0, which means all the screen processing will terminate and you will be in selection screen itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 07:44:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861820#M1475868</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-04-23T07:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: ALV OOPs back button on Interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861821#M1475869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried as you suggested but it isn't working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Logic used:   In screen 100 -&amp;gt; Double click event-&amp;gt;Call screen 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In debugging while clicking on back button for first time, I found that after 'Leave to screen 0' statement debugger goes to double click event of screen 100 and start processing from a statment written immediately after 'Call screen 200' statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 08:58:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861821#M1475869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T08:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: ALV OOPs back button on Interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861822#M1475870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In debugging while clicking on back button for first time, I found that after 'Leave to screen 0' statement debugger goes to double click event of screen 100 and start processing from a statment written immediately after 'Call screen 200' statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, that's right. The processing will be continued from next stamtement after CALL SCREEN 200. But after the PAI will finish it shoud go to NEXT SCREEN which is 0. &lt;/P&gt;&lt;P&gt;If that doens't work you can try leaving the screen 100 explicitly as well.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
   CALL SCREEN 200.  
   LEAVE TO SCREEN 0.  "the processing will terminate screen 100 as well
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Try it out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 09:03:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861822#M1475870</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-04-23T09:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: ALV OOPs back button on Interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861823#M1475871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It worked.. Thanks.. I am going to introduce one more layer of alv in this report. I will let you guys know..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 14:19:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-oops-back-button-on-interactive-report/m-p/6861823#M1475871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-23T14:19:34Z</dc:date>
    </item>
  </channel>
</rss>

