What is drill down report

hi
experts can u help me for this

nothing difference for interactive and drill down
i am giving a clear example so that u can clearly understand
in this example you have a mainreport REPORT1. From REPORT1 you
can drill down to REPORT2 and from REPORT2 you can drill down
to REPORT3.
Tip:     Use hotspots to fire the AT LINE-SELECTION event.
     When the cursor is over the hotspot, it cganges to a hand,
     and you just have to click on the hostspot, instead of
     double clicking.
Note:     To see how to recognize if the user has selected a valid line, take a look at
How to check if a valid line is selected before drill down.
START-OF-SELECTION.
Read data for REPORT1 into itab1
END-OF-SELECTION.
  PERFORM write_report1.
TOP-OF-PAGE.
Write list header for REPORT1
AT USER-COMMAND.
Respond when the user presses a function key
  CASE sy-ucomm.               
   WHEN 'REPORT2'.                
     PERFORM write_reprt2.  
   WHEN 'REPORT3'.                
     PERFORM write_reprt3.  
  ENDCASE.
AT LINE-SELECTION.                                                 
Istead of pressing a button can perform the same actions
as i AT USER-COMMAND, by double clicking a line 
sy-lsind contains the list level.
Each time an interactive list event occurs, sy-lsind is
automatically increased by 1.
At REPORT1 sy-lsin = 0
  CASE sy-lsind.                                                   
    WHEN 1.                                                        
       PERFORM write_reprt2.  
    WHEN 2.                                                        
       PERFORM write_reprt3.  
  ENDCASE.
TOP-OF-PAGE.
Write report header for report1 ( sy-lsind = 0 )
TOP-OF-PAGE DURING LINE-SELECTION.                       
Write report header for sub reports
   CASE sy-lsind.                                         
     WHEN 1.                                              
    Write report header for REPORT2.
     WHEN 2.                                              
    Write report header for REPORT3.
    ENDCASE.
FORM WRITE_REPORT1.   
   LOOP at itab1.
    write report1.......
    Hide keyfields used for the select statement of
    report2
      HIDE: itab1_year, itab1_month.
   ENDLOOP.      
ENDFORM.
FORM WRITE_REPORT2.   
   SELECT * FROM databasetable2 into itab2
      WHERE year   = itab1_year AND
            month  = itab1_month.
   LOOP at itab2.
    write report2 .......
    Hide keyfields used for the select statement of
    report3
      HIDE: itab2_carrid.
   ENDLOOP.      
ENDFORM.
FORM WRITE_REPORT3.   
   SELECT * FROM databasetable3 into itab3
      WHERE carrid   = itab2_carrid.
   LOOP at itab3.
    write report3 .......
    No need to hide keyfields, as further drill down is not
    possible
   ENDLOOP.      
ENDFORM.
regards
Giridhar

Similar Messages

  • What is the difference in Interactive reports and Drill down reports?

    What is the difference in Interactive reports and Drill down reports? Are they same?

    Hi FRD ,
    Both are same .
    as far as i know there is no difference .
    bye .

  • Drill Down Report Performance issue?

    Hi,
    why drill down report is slower performance comparing with Action link/Navigation method? what could be the back end processing?
    Thanks
    MRD

    Need to know/see your config to tell why it is slow, I would suggest to follow best practices for the same.
    Drill down back end process something like:
    Report fetch next level columns and the all aggregated measures are grouped by next level this may take some time unless you go with aggregate table (is part of best practices)
    Appreciate if you mark as correct/helpful

  • Drill down report export to pdf

    Hi,
    I have a drill down report that i need to export to pdf.to get the drill down facility, I used 'HIDE' option for the groups.
    The drill down works in crystal.But when I export the crystal report to PDF, I could not see the hidden groups/Tabs, and my drill down doesn;t work.Please suggest me what to do while exporting a drill down report to PDF. Is it possible to export a drill down report to Excel?Can someone suggest the precaustions to be taken while exporting to different formats??
    Thank you,
    Tatyana.

    Drill-Down behavior in Crystal doesn't carry over to pdf exports.
    Using one of the 3rd-party Crystal Reports schedulers listed at http://www.kenhamady.com/bookmarks.html you can achieve similar behavior in pdf exports by automating the process of:
    1. exporting the main report to main pdf.
    2. Bursting a detailed report to individual pdf files
    3. using Crystal formulas embedded in the main report to generate live links from the exported main pdf to the individual detail pdf files.

  • Calendar with Drill Down Report

    Hello,
    Everybody.
    I am new to Application Express.
    Please any one tell me step by step how to make calendar with drill down report.
    Waiting for valuable reply.
    Thanks
    Rahul

    Not sure if this is what you wanted, but I have links on a calendar, and when you click them, it branches to another page with details about the event.
    To do this, create a calendar region. The SQL statement should have at least 2 columns: The date of the "event", and the text to display as a link. You should also choose a primary key that you want to pass to the drill down report when the user clicks. Something like this:
    select hiredate date_scheduled,
              ename display_column,
              empno
       from empIn the calendar attributes of that region, there is a place to designate which column is the date, and which should be displayed. Go down a little further and set the column link. Put the page you want to show the drilldown report on, and set any variables you need to.
    Hopefully that helped. Its pretty simple once you play around with it - start simple and then once you get the hang of it, make it more complex.

  • Drill Down Report using Crystal reports in eclipse and jspviewer

    Hi
    I want to understand how to write a drill down report since I have a requirement for my project, so I tried to run the sample drill down.rpt that is available with Crystal Reports 2008 Complete Reference book by George Peck.
    I can see the results correctly( i.e. can drill down) in the preview tab . Since I am working inside the eclipse, the way I run the reports is first  "Create report viewer JSP" by right clicking the report and have a url mapping to this jsp. I am running the reports from a hyperlink that maps to the url which will launch the jsp.
    the jsp is:-
    <%@ page contentType="text/html; charset=UTF-8" pageEncoding="ISO-8859-1" %><%@ taglib uri="/crystal-tags-reportviewer.tld" prefix="crviewer" %><crviewer:viewer reportSourceType="reportingComponent" viewerName="Drill Down-viewer" reportSourceVar="Drill Down" isOwnPage="true" allowDrillDown="true">
         <crviewer:report reportName="reports/Drill Down.rpt" />
    </crviewer:viewer>
    The one that was created by  "Create report viewer JSP" did not had "allowDrillDown" attribute at all .But I added it since it isnt working.
    So when I launch my web app and click on the link to run the report, I get the report results but only to the summary level. When I double click the summary level I get a 404 error page.
    Can please anyone suggest what is going on.
    Thanks
    poonam

    Ok. So, you added the report to the project. Now we have to add the CR assemblies to the project, add the viewer (if need be) and fire it off. Simplest code would be:
    Public Sub New()
            ' This call is required by the designer.
            InitializeComponent()
            ' Add any initialization after the InitializeComponent() call.
            CrystalReportViewer1.ReportSource = ("path to report")
        End Sub
    In this case you are using the viewer SDK to runt he report. The report will prompt for any logon parameters - but you can code these also. You can load the report via the engine as bellow. Again, the report will prompt. I prefer to use the engine as it is way more "extensible"...
    Public Sub New()
            ' This call is required by the designer.
            InitializeComponent()
            ' Add any initialization after the InitializeComponent() call.
            Dim crReportDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument()
            crReportDocument.Load("path to report")
            'Bind the report to the viewer
            CrystalReportViewer1.ReportSource = crReportDocument
        End Sub
    If you have a report added to the project (strongly typed) the code would be:
    CrystalReportViewer1.ReportSource = New myReport()
    For more details, I'd recommend looking at the sample app vbnet_win_simplepreviewreport.zip available from the following location:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    The developer help files are here:
    [SAP Crystal Reports .NET SDK Developer Guide|http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip]
    [SAP Crystal Reports .NET API Guide|http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_api_2010_en.zip]
    - Ludek

  • IS it possible to save drill down report in a html file?

    Hi all,
    My client is looking for a html file of a drill down report. Is it possible to save the report in html format with the drill down feature in it? Please help.
    Thanks,
    Karthick

    HI imansyah,
    Can you try doing what you want in first instance and then try posting your problem you face.
    Regards
    Rana

  • How to run drill down reports

    now i am using 9ids
    Before dev 2.1 was used.
    now before we had provision to run drill reports
    by putting a button on report
    and using
    srw.run_report(); procedure ,in button action trigger.
    now in 9i what i observed there is no object button in reports.
    button has changed to text item and there is no such action trigger.
    how to run the report
    as reports are run from form by using
    web.show_document
    pls suggest.

    Hi Rajendra,
    Again prasanth here, As u said, there is no more push button in 9i and 10g, ok. so u can drill down reports by using hyperliks which is only way(according to me). some may suggest to include JSP buttons. But u can simply place any text item like 'click here to run report' and in the property inspector(i.e.property pallette) set the hyper link property with the desination of your file. It may be a weblink or may be local file path.
    example
    hyperlink: www.oracle.com/..or
    c:\temp\test.rdf
    or u can write a trigger for that text item:
    1)right clik the text item
    2)goto pl/sql editor
    3)put the code
    a varchar(30);
    begin
    a:=srw_run_report('<the report link you want')
    return(a);
    but before doing this make sure that the item type of tha t text item property should be pl/sql(this can be set in property pallete of that text item)
    I think this help you,
    Thanks and Regards
    Prasanth A.S.

  • Set headers for drill-down reports.

    Hi!!!
    The problem we have by now is when printing a report, selected characteristis are showed in header as "multiple values" instead of showing the real values that user have choose.
    Does anybody knows how to set headers for drill-down reports in order to see selected characteristics?
    Thanks in advance...
    Adela Cambiasso.

    Sorry, me again...
    I have found yet they way to show in the header the report parameters, I mean, the selection criterias that user used when execute the report... I was able to show selected characteristics inside de report but not the selection criteria...
    Do you know what I have lost? or what to use for this?
    Thanks again.
    Adela.

  • How to create drill down reports

    pelase help me step to create drill down reports
    Find the manager and their employees Manager names are abc, def employees are abc manager employees are john, lilly.
    def employees are mark,syam
    How can i acheive below format.
    abc-manager
    John
    lilly
    DEF--manager
    Mark
    Syam
    Pelase help me
    Edited by: 893185 on Jun 7, 2012 3:36 PM

    >
    After 213 posts you should have a real handle instead of "893185". Please edit your profile with one as a matter of urgency.
    pelase help me step to create drill down reports
    Find the manager and their employees Manager names are abc, def employees are abc manager employees are john, lilly.
    def employees are mark,syam
    How can i acheive below format.
    abc-manager
    John
    lilly
    DEF--manager
    Mark
    SyamSounds like homework.
    How to Create a Drill Down Report
    Don't see the relevance of this format to "drill down reports". What is drilling down to where?

  • Multi-Use Drill Down Reports?

    Hi,
    I'm just starting out with reporting in SSRS so this may be a silly question but I'm struggling to find a way to do what I want :)
    I have a large graphical report with several top 10 reports on different a cube. (eg. top 10 number of events, top ten numbers of computers affected) 
    I want drill down reports for both the Event Name and Computer Name, also to be able to click on the header of the report and get a complete unrestricted report. I have created a drill down report that has all the data and if I choose one item (say computer
    name) I can drop down to the drill down and filter the table in that with the computer name and return any results for that computer. I cant figure out how to have a secondary link that passes a wildcard to returns all results. I'd also like to have the ability
    to send an event name to the same drill down and a wildcard for the computer name. However I cant figure out how to get the filter on the table to accept any wildcards. 
    I dont want to have to create multiple reports for each of the different drilldowns, is this possible? (Easy to understand answers for a newbie if possible :) )

    Hi Chris_C2000,
    If I understand correctly, you have configure “Go to report” action in your report. It is Drillthrough in SSRS. You want to pass a value link to the corresponding report. We can add parameters in the drillthrough report, then pass parameters values to the
    report.
    I have create a simple report in my test environment. Suppose we have the same dataset (DataSet1) in main report and subreport with two fields: CalendarYear, SalesAmount. Please refer to it.
    Subreport:
    Add a table in the report body, fill with CalendarYear, SalesAmount fields.
    Add another dataset (DataSet2) with CalenderYear field.
    Add a parameter (CalenderYear) get Available Values from DataSet2 CalenderYear field.
    Add filter in the DataSet1, with values below:
    Expression: [CalenderYear]
    Operator: =
    Value: [@CalenderYear]
    Main report:
    Add a chart in the report, fill SalesAmount in the Values dialog box, CalenderYear in the Category Groups dialog box.
    Right click the bar in the chart, click Series Properties.
    Click Action in the left pane. Select “Go to report” option.
    Select the subreport below “Specify a report” prompt.
    Click Add icon below, and fill with following values:
    Name: CalenderYear                 Value: [CalenderYear]
    Then, when we preview the report, we can click the specific bar link to the subreport get the corresponding data.
    Reference:
    http://technet.microsoft.com/en-us/library/aa337477(v=sql.105).aspx
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • NEED DRILL DOWN REPORTS IN APPS

    Hi
    I need to generate drill down reports in oracle apps.
    Is drill down reports work in Apps?
    If it is possible please reply me, please send any document reference on drill down reports
    Thanks & Regards
    Adina

    Hi,
    What do you mean by drill down reports in Oracle Apps. Do you mean using Reports Developer. It cant be done, that is why the need of Discoverer reports. Discoverer reports can be run ( viewer ) from applications but generally associated with a separate responsibility. You can drill down from there..

  • Drill Down Reports and Drag & Drop capability Tool for Developer2000

    I am currently doing my development in Developer2000 rel. 2.0.
    I have seen many tools for VB which provide the facility for Drill Down reporting and drag & drop option in reporting, but unable to find any tool for developer2000. I wonder if anyone can guide me about any tool for developer2000 which can provide these facilities in reporting and forms.......
    Qamar Bilal

    you can use the mouse triggers to do drag and drop.
    you have mouse-move and mouse-enter etc...
    what do you mean by drill down?
    you can do drill down reporting in reports by using srw.run_report built in and you can also use oracle discoverer.

  • Drill Down reports in Project System

    Hi Gurus,
    I executed transaction code S_ALR_87013534, it works fine. When i exit from this report using back arrow button it goes to SAP main menu, but i want to be there in the transaction code like incase of other reports.
    It happens to all project system drill down reports.
    Can i know the reason and what should i do to overcome this.
    Will assign good points.
    Thanks
    Prashanth

    Hi Prashant,
    You can try T code CJE0 - report 12KST1G . Here at least you remain in the screen of CJE0 instead of going to SAP menu after exit from the report. But this also doesn't solve your problem.
    I have checked transaction code S_ALR_87013534. It is giving same problem. As suggested by Shrikant , you can raise OSS note to SAP.
    Regards,
    Amit More

  • Drill down Reports created In SPRO to execute in SAP Easy Access

    Hi
    In customizing which is transaction spro, at the following location Financial Accounting->General Ledger Accounting->Information System->Drilldown Reports you can create drill down reports.
    What I would like to know is where can the user execute them from in SAP Easy Access?? There is transaction FSIB (Background Processing) which allows you to execute it in SAP Easy Acces but it wants to print the report and not display it on the screen. Is there a way to display on the screen in SAP Easy Access??
    Thanks in advance

    Hi,
    To run a report either in foreground or background you need to know the report name. To run the report in foreground goto SE38 and give the report name and execute it. If you see the status message " This report is not a type P" then goto SE93 and findout the transaction with the help of report name description. so you can run the transaction. To add the transaction to your role technical consultant will take care.
    Bye,
    Jyothi.

Maybe you are looking for