How to reset drill-down column-chart based on map-chart?

Hi guys,
I'm facing pritty common issue while designing one of my dashboards.  Let me describe a little bit  more:
1. I have some data extracted from BW using Query as WebService into my Xcelsius spreadsheet.
2. I have map-chart - regions for some country.
3. I have a drill-down column-chart, which displays data for a selected region.
At the beginning column-chart displays results for entire country (which, in fact, is not exactly drill-down). The issue I'm fasing is, that in case I select any region and the data is drilled-down into my column-chart, I have no option to show data for the entire county in the column-chart anymore (the only one way is to restart the report).
Are there any possible way to do this, or am I doing a design error while displaying data, which is not drilled-down, into a chart which is intended to display drill-down data only?
Any help would be highly appreciated.
Thanks in advance.
Ivaylo Mutafchiev
Varna Business Services
Project Manager BOBJ

Ivaylo Mutafchiev,
I understand your problem now. So your column chart data which is coming from the QAAWS query should be having a prompt which is bound to some cell in excel. and your map might be passing the values for prompt isn't it? in your case the map might be passing a region.
All you need to do is put the prompt in the web service for region as a optional prompt. Now pull in a check box or a Push button(name it as reset or something.). while binding the data to the check box or push button (source data) bind it to a blank cell. when user clicks on it , it passes a blank vlaue to the region(this is ur input for region) which will inturn makes the prompt optional for the region web service. which should pull all the data for all the region.
The whole idea lies in somehow passing a blank cell to your  web service whose region prompt is optional.
Thanks,
Karthik

Similar Messages

  • How to use drill down hierarchy in column chart of BO OLAP edition tool?

    I had created hierarchy table in olap tool where i can drill down Zonewise then Regionwise then Customerwise but this technique is not possible in Graph of Olap tool ,so my question is how can aaply drill down method in graph?

    Hello Raul
    This is odd. Have a look at the screen shots below. I start at the top level "WORLD".
    I right-click on "WORLD" and choose "Expand". This gives me the second screen shot.
    I then right-click on "NORTH AMERICA" and choose "Expand". This gives me the third screenshot.
    As you can see, levels are expanded one-at-a-time. The only thing I can think of is that the BW query has been set up to drill down automatically to a particular level.
    Regards

  • How to configur Drill down on Bubble Chart

    Hi,
    Can anyone please hel me with examples - how to confihure drill down on bubble chart.
    that means,
    1) whenever the user clicking the bubbles - the pop up window should display some notes related to that bubble
    and also in another requirement
    2) whenever the user click the bubble - the pie chart should display the values related to that bubble.
    please help me on achieving the same..

    If the Bubble size is constant we can do this.But as you know Bubble sizes varies from once to one place..It will be tough scenario if you want to do it here..Instead take a label based menu and try to use dynamic visiblity .And show labels in there which contains the text for the respective labels..

  • How to Enable Drill Down in WebI through Infoview

    Hello Experts,
    I have WebI report, I am running through Infoview and I see drill down option is disabled, can anybody help me how to enable drill down option.
    Thank you
    Ravi

    HI Ravi,
    Log on to CMC -> Application -> Right Click on Web Intelligence Rich Client -> Select your user -> Assign Security -> Advanced tab -> Select "Unassigned Rights" in Common Filter Settings -> Select Enable Drill Mode in Rights Name Column -> And assigned grant level to it.
    Hope this help.
    Regards,
    Rishit

  • How to create drill down report in sap query

    how to create drill down report in sap query ,

    hi,
    The pdf below gives the steps to create drill down report.
    http://www.sappoint.com/abap/eis.pdf
    also check.
    <a href="http://72.14.203.104/search?q=cache:k-SFYy_rjPIJ:www.hrexpertonline.com/archive/Volume%252003%2520(2">http://72.14.203.104/search?q=cache:k-SFYy_rjPIJ:www.hrexpertonline.com/archive/Volume%252003%2520(2</a>
    regs,
    jaga

  • 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

  • How to use drill down option in Crystal Report

    Dear all,
            I want to know how to use drill down option in Crystal report 2008.  In below i have explained my screnario
    For example
       My scenario is.  In crystal report I have Purchase order like PO101,PO102.  Each purchase order have 5 line items.  If i drill down each purchase order it should display line item in crystal report. 
    Regards,
    Baskaran.

    hi,
    Create a Group on 'Purchase order'.
    Group Expert -> Select the Purchase Order and Click the arrow button such that it appears right side. Click ok.
    GH1 is inserted.
    Your detail section should include 'Line items' fields.
    Right Click 'Detail' section on left hand side,  Click 'Hide (Drill down Ok)'.
    Now you will see only 'Purchase order's in Group Headers.
    Now when you click on a particular order, you will see respective line items.
    Regards,
    Vamsee

  • How format drill down column?

    Hi all,
    We can format the column in report , but when drill down to another column2, how can i format column2?
    Thanks!

    Bring the second column into the Criteria Tab and Edit the Column format as per your needs. Once you ar done at the bottom Save the column 'as the system wide default for that column'. After saving remove the column from Criteria tab.
    Next when u drill down to column 2 the formatting would appear automatically. Hope this helps!
    Regards,
    Bhavik
    Edited by: bkjatania on Jul 15, 2010 9:15 PM

  • Lose chart drill-down for webi based on BEx/BICS

    Hi All,
    I have a client for whom drill-down through charts based on SAP hierarchies is an essential requirement. My research here (and elsewhere) has led me to the following conclusions:
    1. IDT Universe (.unx) can't be based on BEx query (functionality briefly appeared then was revoked with subsequent SP)
    2. The supported/recommended method for reporting against BEx query is the BICS connectivity
    3. A webi report based on a BICS (although offers nice new sap hierarchy interaction) does not support drill-down through charts
    Just looking for confirmation that I am correct...and that my reports will therefore need to be based off traditional universes (.unv), to achieved drill down on charts in webi?
    Appreciate any feedback.
    Thanks,
    Ferdie.

    Hey Ferdie
    1. Build table in WEBI Document include the Hierarchy object (0COSTCENTER).
    2. Choose the CostCenter, right click set as Selection.
    3. Now add new Blank Cell and put it near selection , enter there some text , like JUMP TO, DRILL and etc..
    4. Now select the CELL . right click , Linking and Hipper Link or Document Link, and choose there another document
       or you also can choose self document. When your linking to another webi document you can transfer to it parameters to   prompt. So Transfer the costcenter as parameter.
    The document link option available only when you run document in View mode (No rich client without JAVA). I will open OSS to SAP about this issue
    Also you can choose to open the document in current window, so then user will think that he is still in same document
    Example for link parameter:
    /portal/1110311905/OpenDocument/opendoc/openDocument.jsp?iDocID=AdJiD59b4kJKkhNpGCYT8Q0&sIDType=CUID&sType=wid&lsSpsCost%20Center%3A=Ness&sWindow=Same
    I hope this will work

  • Dynamically display drill-down column in report

    We have two drill-down hierarchies 1. Calendar Year and 2. Fiscal Year.
    In a report, we have year column along with some other measures. The year column must show the values based on user's choice - If the user is interested in fiscal then the year must show fiscal year else the year must show the calendar year values.
    We thought of the following approach
    1. Use a prompt - which displays Calendar/Fiscal.
    2. Store the user selected prompt value (Calendar/Fiscal) in a variable
    3. In the report, for the year column, use CASE logic on the variable to decide whether Calendar year or the Fiscal year must be shown.
    This works well but the drawback is - the year isn't drillable anymore.
    Any other alternatives to solve this ?
    Thanks in advance

    Are you showing the report on a dashboard or just in Answers? Do you want in-place drilling or can you jump to a new report?
    One option is to enable navigation on the year column data and set it to jump a new report - you will need to pass the cell values as arguments in the URL - but if you want to just use plain old drill down (within the same report) I think you will have to use two reports, one for fiscal and one for calendar. Here we can get a little creative and use guided analytics to choose which of the two reports to show on the dashboard based on the selection made.
    Pete Scott
    http://www.rittmanmead.com

  • Drill down in report based on two queries

    Hi,
    I have a problem with drilling down in report which is based on two queries.
    Queries are based on different universes.
    Both queries contains almost the same dimensions but different measures.
    In my report is a calculated measure based on measures from both queries.
    In both universes are the same hierachies.
    When I drill down in report for the first time I have to chose hierarchy  but then data are filtered to the choosen  value only from one query , data from second query are not filtered and the values of calculated measure are incorrect
    How can I solve this issue without adding dimensions belonging to the hierarchies to queries.
    Please help.
    Regards.
    MG

    Hi MG,
    First of all, what do you mean by "Both queries contains almost the same dimensions but different measures"
    "Almost" is not a good word in the IT world, especially when trying to merge/join tables. You need to be exact.
    That sounds like a possible reason for the problem.
    I am also not sure about your question:
    "How can I solve this issue without adding dimensions belonging to the hierarchies to queries."
    You may have to add those dimensions to the queries. Why would you not want to?
    Thanks

  • How To Create Drill down report in oracle report 6i version

    HI,
    I have one table having dept no , emp_no ,Sal like field.
    I want drill down report master column dept_no.
    i want one click on dept_no & i want to see detail of emp & Sal on it
    How can i do this please guide me.
    Thanks in advance
    Rahil

    Hi
    One simple concept is,
    Make dept only report call it as dept.rdf
    Now create another report call it as emp_details.rdf,
    Now in Dept.rdf. Make push button and call the emp_details repot by passing dept no varailble.
    Hope you got idea of drill Down on 6I
    Edited by: O.Developer on Dec 19, 2012 9:20 AM

  • How to use drill down

    Post Author: omaha
    CA Forum: Charts and Graphs
    How do you get a bar chart to function as a drill down chart?  I've tried creating groups, but apparently there's more or something else necessary.  I have 3 formulas, each summed at the group level, and I would like for the bar chart that is currently shown to function as a drill down, thereby I hope to make the report simply show the chart ... and if desired, the user can click on the bar of interest to them and see that particular detail.
    Again, the values I'm summing are formulas, not actual values in the table.
    Thanks for any help

    Post Author: matthewh
    CA Forum: Charts and Graphs
    New to Crystal but I have a report that groups production jobs for the last 7 days by day, and then I have group summaries for them for a number of the fields some of which are formuas, and build 6 bar charts from them, with 'OnChangeOf' set to to the date group (GH1).  Now when someone clicks on a bar it drills down and display's that day's jobs, which then have a drill-down to a detail on each individual job.  Didn't design it like that - found it by accident this morning!
    Hope this helps.

  • Simulating Summary / drill down columns in OBIEE without actually changing Subject Area/Repository

    Hi,
    I have a  requirement where I need to group certain columns and simulate drill down (expansion and collapse) for them without doing any changes in Subject Area / Repository.
    We have measure columns revenues and a two geography columns Continent (values are Europe, Asia) and Country (Singapore, India, Japan, France, UK) in Subject Area.
    Continent is heirarchial column. Europe includes France and UK. Asia includes Singaore, India and Japan. We need to create a Summary Region SIUK (containing Singapore, India and UK) and another Region FJ (containing France and Japan). Analysis output should not show original Continent names. Analysis output needs to have three columns Region, Country, Revenue. When region is expanded then Country column should show the different countries. Example (Result before expanding i.e. clicking + )
    Region               Country            Revenue
    SIUK(+)             ALL                 600
    FJ(+)                 ALL                 400
    Result after expanding i.e. clicking +
    Region               Country            Revenue
    SIUK(-)             Singapore         100
                            India                 200
                            UK                   300                    
    FJ(-)                 France              150
                            Japan               250
    Please guide me about how to achieve this.
    Thanks, Atul

    Atul,
    If you really only want to use Answers / front-end approaches for this you won't be able to get the OLAP-style navigation rendered but would have to use navigation links or GO URLs.

  • Dynamic Drill Down Column wise in Webi Report

    Hi All,
    I need to have dynamic drill down functionality in my webi report.
    For example
    I have Columns;
    Fiscal Year, Fiscal Quarter, Plant, No. of PO line (4 columns).
    Drill down on Plant level.
    When i click on plant a new column should be added in webi report.
    Now my report should look like this;
    Fiscal Year, Fiscal Quarter, Plant, Buyer, No. of PO line (5 columns)...(New column Buyer is added)
    How to do this.
    Please help me guys.
    Thanks in advances!!!
    Regards,
    Gaurav Nayar

    Hi,
    What you want is possible as long as the table formatting you have helps.
    What you can do is add a column to the table.  Then use the following formulas
    Formula in Column Name Cell:
    =If(Drillfilters([Plant])="") Then "" Else Nameof([Buyer])
    Formula in Column Values Cell:
    =If(Drillfilters([Plant])="") Then "" Else ([Buyer])
    Now, what I meant by "as long as your table formatting you have helps" is that, you need to change the border colors of the extra column to match with the report blank area, means the borders should be white in colour and the column width should be autofit and they wont be visible as they are white, once you drill on plants, the values come up.
    So if your table has no border, that will be perfect.
    Hope this helps.

Maybe you are looking for

  • How to discover message IDs?

    Hi people, I think it is a very basic question but................. I dont know. When I'm creating a shopping cart, I receive some messages (error, warning, etc). How can I know the message class and the message IDs of them? Thanks!!!

  • Syncro yahoo with Blackberry Desktop Manager (5.0.1

    the Blackberry Desktop Manager (5.0.1) stopped syncing with the Yahoo! Address Book. The application attempts to read a users Yahoo! Address Book and fails. There are numerous reports of this issue. Does anyone know of any changes to the Yahoo! Addre

  • WPER- Idoc

    Hi all, I am working on retail. This is the scenario based on the inbound idoc which comes to ERP from Triversity. I wanted to know that if i reject any Idoc than it goes back to the document processed. But later on i realized that it shouldn't be re

  • While implementing sample custom realm, got ClassNotFound exception

    I am trying to get the sample custom realm work. I followed every step in the documentation and had it deployed successfullyl. When I tried to log in, the authentication failed. Then I restarted the SunOne appserver, in the server.log file I got the

  • Mail.app losing signatures [SORRY, OT]

    Sorry, I can't find a forum here for questions about Apple Mail. Every time I restart [or log out of ] my MBPro (2007), the list of 58 signatures Mail.app is supposed to keep for my default email account disappears. I can easily restore them en masse