<?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: Drill-down reporting in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773345#M333761</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;Do you want ALV report or normal list for drill-down..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Nov 2006 03:45:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-30T03:45:47Z</dc:date>
    <item>
      <title>Drill-down reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773344#M333760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is a drill-down reporting? What commands are usually used for developing a drill-down report? Many thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2006 03:35:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773344#M333760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-30T03:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Drill-down reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773345#M333761</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;Do you want ALV report or normal list for drill-down..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2006 03:45:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773345#M333761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-30T03:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Drill-down reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773346#M333762</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;Drill down reports can be helpful when user wants to navigate to a transaction. for example, say the list has the sales docuement number in it, user can click on the sales document number and fire VA03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report zrich_0002 no standard page heading.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: ivbak type table of vbak with header line.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data : cursor_field(30),&lt;/P&gt;&lt;P&gt;       field_value(30) .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;select-options: s_vbeln for ivbak-vbeln.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;select * into corresponding fields of table ivbak&lt;/P&gt;&lt;P&gt;    from vbak&lt;/P&gt;&lt;P&gt;        where vbeln in s_vbeln.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;        loop at ivbak.&lt;/P&gt;&lt;P&gt;        write:/ ivbak-vbeln.&lt;/P&gt;&lt;P&gt;        endloop.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;at line-selection.&lt;/P&gt;&lt;P&gt;  get cursor field cursor_field value field_value.&lt;/P&gt;&lt;P&gt;  case cursor_field.&lt;/P&gt;&lt;P&gt;    when 'IVBAK-VBELN'.&lt;/P&gt;&lt;P&gt;      set parameter id 'AUN' field field_value.&lt;/P&gt;&lt;P&gt;      call transaction 'VA03' and skip first screen..&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2006 03:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773346#M333762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-30T03:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Drill-down reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773347#M333763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;      In a normal report we will be using AT LINE SELECTION and HIDE command. HIDE is used to store the data displayed in a list and to retrive it back on a double click at perticular line on the list. Once the the double click event is generated we go to AT LINE SELECTION event block. where you will generate detail list using WRITE statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a report with ALV this can be done using screens and event handling of some of events of the CL_GUL_ALV_GRID class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2006 03:48:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773347#M333763</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2006-11-30T03:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: Drill-down reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773348#M333764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As the name suggests, the user can Interact with the report. We can have a drill down into the report data. For example, Column one of the report displays the material numbers, and the user feels that he needs some more specific data about the vendor for that material, he can HIDE that data under those material numbers. And when the user clicks the material number, another report (actually sub report/secondary list) which displays the vendor details will be displayed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can have a basic list (number starts from 0) and 20 secondary lists (1 to 21). Events associated with Interactive Reports are: 1. AT LINE-SELECTION 2. AT USER-COMMAND 3. AT PF&amp;lt;key&amp;gt; 4. TOP-OF-PAGE DURING LINE-SELECTION. HIDE statement holds the data to be displayed in the secondary list. sy-lisel : contains data of the selected line. sy-lsind : contains the level of report (from 0 to 21) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interactive Report Events: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION : This Event triggers when we double click a line on the list, when the event is triggered a new sublist is going to be generated. Under this event what ever the statements that are been return will be displayed on newly generated sublist. &lt;/P&gt;&lt;P&gt;AT PFn: For predefined function keys... &lt;/P&gt;&lt;P&gt;AT USER-COMMAND : It provides user functions keys. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Please Mark Useful Answers&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2006 03:49:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773348#M333764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-30T03:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Drill-down reporting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773349#M333765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;mostly used events are&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 PF&amp;lt;nn&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR GETTING THE DATA AFTER DBL CLICK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STATEMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CURSOR....&lt;/P&gt;&lt;P&gt;HIDE....&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;Shiba Dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Nov 2006 03:55:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-reporting/m-p/1773349#M333765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-30T03:55:34Z</dc:date>
    </item>
  </channel>
</rss>

