ADF: Can drill down feature of data visualization chart trigger a method?

I'm using jdev 11.1.1.2.0 and I can see that charts can use a master-detail link to allow the user to click on a data element in a chart and so select the data in the detail chart. Can this feature be used in other ways?
I'm wondering whether a click on a chart could call a method which uses the data selected in the chart. For example, a click on a marker in a scatter graph might write that data (x and y values, maybe even some of the tooltip data) into a separate table; alternatively such a click would copy such data into variables which will be combined with data selected by further clicks on the chart, eventually updating a table with calculations based on the data points selected.
Possible?

I'm afraid I haven't been able to work it out. The instructions on using the demo describe creating a project from a WAR file - but the download of the 11.1.1.3 version isn't a WAR file, it's a ZIP. I also tried extractng and copying the files but couldn't work out what was required - it seemed particularly odd that there wasn't a JWS file.
Also, I'm still on 11.1.1.2: should I still be able to get most things running?

Similar Messages

  • Drill Down feature for pie chart in JSP

    Hi,
    I need to have drill down feature in my Pie Chart which is generated using JFreeChart package. The pie chart is generated dynamically basing upon the database values as inputs .
    Now on click of any one sector i have to show other bar graph. The bargraphs would be different for different sectors clicked.How to use Mouse Listener? How can track or keep check on the boundaries of different sectors?.
    Please help me on this issue.
    Thanks in advance,
    Praveen

    @OP: don't ask the same question in two different threads:
    http://forum.java.sun.com/thread.jspa?threadID=5121491&messageID=9424672#9424672
    kind regards,
    Jos

  • Drill down on posting date and Document number

    Hello Gurus,
    In a Bex report, I am looking at account balance on a keydate for a G/L Account. When I drill down based on posting date I do not see any values for the keyfigure 'Account balance as on key-date'....But after I drill down on posting date --> document number I get to see values for thie key figure.
    What is this strange behaviour? Kindly explain.
    Regards,
    KP

    Hi KK,
    This may be due to the values/quantities having different UOM or currency for different documents/posting date.For example,  Usually when there are mixed values like this, the aggregated value is not displayed, instead a '*' is displayed in the report result. However there is a setting in BW where you can mention how to handle such mixed values.
    So I suggest you first check the currencies for the amount at the posting date/document level(when you drill down). If they are different then check the settings in the transaction SPRO --> SAP Business Information Warehouse --> Report-relevant settings --> General Reporting settings in the Business Explorer --> Presenting the numeric value in the Business Explorer.
    Here check the value maintained for 'Mixed Values'. If it is blank, then this is the reason that no value is displayed.
    Regards,
    Shilpa

  • How we can   drill-down, sorting, traffic lights,  in ALV report

    hi gurus ,
    how we can   drill-down, sorting, traffic lights,  in ALV report .
    please any one suggest that...
    regards,
    praveen

    Check the sample code for drill-down, sorting, traffic lights,  in ALV report.
    REPORT YMS_COLOURALV NO STANDARD PAGE HEADING.
    TYPE-POOLS: SLIS, ICON.
    DATA: FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA: BEGIN OF IMARA OCCURS 0,
    LIGHT(4) TYPE C,
    MATNR TYPE MARA-MATNR,
    MTART TYPE MARA-MTART,
    MAKTX TYPE MAKT-MAKTX,
    COLOR_LINE(4) TYPE C,
    TCOLOR TYPE SLIS_T_SPECIALCOL_ALV, "cell
    END OF IMARA.
    DATA: XCOLOR TYPE SLIS_SPECIALCOL_ALV.
    START-OF-SELECTION.
    PERFORM GET_DATA.
    PERFORM WRITE_REPORT.
    FORM GET_DATA.
    WRITE ICON_GREEN_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'ABC'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for ABC'.
    APPEND IMARA.
    WRITE ICON_YELLOW_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'DEF'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for DEF'.
    APPEND IMARA.
    WRITE ICON_RED_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'GHI'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for GHI'.
    APPEND IMARA.
    LOOP AT IMARA.
    IF SY-TABIX = 1.
    IMARA-COLOR_LINE = 'C410'. " color line
    ENDIF.
    IF SY-TABIX = 2. " color CELL
    CLEAR XCOLOR.
    XCOLOR-FIELDNAME = 'MTART'.
    XCOLOR-COLOR-COL = '3'.
    XCOLOR-COLOR-INT = '1'. " Intensified on/off
    XCOLOR-COLOR-INV = '0'.
    APPEND XCOLOR TO IMARA-TCOLOR.
    ENDIF.
    MODIFY IMARA.
    ENDLOOP.
    ENDFORM. "get_data
    FORM WRITE_REPORT.
    DATA: LAYOUT TYPE SLIS_LAYOUT_ALV.
    LAYOUT-COLTAB_FIELDNAME = 'TCOLOR'.
    LAYOUT-INFO_FIELDNAME = 'COLOR_LINE'.
    PERFORM BUILD_FIELD_CATALOG.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = FIELDCAT
    TABLES
    T_OUTTAB = IMARA.
    ENDFORM. "write_report
    FORM BUILD_FIELD_CATALOG.
    DATA: FC_TMP TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE.
    CLEAR: FIELDCAT. REFRESH: FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Status'.
    FC_TMP-FIELDNAME = 'LIGHT'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '4'.
    FC_TMP-ICON = 'X'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material Number'.
    FC_TMP-FIELDNAME = 'MATNR'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '18'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material Type'.
    FC_TMP-FIELDNAME = 'MTART'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '10'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material'.
    FC_TMP-FIELDNAME = 'MAKTX'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '40'.
    APPEND FC_TMP TO FIELDCAT.
    ENDFORM. "build_field_catalog

  • Drill Down feature for pie chart in Java

    Hi,
    I have a JSP where the graph displayed should have �Drill Down� functionality i.e. when clicked on any sector of Pie chart it should come up with other graph giving more details.
    I need the code or how to proceed to get drill down feature.
    If anyone has idea about �drill down� or any sites which can help me please reply.
    Thanks in advance.
    Praveen.

    You have to generate the image and the surrounding HTML using two seperate transactions; typically a JSP delivers the HTML and a servlet, invoked by the SRC URL of an image tag, provides an image.
    Your HTML contains a form, and the image is displayed using a <Input type="image" .. Clicking on that submits the forn, providing X and Y coordinates as parameters to a servlet which can calculate which pie-slice has been clicked. You can't use a client-side image map because there are no suitable sensitive shapes available.

  • How to add a drill down feature in the Adobe form output

    Hi,
    I am new to adobe forms.I have a requirement where in i need to develop a form which will have diffeerent rows in the output.
    if the user is accessing the form using SAP GUI i need to provide a hyperlink on the row which will have a drill down feature further to have  the details on the row in a tabular form.Please help me on this.Thanks in advance.
    Moderator message: wrong forum, please have a look in the forum for "Adobe Interactive Forms".
    Edited by: Thomas Zloch on Apr 7, 2011 9:44 AM

    Hi,
    Refers the following links.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4fd2d690-0201-0010-de83-b4fa0c93e1a9
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5f27e290-0201-0010-ff82-c21557572da1
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70c9a954-aa20-2a10-64bb-ea0835204e03
    Thanks
    Abhilasha.

  • Drill down feature in Power map(in trial version of O365) is available?

    Drill down feature in Power map(in trial version of O365) is available?
    If yes for all version it is available?

    I don't think so.
    Please submit this feature request via the Smile Frown button in the UI. 
    That will go directly to the product team.
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Where can i download the Flex Data Visualization package

    i need the Advanced DataGrid,so where can i download the Flex
    Data Visualization package?not free?how much?

    The AdvancedDataGrid should be in the SWC
    frameworks/libs/datavisualization.swc in the Flex 3 SDK at
    sdks/moxie in your Flex Builder 3 installation. The source code for
    the data visualization components is not provided. As far as I know
    these components will not be free but I don't believe pricing has
    been announced yet.

  • Touchscreen doesn't work. i can slide down to access date but can't unlock

    touchscreen doesn't work. i can slide down to access date but can't unlock

    http://support.apple.com/kb/ts2802
    Try some of the steps in the Display section of the above link.

  • Drill Down between 2 stacked column chart with multiple rows.

    Hi,
    Can anyone please help me.
    1) i have to create stacked column chart with Region and cout of calls for previous 3 quarters.
    2) the 2nd stacked column should display the priority with the count of calls for the respective selection of region on the 1st chart..
    to achieve this,
    i'm using 2 stacked column charts and 1 lebel baseb menu.
    from this i can able to get the drill down from label based menu to 2nd stacked column chart but i couldn't able to done the same from 1st stacked coumn chart.
    Becoz my data is multiple row for each quarter.
    please suggest me to achieve the drill down between 2 stacked column charts.
    assume that my data like below.:
    coulmns for 1st stacked column chart : Region, Q2,Q3 &Q4
    Region                Q2                Q3               Q4
    Other              3658              3497               497
    NA - North
    America                3               3               1101
    APJK     1     4     597
    UK               324
    EMEA North     1     1     288
    CORPORATE     1     5     215
    LA -
    Latin America1     2     208
    EMEA     1          199
    EMEA South     1     1     169
    Coulmns for 2nd coumn chart:  Region, Priority, Q2,Q3,Q4 ()which is derived from 1st table.
    Region     Priority     Q2     Q3     Q4
    Other     D: End of Next Day     1568     1613     239
    Other     C: End of Day     983     893     119
    Other     A: 2 Hour     631     610     70
    Other     B: 4 Hour     396     318     56
    NA -
    North AmericaD: End of Next Day     2     2     514
    APJK     D: End of Next Day          3     297
    NA -
    North AmericaC: End of Day               284
    NA -
    North AmericaA: 2 Hour     1          170
    UK     D: End of Next Day               157
    APJK     C: End of Day     1     1     152
    Other     E: 3 - 5 Business Days     68     58     13
    EMEA North     D: End of Next Day          1     136
    CORPORATE     D: End of Next Day          4     107
    NA - North America     B: 4 Hour          1     104
    LA - Latin America     D: End of Next Day     1     1     86
    EMEA     D: End of Next Day               86
    UK     C: End of Day               85
    APJK     A: 2 Hour               79
    EMEA South     D: End of Next Day               72
    EMEA North     A: 2 Hour               69
    EMEA North     C: End of Day               56
    APJK     B: 4 Hour               55
    EMEA     C: End of Day     1          53
    LA - Latin America     C: End of Day               54
    UK     A: 2 Hour               49
    EMEA South     C: End of Day     1          44
    CORPORATE     A: 2 Hour          1     43
    CORPORATE     C: End of Day               44
    LA - Latin America     A: 2 Hour          1     42
    EMEA South     A: 2 Hour          1     32
    EMEA     B: 4 Hour               30
    UK     B: 4 Hour               30
    EMEA     A: 2 Hour               27
    EMEA North     B: 4 Hour     1          26
    NA -
    North AmericaE: 3 - 5 Business Days               25
    LA - Latin America     B: 4 Hour               23
    EMEA South     B: 4 Hour               20
    CORPORATE     B: 4 Hour               17
    APJK     E: 3 - 5 Business Days               13
    Other     F: 6 - 10 Business Days     6     4     
    Other     G: 11 - 20 Business Days     6     1

    Hi Srinivas,
    I'm using label based menu "filterd rows" only but i couldn't bind the drill down with the 1st stacked column chart.
    for mor details:
    1) i'm having 2 stacked coumn charts & 1 lebel based menu but eventhough i couldn't able to achieve.
    if i select the lebel based values then the 2nd stacked column charts is giving detailed valus but if i keep my mouse on the 1st stacked column chart the there is no changes on the 2nd chart..
    somewhere i'm mising the binding data between 1st stacked coumn chart & lebel based menu on drill down part.
    Becoz i'm having multiple rows. so can you please try your and send me the xlf file using your concept.

  • Problem in Drill Down feature and Scroll Bar

    Hi All,
    Well I have designed a report on Oracle BI and facing the following issues:
    1. When i opened the report through image/link box(from mypage dashboard or from some other way) and if the data have enough rows and columns to overflow the screen size then there is no scroll bar on the screen so i wouldn't be able to see that data.
    2. When I am clicking on the year(as i made a time hierarchy --> year then quater then month) on the either pivot table or chart view then automatically all corresponding Dashboard Prompts(DP) disappear so i can't filter the data.
    Please help me out in this.
    thanks in advance.
    regards
    mohit

    Regarding 2)
    This is the expected behavior of drill downs. The subsequent reports from the highest level are "system-generated." If you want the prompts, you will have to use the Navigate feature and navigate to a dashboard where you can have your prompts.
    Regarding 1)
    Are you using the Table View or Pivot Table view? If Table View, you can increase the number of rows that are visible by default (change this in the Properties of the Table View.) If you are using a Pivot Table, try this link:
    http://oraclebizint.wordpress.com/2008/01/17/oracle-bi-101332-pagination-in-pivot-tables/

  • Reports drill down feature

    Hello,
    there is drill down option that can be used during user-defined report creation
    (SQL Developer 3.1 EA1)
    Do you know where I can find documentation on how to setup it?
    Thanks,
    Andrey
    Edited by: Andrey Goryunov on 10-Oct-2011 18:08

    Hi Slevi,
    You are right with the understanding of the Drill down function. To have a drill down function available the minimum requirement is have at least a single group in the report.
    When we have a group with some underlying data and then when we would like to see data for a particular group, we can see a u201Cmagnifying glassu201D symbol which indicates that there is data for this group and we can use the Drill down function.
    When you drill on a particular group, the data for that group is shown in a new tab.
    I hope this provides some information about the Drill down function used in Crystal Reports.
    Regards,
    Prashant Saduwale.

  • Drill down feature with parameters

    Can we drill down in smartview by taking the parameters from the existing row and column?
    For example: I have a group with different entities A, B, and C. In smartview, I have all the accounts in the rows and the three entities A,B,& C in the columns. When I double click on the combination of entity A and an account, I want to see all the transactions with ICP Entities for that entity A. Does smartview has the feature to know the column and then drill down based on the column header?

    If you are using Essbase Studio or EIS the intersection is passed as parameters to the SQL in the format of $$Column-name$$ and $$column-value$$ so yes it does know the intersection values.

  • Unable to Multi Level Drill Down on Single Data Object in BAM Report

    Hi,
    We need to have multi level drill down in a BAM report.
    We are able to create single level drill down using 'Collapsed List' view in a Tiled Report, but unable to drill further.
    We are using BAM (11.1.1.2).
    Please let us know the steps to do this, your input is highly appreciated.
    Thanks,
    Arijit
    Edited by: user2917352 on May 4, 2011 11:21 PM

    Have you used Dimension? By defining Dimensions, you can create multi level drill down on the same data object, in the same report.
    1. Define the Dimension in the data object
    2. In the Studio, choose Drilling tab under the report
    3. Drill Hierarchies will be available. Choose the Dimension
    The drilling level will depend on the depth of the Dimension you have specified!
    -AR

  • MORE EVERY CAN&MX 1000MIN feature limits Data plans to 50Gb.  Why?

    I travel to Canada frequently, I have 2 smart phones, 2 MIFI devices and Home Fusion.  My entire connection to the internet is through Verizon.
    I recently learned that I am not able to keep my MORE EVERY CAN&MX 1000MIN feature if I want to increase my data plan to more than 50GB.   Why is that?  How are they related?  You don't choose them together when you are setting up your accounts?  You choose your data plan and you add on the Canada calling as a feature.
    An hour on the phone with Customer service, and have run those poor folks around in circles.  All they know is that they can't give me a 60Gb data plan and keep the Canada calling feature.
    How do I work around this?

    I will wait for more responses, maybe someone in the world can share experience, meanwhile thanks for your response.
    May attempt to hack BIOS on my own, or talk to HDD/SSD thru "notorious" HDDerase Utility which bypasses BIOS but risk is high.  Lame BIOS may not enumerate a locked ATA device at PowerOn, yet some people from Intel SSD forum reported success.
    P.S. ATA Password is crackable.
    If you had a drawer full of locked harddrives, it is an indication how many people messup (at least in America in recent times, we seem to be losing Technical edge -how does one lock their own harddisk and forget pass is beyond me).
    But for those folks who suffer from forgetfulness:
    Basically a question of Cost vs. Data value.
    If Data really valuable, they can PAY and get it cracked after proving OWNERSHIP (whatever company cracks ATA pass w/o requring proof, is illegal).
    My data is far more valuable than a collection of {Content Removed: Language Filter Evasion} or grandma's photos - I keep industrial design files, banks, and secret letters, but cracking ATA Pass is fairly expensive and not worth for thief to steal my data.  So it's kind of effective.
    If I need ot crack it - first off, I don't forget passwords
    Second, if you are the owner and esperienced person, you do keep backups and image(s) and just write off $$ you spend on harddrive as a LOSS, and restore image to a new Harddrive.  SSD's take only minutes to restore image (though losing locked SSD is more expensive than locked HDD).
    Anyways,
    ATA/Harddisk pass is the ONE & BEST (for my kind of people) solution for an ultraportable Laptop/netbook whose processor is not adequate to run FDE (BitLocker, TrueCrypt, PGP), it's not i7-2600 w/builtin AES as in our workstation.
    ==
    Can you please leave this topic alive for much longer, in case someone else responds.?  I just posted and only few users seen it.
    Sometimes best solutions come from other Users, rather than Mfg. Official tech Support.

Maybe you are looking for