<?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 Problem with navigation in Lists in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705038#M308896</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a list with hotspot capability.On hotspot click, it takes user to a ALV display. User enters some data on this ALV( it has checkboxes and a column with edit option). As soon as user hits save, data should be updated in custom table and calculations need to be re-done and prepare new list for user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no problem till now. But once i hit back on this new list display, it goes back to previous list display. I see that all these lists are stacked up. How do i clear this list stack. I tried setting sy-lsind = 0 after at line-selection event but that doesnot reset the list stack and it takes me back to previous list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Nov 2006 15:23:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-21T15:23:59Z</dc:date>
    <item>
      <title>Problem with navigation in Lists</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705038#M308896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a list with hotspot capability.On hotspot click, it takes user to a ALV display. User enters some data on this ALV( it has checkboxes and a column with edit option). As soon as user hits save, data should be updated in custom table and calculations need to be re-done and prepare new list for user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no problem till now. But once i hit back on this new list display, it goes back to previous list display. I see that all these lists are stacked up. How do i clear this list stack. I tried setting sy-lsind = 0 after at line-selection event but that doesnot reset the list stack and it takes me back to previous list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 15:23:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705038#M308896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T15:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with navigation in Lists</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705039#M308897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How are you calling the second list?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 15:26:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705039#M308897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T15:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with navigation in Lists</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705040#M308898</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;if your intension is just to come out of the program then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the user_command event&lt;/P&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-ucomm = 'BACK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;leave program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 15:27:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705040#M308898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T15:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with navigation in Lists</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705041#M308899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you try to decrement it.  Do this at line-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
sy-lsind = sy-lsind - 1.&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>Tue, 21 Nov 2006 15:28:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705041#M308899</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-11-21T15:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with navigation in Lists</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705042#M308900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the initial calculation subroutines again to calculate the data and re-display using write statements but before that i say leave to list-processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do want my program to go back to selection-screen not leave program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kalyan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 15:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705042#M308900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T15:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with navigation in Lists</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705043#M308901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using "LEAVE to SCREEN 0" in the final ALV's BACK button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note - Please mark all the helpful answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Ravikumar Allampallam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 15:41:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705043#M308901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T15:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with navigation in Lists</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705044#M308902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guyz...Its working now..I had Call screen statement to call the ALV..I processed updation internal table on SAVE on this screen and called leave to list-processing after exiting the screen. Then it works. On SAVE on ALV, i collect data into internal table and said LEAVE TO SCREEN 0. It returned to statement after call screen 0200. There i updated data into custom table and displayed list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 16:21:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705044#M308902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T16:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with navigation in Lists</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705045#M308903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please close the thread by marking "Problem Solved", against the answer that helped you the most.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Nov 2006 16:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-navigation-in-lists/m-p/1705045#M308903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-21T16:23:23Z</dc:date>
    </item>
  </channel>
</rss>

