<?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 report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1759669#M328931</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Classical Report ---&amp;gt; It is a simple report which displays data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interactive report ---&amp;gt; As the name suggests , it can create 21 interactive lists, after we display the classical list , from there u can navigate to other list and so on&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Dec 2006 15:27:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-08T15:27:41Z</dc:date>
    <item>
      <title>interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1759667#M328929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       What is the difference bet classical n interactive report?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 15:22:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1759667#M328929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-08T15:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1759668#M328930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same thing, but with interactive report,  you can double click and drill down for more information,  call a transaction, etc.  You can use hotspots in your list display .&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>Fri, 08 Dec 2006 15:24:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1759668#M328930</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-12-08T15:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1759669#M328931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Classical Report ---&amp;gt; It is a simple report which displays data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interactive report ---&amp;gt; As the name suggests , it can create 21 interactive lists, after we display the classical list , from there u can navigate to other list and so on&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 15:27:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1759669#M328931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-08T15:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1759670#M328932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sudhir,&lt;/P&gt;&lt;P&gt;Interactive reporting allows for the user to interact with the list. For example, the use can double click on a line of the list (which will trigger the event AT LINE-SELECTION); he can select a list line and click on a pushbutton on the Application toolbar (which will be handled in the AT USER-COMMAND event) or he can click on one of the function keys (which will be handled oin the AT PFnn event).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In classical reporting, there's no user interaction on the list. The program is executed and a list is displayed. The user can just view the list and probably print it. And the events (START-OF-SELECTION, END-OF-SELECTION, TOP-OF-PAGE) are not controlled by the user in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Classical Reports can have these events, in the given order : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization&lt;/P&gt;&lt;P&gt;at selection-screen&lt;/P&gt;&lt;P&gt;start-of-selection&lt;/P&gt;&lt;P&gt;end-of-selection&lt;/P&gt;&lt;P&gt;top-of-page&lt;/P&gt;&lt;P&gt;end-of-page&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition o the above, the following events are possible in case of Interactive Reports - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at line-selection&lt;/P&gt;&lt;P&gt;at user-command&lt;/P&gt;&lt;P&gt;at PFnn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Dec 2006 15:30:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1759670#M328932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-08T15:30:25Z</dc:date>
    </item>
  </channel>
</rss>

