<?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: interactive reporting in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112419#M983238</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;u can code like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-lsind = n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-lsind = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 29 Jun 2008 12:39:14 GMT</pubDate>
    <dc:creator>GauthamV</dc:creator>
    <dc:date>2008-06-29T12:39:14Z</dc:date>
    <item>
      <title>interactive reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112416#M983235</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;In interactive reporting, suppose i go to N'th list from basic list(primary data) &amp;amp; i wanna come back directly to basic list. So how can i achieve this....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2008 05:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112416#M983235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-29T05:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: interactive reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112417#M983236</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;i think it is not possible&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;raghul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2008 05:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112417#M983236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-29T05:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: interactive reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112418#M983237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can set sy-lsind to 0 to get back to the basic list&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2008 07:12:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112418#M983237</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2008-06-29T07:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: interactive reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112419#M983238</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;u can code like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-lsind = n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-lsind = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2008 12:39:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112419#M983238</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-06-29T12:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: interactive reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112420#M983239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijaya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Yes, you can definitely achieve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be done as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;If you are in 'n'th list.

if sy-lsind = n.
   
   sy-lsind = 0.

endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &lt;STRONG&gt;sy-lsind&lt;/STRONG&gt; is the system field which represents the current list index which has been displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-lsind = 0  -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;   represents basic list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-lsind = 1-19 -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;  represents the secondary lists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, we can move through the lists using this system field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;Any queries, get back to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Chandrasekhar Gandla on Jun 29, 2008 6:24 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Chandrasekhar Gandla on Jun 29, 2008 6:26 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2008 16:24:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112420#M983239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-29T16:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: interactive reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112421#M983240</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;SY-LSIND = 0 is the basic list..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So when interaction is done sy-lsind will be 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you want to get back to the basic list directly from nth list..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before writing the contents on the nth list.. specify a simple abap statement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-LSIND = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will print in the next list of the basic list and if you press back from the list you will be into BASIC LIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure that your N value is not greater than 20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your information give N as 21 and see what happens...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will give you a runtime error....&lt;/P&gt;&lt;P&gt;So with this information you can come to a conclusion about SY-LSIND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this information would be helpful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Narin Nandivada.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Narin Nandivada on Jun 29, 2008 10:10 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2008 16:40:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112421#M983240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-29T16:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: interactive reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112422#M983241</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;     You can go back to the Basic list but not inbetween. You can achive it with the code mentioned earlier.&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;       Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jun 2008 19:28:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-reporting/m-p/4112422#M983241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-29T19:28:51Z</dc:date>
    </item>
  </channel>
</rss>

