<?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 Ineractive report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ineractive-report/m-p/1523751#M240206</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; how to create an interactive report which displays the month wise sales journal based on sales organization, material number and billing date..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx and regards&lt;/P&gt;&lt;P&gt;kalpana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Aug 2006 01:21:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-29T01:21:28Z</dc:date>
    <item>
      <title>Ineractive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ineractive-report/m-p/1523751#M240206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; how to create an interactive report which displays the month wise sales journal based on sales organization, material number and billing date..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx and regards&lt;/P&gt;&lt;P&gt;kalpana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 01:21:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ineractive-report/m-p/1523751#M240206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T01:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Ineractive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ineractive-report/m-p/1523752#M240207</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;An Interactive report is one which an user can interact with, ideally on clicking on a primary list the user would be navigated to a secondary list. Similarly you can navigate till 20 secondary lists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls find below a simple example of interactive list from SAP Library :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT demo_list_interactive_1.

START-OF-SELECTION.
  WRITE: 'Basic List, SY-LSIND =', sy-lsind.

AT LINE-SELECTION.
  WRITE: 'Secondary List, SY-LSIND =', sy-lsind.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Copy and paste this code on your abap editor, execute the same. You`ll understand the functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apart from this you can also creative interactive reports using ALV GRID / ALV LIST...for which you would have to use Events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this info. is helpful. If you`ve have access to SAP Library, refer to document no. 980.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 04:18:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ineractive-report/m-p/1523752#M240207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T04:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: Ineractive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ineractive-report/m-p/1523753#M240208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Hope you have already started working on this.&lt;/P&gt;&lt;P&gt;1. Get all the values from VBAK, VBAP, VBRK, VBEP.&lt;/P&gt;&lt;P&gt;2. Prepare the data as per the required format(GET the required report layout from the Functional team/users).&lt;/P&gt;&lt;P&gt;3. Summarize the report at top-level and display. Say Show only the Sales Org, Material &amp;amp; month.&lt;/P&gt;&lt;P&gt;4. When user clicks on the SalesOrg, goto the drill down report and show the divisions under that Sales org.&lt;/P&gt;&lt;P&gt;5. When user clicks on division goto next level of report and show all the customer and relevant details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use HIDE to get the value of the field. Also use GET CURSOR for relevant details. You must be aware of using event AT LINE SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;Reward if helpful&lt;/STRONG&gt;*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 04:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ineractive-report/m-p/1523753#M240208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T04:19:45Z</dc:date>
    </item>
  </channel>
</rss>

