Chart drilldown to chart

Hi everyone.
I am developing some kind of SLA reporting system using the HTMLDB but now I am facing a problem;
What I want to do, is to drilldown from one chart to another chart (so not to a report as in the how-to)
Has anyone experience with this? Any help would be appreciated.
Thanks,
Steven Wallraf
Belgium

Check the sample application

Similar Messages

  • Drilldown bar and pie charts

    I am looking for charts with drilldown feature. I need to drilldown to another chart or a report.
    can you please point me to any articles doing this from scratch? I looked the sample packaged application with charts but it does not have drilldown links,.

    For all charts, the first column "link" is what you're interested in
    The syntax for the select statement of a chart is:
    SELECT link, label, value FROM   ...
    Where:
    link is a URL. This URL will be called if the user clicks on the that point on the resulting chart.
    http://docs.oracle.com/cd/E11882_01/appdev.112/e11945/bar_chart.htm#BEHGDBBE
    unfortunately no examples here, but check inline help for expected SQL in charts. Just define a URL for your drill down destination.

  • Drilldown report FGI0 Account Number and compounding Chart of Accounts

    Dear all,
    I created a drilldown report in FGI0 for FAGLFLEXS (Reporting for Table FAGLFLEXT). I am showing the field Account Number. However the field display is [Chart of accounts][Account number] in the corresponding column, but I want to display only the Account number.
    If I remove the compounding field RKTPL from table TKAFD, then the program cannot find the Account Number Text.
    Is there a way to show only the Account Number, without the Chart of Accounts in its 4 first fields, and also show the account text?
    Thank you in advance!

    Dear All
    I need to change the GL accouts in Drilldown report FGI0. In FGI2 tried but i couldn't able to find the exact location to chage can you please help me. On how can change means regroup the GL account and need to add the new GL account in Drilldown report..
    Regards
    Chandrasekhar G

  • DrillDown Flash Chart

    After having success building simple charts I've been trying lately to implement a more complex chart. It's a DrillDown Chart with a click event that changes the displayed data based on the column that was clicked. Here is the working Adobe example: http://livedocs.adobe.com/flex/3/html/help.html?content=charts_eventsandeffects_11.html (It's the bottom chart).
    The data in the example is hard coded and I wasn't able to find a way to make it bindable. I think I should create an ArrayCollection with a DrillDown structure that will be dynamic, that I can populate during the run of the Web Dynpro program. The other option might be to use the click event to somehow change the data based on the specific column that was clicked.
    If anyone has implemented something like this, or has any thoughts/ideas of what should be the correct approach, I would love to hear, even if it's very general. Reading-suggestions that are relevant will be appreciated as well.
    Thanks,
    Yoni,
    Edited by: Uzan Yoni on Jun 3, 2010 8:33 AM
    Edited by: Uzan Yoni on Jun 3, 2010 8:34 AM

    Hello,
    You can use itemClick event of the Column Chart. In the event handler for that event, you will receive an event object of ChartItemEvent. Here
    event.hitData.item will correspond to the item which is clicked. And you can access any of the attributes/properties of item using that.
    Here is a sample code:
    //data provider for chart
         [Bindable]
         public var dataSet:ArrayCollection = new ArrayCollection([
            {Month:"Jan", Expenses:1500},
            {Month:"Feb", Expenses:200},
            {Month:"Mar", Expenses:500}
         public function myHandler(e:ChartItemEvent):void {
            Alert.show("Chart data was clicked"+ e.hitData.item.Month);
    Hope this helps!
    Regards,
    Srilatha

  • Grouping drilldown table and chart

    Hi,
    I want to group drilldown table and chart on same webi  report.
    For example table has many records and chart must be shown below table no matter how many records does it have.
    I cant estimate the data record number every run so when table rec number is bigger than 40 chart looks under table.I have urgently correct this display issue.
    Is there any function about this?
    Any help will highly be appreciated.
    Thanks

    Hi Nil,
    Try these steps.
    1. Click on Preferences in InfoView.
    2. Click on Web Intelligence
    3. Scroll to Drill options
    4. Check u201CSynchronize drill on report blocksu201D
    As you drill to the next hierarchy on the table, the chart will also drill down along with the table.
    Hope this helps.

  • Drilldown on Chart

    My report has detailed transaction data which is grouped and summarized by Month in GF1. I have selected HIde (Drill Down OK) for the details section. The user can drill down on any of the summary monthly data to see the details. All this works correctly.
    I have also created an accompanying chart which shows the summary data by month. If I understand correctly, the chart also should  be capable of drilldown. But no magnifying glass appears when I wave the cursor over the chart elements. Is there something I need to do to "connect" the chart to the drilldown capability?
    Thanks,
    Art

    Sastry,
    Thanks for your response. I don't understand your suggestion. Perhaps I have not been clear about my objective:
    My chart is located in the Report Header. The only content in the Details section is the actual transaction values for different job numbers. The Details section has been set at "Hide (Drill Down OK)". Summary monthly sales are in GF1. The user can doubleclick anything in GF1 and the Details for that month pops up in a separate tab - exactly as it should be. I also want the user to be able to doubleclick on the chart to get the same detailed drilldown in a separate tab.
    Can you expand on your answer a bit?
    Thanks for your help.
    Art

  • DrillDown Chart

    Hey everybody.
    I know this question will sound very basic to most of you, and this is because Flex is not my main programming language.
    I'm trying to create a Chart with Data DrillDown. I'm using an Adobe example to learn the subject. Here is the working flex example:
    <?xml version="1.0"?>
    <!-- charts/SimpleDrillDown.mxml -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" height="100%" width="100%" creationComplete="initApp()">
        <mx:Script><![CDATA[
            import mx.collections.ArrayCollection;
            [Bindable]
            public var dpac:ArrayCollection = new ArrayCollection ([
                { date:"01/01/2006", cash:50000,
                  stocks:198192, retirement:130101,
                  home:750000, other:19148 },
                { date:"02/01/2006", cash:50000,
                  stocks:210309, retirement:143707,
                  home:760000, other:19493 },
                { date:"03/01/2006", cash:50000,
                  stocks:238992, retirement:169529,
                  home:770000, other:19933 },
                { date:"04/01/2006", cash:50000,
                  stocks:292269, retirement:242596,
                  home:770000, other:21445 }]);
            public var initSeriesArray:Array = new Array();
            public var level:Number = 1;
            public var newSeries:Array;
            private function initApp():void {
                // Get initial series Array -- to be reloaded when it returns
                // from a drill down.
                initSeriesArray = chart.series;            
            private function zoomIntoSeries(e:Event):void {
                newSeries = new Array();
                if (level == 1) {
                    newSeries.push(e.currentTarget);  
                    level = 2;
                } else {
                    newSeries = initSeriesArray;
                    p1.title = "Net Worth";
                    level = 1;
                chart.series = newSeries;           
        ]]></mx:Script>
        <mx:Panel id="p1" title="Net Worth">
            <mx:ColumnChart id="chart"
                dataProvider="{dpac}"
                type="stacked"
                showDataTips="true"
            >
                <mx:series>
                    <mx:ColumnSeries id="s1"
                        displayName="Cash"
                        yField="cash"
                        xField="date"
                        click="zoomIntoSeries(event)"
                    />
                    <mx:ColumnSeries id="s2"
                        displayName="Stocks"
                        yField="stocks" 
                        xField="date" 
                        click="zoomIntoSeries(event)"
                    />
                    <mx:ColumnSeries id="s3"
                        displayName="Retirement"
                        yField="retirement"
                        xField="date"
                        click="zoomIntoSeries(event)"
                    />
                    <mx:ColumnSeries id="s4"
                        displayName="Home"
                        yField="home"
                        xField="date"
                        click="zoomIntoSeries(event)"
                    />
                    <mx:ColumnSeries id="s5"
                        displayName="Other"
                        yField="other"
                        xField="date"
                        click="zoomIntoSeries(event)"
                    />
                </mx:series>           
                <mx:horizontalAxis >
                    <mx:DateTimeAxis title="Date" dataUnits="months"/>
                </mx:horizontalAxis>   
            </mx:ColumnChart>
            <mx:Legend dataProvider="{chart}"/>
        </mx:Panel>
    </mx:Application>
    In this example the data in the array-collection is hard-coded. My question is: How can I populate the chart with data by using variables? In my standard charts I have a Yfeild and Xfeild linked to variables, and the graph is generating the data that lies inside those variables. How can I do the same here? I did some trial and error for awhile, Didn't work so well.
    If I'm not clear enough please ask questions. my flex knowledge is very scarce.

    Thanks for the response. I made the modification however still had the issue.  I was linking to a general report with a structure such as:
    select col1, col2 from tab
    when I added the "where" clause that resolved the issue.
    Question:
    My app still has a need for the general report on "tab" (ie select col1, col2 from tab).  Is the Apex practice in this case to create 2 pages - one general and one for the drill down report?
    Is there a way to have one report/page and have the "where" clause not used if entering via a drill down chart?  Hope that make sense...

  • Firefox chart drilldown gives page-in-page

    Hi all,
    Bizarre problem with drilldown from an SVG pie chart in Firefox:
    I have a page (P256) which contains a report and an SVG pie chart, both of which display sales data summarized by team. The user can drill down to page 257 (showing details for the given team) by clicking either a link column in the report or a slice of the pie chart.
    In MSIE this works fine. In Firefox, clicking the report link works fine (we go to page 257), but clicking a pie slice displays page 257 as a scrollable area within page 256's pie chart region.
    As shown on the browser's status bar, the report and pie chart links generate identical URLs.
    Hmmm. Any ideas?
    I'm running 10g db and AS, APEX 2.0, MSIE 6.0, FF 1.5, and my app doesn't use iframes.
    Many thanks as ever,
    John d

    This worked for my chart:
    SELECT 'f?p=&APP_ID.:3:&SESSION." target="_top' link
    , label
    , value
    FROM...

  • Changing Drilldown on Stacked Coulmn Charts with auto-selected combo boxes

    Hello Experts,
    i have a big issue and no idea how to solve it. Hopefully you can help me. I would really appreciate that so thanks for any answer in advance.
    Here my problem:
    I have two stacked column charts and two combo boxes. Each combo box shows filtered row data in one chart. That works fine.
    Now i want to implement drilldown which will change the data of the other chart by clicking. Example: Chart 1 represents the working hours of different staffs, chart 2 represents working hour in different projects. Now, I have a staff A who works in projects A and B. Projects A and B are now the rows in chart 1. By clicking on row project A the second chart should show me the data of project A. In project A there are several members stacked in the chart showing the whole working hours of the project. Now i want to change the perspective by clicking on a row in chart 2 so the data of employee XY is showing up and so on.
    I realized it by drilldowns. however there is no data but the row's name insertion. this cell is my trigger cell for the combo boxes so it will choose the right person/project automatically if i click on a row. In both charts is "No Selection (-1)" activated, in combo boxes is "When Value changes" picked.
    At the beginning i worked fine. my dashboard had displayed the data i wanted by clicking on the rows. but at a specific point my dashboard crashes.
    I figured out that if i drill down once the selection will not disappear. so on two drill downs there is an automatically selection of a specific row and at the end my dashboard crashes and no data is displayed.
    To solve my problem i need something to deselect my selection automatically or a reset for only one graph. i have worked with push buttons but its like the reset button because the row's name disappear too.
    Whether Xcelsius components or excel formulas, i have no idea how to solve my problem.
    Im grateful for every hint.
    Kind regards
    Lars Schmidt

    Well I need to get this thing done by tomorrow. The
    end goal is a program that will take data from text
    boxes, wrap predefined XML tags around them, and
    export them to a XML file. He's also sent me another
    *.java file which creates a XML file, but that also
    doesn't workThat's nice.
    Sun's basic Java tutorial
    Sun's New To Java Center. Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    http://javaalmanac.com . A couple dozen code examples that supplement The Java Developers Almanac.
    jGuru. A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch. To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    Bruce Eckel's Thinking in Java (Available online.)
    Joshua Bloch's Effective Java
    Bert Bates and Kathy Sierra's Head First Java.
    James Gosling's The Java Programming Language. Gosling is
    the creator of Java. It doesn't get much more authoratative than this.

  • WAD Column Chart can you "turn off" drilldown

    Hi Experts !
    I have made up a web template containing a Navigation Pane, some DropDown Items, an Analysis Grid and a Chart.
    I inserted two Data Providers, one for the grid (Diplaying 7 RKFs and a drilldown on 1 Characteristic) and a second DP for the Chart, to only display 3 RKF and no drilldown (as a basic overwiew on the more detailed values in the grid.
    I added the Navigation Pane in order to allow even further detail on the Analysis and the DropDown Items for filtering some Characteristics, so both are set to be based on the first DP.
    Behaviour of the Chart should be to filter accordingly to filterinig of the Grid / Dropdown values, whereas layout of 3 summary columns should remain as is.
    As Drag&Drop on Table and Navigation Pane allows drill down and filtering of the grid, I have to allow the Analysis Item to affect both Data Providers.
    Now the problem is:
    1) Adding the same free chracteristics on DP2 (Chart) as on DP1 (Grid) enables filtering of DP2 according to Grid / DropDowns but also drills down the chart's columns so now I have 3 x 10 (or more) instead of 3x1 values in the graph when I drill down the Grid.
    2) When I disable Analysis Item to affect DP2 the Chart layout remains the same when I drill down Analysis Item, and is filtered by the DropDown Items (that's close to my intention!) but it ignores filtering of the Analysis Item which I cannot completely turn off due to Drag&Drop options.
    2) Leaving the free characteristics out of DP2's query would disable drill down but also filtering (even when I try and add the same chars to the definition of the RKFs)
    I know it's hard to put all this across (obviously I cannot show you my template here) - so I hope someone can help!
    Thanx very much in advance!
    Dennis

    Any hints on the topic ?
    Meanwhile I tried different chart types (circle, speedometer), but either vertical or horizontal drilldown on the table makes the chart burst.

  • Drilldown on line chart w/3 series to 3 different pie charts w/ DV

    Hello experts,
        My situation is the following. I have a Line chart representing sales on 3 different series(actual, budget and last year) along the 12 months. Then 3 different pie chart that link the office sales of each serie and each month. I successfully linked the drill down data, but I can't make it workout the dynamic visibility everytime you select a different serie on the line chart, because of the common issue of the insertion that doesn't clear the previous selection when you make another one. I'll attach the xlf file as a txt. Hope you can make it work.
    Thanks a lot
    Gaston Bigi

    Hi Gaston,
    Take the reference of these blog posts.
    Filtering Through Combo Box
    Source Data Component Usage
    Drill down Made Easy
    If there is still an issue achieving it, let us know.
    Most probably the second link here should solve the issue.
    Regards,
    Sara

  • Line Chart DrillDown Functionality

    Is it possible to do drill down in Line Chart on Date feild?..If any one did before please share with me your experience.
    or if have any blogs on that do let me know.
    Thanks in Advance
    Chi
    Edited by: chir0n on Feb 3, 2010 11:42 AM

    Hi Gaston,
    Take the reference of these blog posts.
    Filtering Through Combo Box
    Source Data Component Usage
    Drill down Made Easy
    If there is still an issue achieving it, let us know.
    Most probably the second link here should solve the issue.
    Regards,
    Sara

  • Drilldown on Service Request Charts

    Hi guys,
    Need help.
    On the vanilla chart on the Service Request home page. If you click on one of the segments, it drill's down to a list of the SR's within that segment.
    However when i create such as pie chart, the pie-chart cannot be drilled down.
    I read some stuff about actions link and setting a custom data type with 2 different options
    @[html]"<span onClick=\"javascript:LinkOccam (this, ''service'');\">"@"</span>"
    or
    "http://"@[html]"<a target=_top href=https://secure.crmondemand.com/OnDemand/user/ServiceDetail?OMTHD=ServiceDetailNav&OMTGT=ServiceDetailForm&OpptyDetailForm.Id="@">"@"</a>"
    but nothing is working.
    any advice?

    Min,
    Have you gone into the properties of the Chart view and set the interaction type to Drill?
    The option is on the Navigate tab under the Additional Charting Options button.
    Mike

  • SAP BO XCelsius : Drilldown from pie chart to raw data ( Excel Spread Sheet) in Xcelsius

    Hi,
    I am working on a dashboard where my requirement says, Drill down data from Pie-Chart to Raw data ( Excel Spread sheet).
    Clicking on one pie should show me the required data in Excel format
    May I know if this is possible to create from Dashboard design tool SAP R4
    Thanks
    Javeed

    Hi Javeed,
    Drilling data from pie charts is very much possible. The data drilled down can be shown either in spread sheet format via components called "Scorecard" "List View". But if its specified that you need the current data drilled down to a separate excel spread sheet only then, you may need to use the third party components for it.
    There are many such components available for free. There are components available which are paid as well. You will have to find out which ones are free. Check out the threads below.
    How to export data out of Xcelsius to Excel
    CSV Connector
    http://pentaho-bi-suite.blogspot.sg/2013/12/exporting-table-component-to-excel-or.html
    Export Data from Dashboards | Just-BI | Business Intelligence
    SAP Dashboard Components - Multi Colour Column Chart, Hierarchical ComboBox &amp; Export To Excel Manufacturer from Beng…
    SAPexperts | Give Dashboard Users the Ability to Export Data to Excel at Run Time
    I hope this derives you to come conclusion.
    Thanks,
    Sara

  • Unexpected result on custom URL and drilldown-abled chart

    hi, I have a custom URL
    saw.dll?PortalGo&PortalPath=/users/administrator/_portal&Path=/shared/test_subject_area/drill_down_bar_chart&Action=Navigate&Options=mdfr&Done=Dashboard&P0=1&P1=eq&P2="tableA$".market&P3="japan"
    and drill_down_bar_chart is a bar chart with drill down (market is the topest level)
    lets say there are 2 level on the drill down, market and sub-market
    (the chart is in the 3rd dashboard page)
    I access the chart by the custom url, the bar chart is shown (at this moment, showing the measures per market)
    at this moment, if I click "Return"(on the list of "Reports Link"), it returns to 3rd dashboard page, this is expected
    however, if I click on one of markets instead of clicking "Return", the measures per sub-markets of market "japan" is shown.
    if I click "Return" at this moment, it returns to 1st dashboard page, this is not expected.
    how to solve this problem?
    thanks you very much

    Hello,
    Yes, it behaves like you said,
    the work around i done is:
    written a back button HTML Code in the target report and name the button as return or Back
    Code is:
    *<INPUT TYPE="button" VALUE="GoBack" onClick="history.go(-1);">*
    Paste this code in static or narrative view with * Contains HTML Markup* check box enabled.
    Add this view in the bottom of report before your footer and align to left.
    save this report and try navigating from first report. But to return use the button we created.
    Hope it helps, but not sure your client will accept this or not... :-)
    Edited by: Kishore Guggilla on Jul 13, 2009 4:26 PM

Maybe you are looking for