Drill Down in Dimension hierarchy in 11g......

Hi,
I place dimension hierarchy in my report.drill down is not working for dimension hierarchy.when I Click + symbol it working fine.
requeriment is when I click The Value it will be Drilldown.
Any Help....
Thanks,

Check these links
http://www.rittmanmead.com/2010/10/oracle-bi-ee-11g-navigation-passing-parameters-using-hierarchical-columns/
http://prasadmadhasi.com/2011/12/15/hierarchicalnavigationinobiee11g/

Similar Messages

  • Error when drill down with essbase hierarchy

    Hi ,
    I am displaying one bar chart with, one Ragged hierarchy dimension "Region" ( structure : total region - > India , US -> India south , US south -> chennai , California) and "revenue" (measure) .
    Sometime's the drill down is happening smoothly (region - > sub region - > city) but sometimes its throwing below error :
    Error Codes: OAMP2OPY:QIKSHNQU
    DXE compiler error. Coordinate in target list must match to*coordinate in group by list. Source name:*
    GroupbyAndCoorTableCompiler::run. XML: <sawxd:expr*xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"**xmlns:sawxd="com.siebel.analytics.web/expressiondxe/v1.1"**xmlns:sawq="com.siebel.analytics.web/querydxe/v1.1"**xsi:type="sawq:groupbyField" refCoorID="5"/>*
    FYI , I have a product prompt attached with this graph . i.e , when user selects "total product" and drilling down its
    working perfectly but when selects "network products" its throwing the mentioned error .
    OBIEE version used : 11.1.1.6.2 (Build 120604.0813 BP1 64-bit)
    essbase version used : 11.1.2.1
    Thanks
    sayak

    I have created one report using Essbase cubes in OBIEE11G and when I am archiving the same report at one local server and unarchiving it at some other server then at the other server I am facing this error.
    Any replies will indeed be helpful.

  • Drill Down Time Dimension

    Hi All.
    I have a time dimension from Year to Date (day). And I have the defined the key and a description for each level except Year, when click Year then makes the drill down to month, but in table appears the key, a numeric value, so I would like to present in answers and charts not the key, the description.
    Imagine you have a table like this:
    Year | Amount
    2008 | $1,000
    Then you click in 2008.
    2008 | 2008-01 | $500
    2008 | 2008-02 | $500
    In my table dimension I have a description for the month in other column and that's what I need to show.
    2008 | January 2008 | $500
    2008 | February 2008| $500.
    Regards.

    Drag the description col into the dim hierarchy at the appropriate level. Make it a logical key and available for drilldown ... remove the drilldown option from the other key.

  • Weird behaviour when drilling down in time hierarchy

    Hi Experts,
    We have time hierarchy
    year--->quarter--->month--->week--->day.
    But when im drilling down from Quarter it is showing the week level and not the month level and then again if i m trying to drill down from quarter then it is showing the month.
    What can be the issue here?
    Regards

    Hi,
    just check what u have set into preferred drill path tab for Logical level quarter.
    Regards,
    Vikas
    Edited by: user7312087 on Jul 7, 2009 12:27 AM

  • Rank function breaks drill down 11g

    I have a simple drill down report standard hierarchy and am having a weird issue with the rank function.
    This report works on 10g but the upgraded 11g version does not.
    When I drill down past the 2nd level it adds an is null filter to the revenue column.  This is also the column we are using to base our rank function.
    If I move the rank column to the first or last position in the table the drills work perfectly.  If I move it to the second column it breaks on the first drill instead of the 2nd.
    It works perfectly if drilling on the headings instead of the values.  That seems to point to some sort of null coming through when being passed.  I've tried using an ifnull and a case statement and neither method works, it just applies the is null filter to the entire column formula.
    The client doesn't want to change the position of the rank column so that work around will not do.  Any ideas?

    A similar thread was recently talked about here:
    In OBIEE charts, how do you make drill downs work on custom formulas?
    With a calculated column, you need to make sure the source query and destination query have the EXACT same formula and the same name for the field. If it is not 100% identical, it may not work correctly. (I typically use the NAVIGATE function to get to the second query rather than the Drill function.)
    Now in some cases, if you try to create a second drill down query with more details in it, the original formula doesn't work the way you want it to. The calculated formulas have to make sense in both source query and destination query in order to work properly. If you have a ranking of the Top 5 Products in the source query, the destination query also has to have the same ranking of Top 5 products in order to work. If you add more fields into the destination query (e.g., adding on product attributes, or # of records associated with that product name etc.), then sometimes the ranking / aggregation in the destination doesn't add up the same way. This causes the system to think that the formulas are different and prevents the drill down.
    I managed to get around this by having a 3rd query in between the original summary view and the detailed data view. So the sequence would be (for example):
    - Dashboard based summary query (including the calculated ranked product names formula)
    - drill down into virtually identical query (add on one slight bit of difference here, for example adding on a second Product Name field ... not a calculated version, but the actual name). Create a drill down this time by clicking on the regular Product Name field (don't drill down on the custom formula)
    - final detailed drill-down query
    You can format this intermediary drill down query to explain to users that they need to click a second time.
    It's not ideal, but it should work. Hope this helps.
    Ted

  • Dynamic hierarchy-level entering dashboard & drill-down

    Hi there,
    I have a requirement to create a report which, depending on the user that opens the report, needs to start at a specific level within an organisation hierarchy. Once the user has opened the report (which will be part of a dashboard), he should be able to drill-down the organisation hierarchy from his entry-point down. I've been able to create that report but when drilling-down it doesn't quite work. No matter at which level a user opens the report, when drilling it will drill-down immediately to the lowest level of the hierarchy, skipping (= not showing) intermediate levels.
    Here are the details:
    Organization hierarchy:
    - Org_Level_0
    - Org_Level_1
    - Org_Level_2
    - Org_Level_3
    - Org_Level_4
    - Org_Level_5
    - Org_Level_6
    - Org_Level_7
    - Org_Level_8
    Using an InitBlock each user is assigned it's a session variable ENTRY_LEVEL which contains the user's organization hierarchy level (i.e. '5'). For Testuser5 the session variable contains '5'.
    I've created the report containing two columns:
    - A dimension column called 'Organization'
    - A measure column called 'Availability%'
    In the dimension column I've entered the following formula:
    CASE WHEN VALUEOF(NQ_SESSION.ENTRY_LEVEL)='0' THEN DIM_ORGANISATIE." Org_Level_0"
    ELSE CASE WHEN VALUEOF(NQ_SESSION.ENTRY_LEVEL)='1' THEN DIM_ORGANISATIE." Org_Level_1"
    ELSE CASE WHEN VALUEOF(NQ_SESSION.ENTRY_LEVEL)='2' THEN DIM_ORGANISATIE." Org_Level_2"
    ELSE CASE WHEN VALUEOF(NQ_SESSION.ENTRY_LEVEL)='3' THEN DIM_ORGANISATIE." Org_Level_3"
    ELSE CASE WHEN VALUEOF(NQ_SESSION.ENTRY_LEVEL)='4' THEN DIM_ORGANISATIE." Org_Level_4"
    ELSE CASE WHEN VALUEOF(NQ_SESSION.ENTRY_LEVEL)='5' THEN DIM_ORGANISATIE." Org_Level_5"
    ELSE CASE WHEN VALUEOF(NQ_SESSION.ENTRY_LEVEL)='6' THEN DIM_ORGANISATIE." Org_Level_6"
    ELSE CASE WHEN VALUEOF(NQ_SESSION.ENTRY_LEVEL)='7' THEN DIM_ORGANISATIE." Org_Level_7"
    ELSE CASE WHEN VALUEOF(NQ_SESSION.ENTRY_LEVEL)='8' THEN DIM_ORGANISATIE." Org_Level_8"
    END END END END END END END END END
    In the Column properties/Column Format tab for the dimension column I've disabled Column Heading Interaction but I've set Value Interaction to 'Drill'.
    When opening the report as Testuser5, the Dimension column shows the correct dimension object from that user: Org_Level_5. However when then clicking on the dimensionvalue, the next dimension displayed is Org_Level_8, instead of Org_level_6.
    Any suggestion on how to obtain the desired result?
    Thanks!
    Edited by: The_Dutchman on Oct 7, 2009 5:31 PM

    Check in the RPD in the BMM in the dimension wheater all levels have a key that is set to use for drill down. It seems that only Org_Level_8 (the last level, detail) has key - use for drill down checked. This allow columns on the level to be displayed when driiling from up level to the current one. So maybe this is a reason that you get only Org_Level_8 data when driiling from any level from the case statement.
    Regards
    Goran
    http://108obiee.blogspot.com

  • Graph label in Drill down graph to display only the lowest level label

    Recently I have upgraded from OBIEE 10 to 11g.
    Some reports have a country -> region -> branch drilldown, for which hierarchy is created in business layer of RPD. The graph, drills down from Country -> Regions -> Branches and displays the measures accordingly. But the horizontal label displays the full hierarchy , like CountryName,RegionName and Branch Name. In 10g, I used to get the Branch name only in the axis label.
    I would like to display only the Region names when Country is drilled down and the branch name alone when the Region is drilled down.
    Kindly help.

    In 11g it is bug....
    For this u should create 3 individual reports (1 for country, 2. Region, 3. Branch) and give action link one to another.
    for filter make sure the required column "Is Prompted" for every detailed reports.
    Pls mark if it helps
    -Chinna

  • OBIEE  Detail record with all the columns not showing up in drill down

    Hi
    When i drill down in the hierarchy it only shows me the key rather than the full detail record
    M heirarchy is
    Dim
    total
    reckey
    detail
    detailkey
    name
    type
    When i drill down on reckey, it shows only the detailkey and not oher columns. Is there something i am missing here. The physical and logical table has detailkey as the primamykey

    You have a beautiful example in the Oracle By Example Series here :
    http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/bi_admin/biadmin.html#t2s7
    If you follow the instruction on the Channels Detail_Key in this example, you will succeed
    Success
    Nico

  • Preventing drill down after query runs

    I have an Order query with a hierarchy attached to the infoObject. I created select-option on the Hierarchy node with a node variable. When the query runs if we tell it to display 1 level it works as desired by showing the node name and total. The problem here is the user can then drill down on the hierarchy and we don't want that because we have three summary queries in a workbook and a grand total number at the bottom.
    We like the summary number but can we turn off the drill down?
    Thanks

    Hi Marcus,
    I do not know how to turn off interactive features once and for all.  But, here are a couple of ideas (implemented in a workbook).
    1. I need a certain characteristic displayed as "Key + Text".  Each time query is refreshed, I check to ensure the correct display of that characteristic.  If the characteristic is displayed correctly, OK.  If the characteristic is displayed, but not correctly, I use the OLAP command "PC02" to display it correctly.  If the characteristic is missing, I push the query all the way back to "start".  Here is code for this:
    Sub SAPBEXonRefresh(queryID As String, resultArea As Range)
    Dim c As Range, myCell As Range
        Set myCell = Nothing
        For Each c In resultArea.Cells
            If c = "Sales Area" Then
                Set myCell = c
                Exit For
            End If
        Next c
        If myCell Is Nothing Then
            Run "sapbex.xla!SAPBEXfireCommand", "STRT", myCell
        Else
            Run "sapbex.xla!SAPBEXfireCommand", "PC02", myCell
        End If
    End Sub
    2.  This example more directly addresses the question of restricting the interactive features.  In a workbook, the "Enable Interactive Functions" checked is stored in the query repository sheet (SAPBEXqueries) in column "O".  TRUE if checked, FALSE if not checked.  You can check to see if this has been changed from FALSE to TRUE, and if it has been changed, you can take the query back to "start".  Here is the code for that:
    Sub SAPBEXonRefresh(queryID As String, resultArea As Range)
    Dim bexWS As Worksheet
        Set bexWS = Sheets("SAPBEXqueries")
        numQ = bexWS.Range("A2")
        For i = 1 To numQ
            If bexWS.Range("F" & i + 3) = queryID Then
                If bexWS.Range("O" & i + 3) = True Then
                    bexWS.Range("O" & i + 3) = "FALSE"
                    Run "sapbex.xla!SAPBEXfireCommand", "STRT", resultArea
                End If
            End If
        Next i
    End Sub
    - Pete

  • Drill Down in webi same like Bex?

    Hi,
    in BEx query if i have a free characteristics i can right click on result section and drill down to which characteristic i want. is there i can do the same way in webi?
    when i click on Drill in Analysis tab i dont see any objects there to select.
    Please help me.

    Hi Kool Sudha,
    In webi, There are lots of functionality just like Drill down, Fold-unfold, Hierarchy display etc.
    or Either there is other Reporting tool Olap Analysis its look like your analyzer.Just try that one.
    http://scn.sap.com/docs/DOC-7679
    Regards,
    Anish

  • Oracle BI 10g Drill Down

    I have a problem when I drill down through a hierarchy...
    imagine this hierarchy: year > half > quarter
    I start the report only with the year column and click to drill... naturally OBIEE opens the half column and then I can press on the year column again to make another dill or I can press on the half column to drill, both this options open the desired column (quarter) but in different ways:
    if I press the year column again the report shows:
    year > quarter > half
    and if I press the half column the report shows:
    year > half > quarter
    and this second behavior is what I need! Is there any way to get the second behavior when pressing the year column?

    I don't think its possible too... but I have a client that has this requisite in a project so I'm trying to find a definitive answer whether that can be done or not. Thanks! If I find an answer I'll share it!

  • Drill Down OnSelect in Chart

    Hi ,
    I have tried drill down the Dimension objects to necessary flow.
    I have succeed with One level , But I cant able to moveto next level of dimensions..
    Eg :
    Profit Center  - > Region.
    But I need to drilldown further two more levels ( Sub - region , Sub region 2 ).
    Used the following attached code for One level drill down. I want  further drill down to dimension with button which will back on each level.

    Hi,
    You can do this with pagebook .
    Add PageBook in your Dashboard .
    Add 4 Pages .
    Add chart on each page (there will be 4 Charts & 4 DS in The Dashboard).
    1st : Profit Center & Measure
    2nd : Region & Measure
    3rd : Sub - region  & Measure
    4th : Sub region 2 & Measure
    Now Pass The Selected member from 1st chart to filter DS of 2nd chart .
    & set SelectedPageIndex(1) //considering0 as page 1 .
    Do the same for other 2 charts (2nd & 3rd ).
    Add back button in each page (SelectedPageIndex(PreviousPageNumber)).

  • Drill down in crystal on same page

    I have hierarchy in my Report . I want to do drill down on that hierarchy field on same page . So that that user can Expand and collapse that field . Pls , i am waiting for your reply.

    In-place drill-down is not built into Crystal but you can add such functionality if you develop your own viewer application with the Crystal runtime components.  You can see a [video demonstration|http://www.milletsoftware.com/Download/DLV_InPlace_DrillDown.wmv] of how this works in my viewer app.
    Edited by: Ido Millet on Mar 27, 2011 11:25 AM

  • Action Link in obiee 11g for a Hierarchy Drill Down Level

    Hi
    Requirement is:
    We have a Time Dimension Hierarchy with drill down Levels(Year, Qtr, Month, Day). So now i wanted to provide an action link on detailed column(day) which will navigate to other report. I have tried doing it but unable to get the actual solution.
    Can anyone throw some ideas on how to achieve this.
    Thank You

    Hi,
    Can u tell me whats the error you r getting over ther,
    Use the hierarchy flow, starts with the + symbol,
    edit the column properties and go for interaction tab and give action link + drill
    check the columns between the 2 reports and assign prompts between the reports then you can get the correct one.
    Regards,
    VG

  • Problem with drill down in time dimension - OBIEE 11G

    Hello There,
    I have a problem with drill down in time dimension. The hierarchy for time dimension is " Fiscal Year---> Fiscal Quarter---> Month(Name)--->Date". When I select a Time dimension and click results its getting opened in a Pivot table view. The problem here is, when I click the "Total" its getting drilled down to Year ---> Quarter but when I click on "+ sign next to quarter" it should drill down to month for that particular quarter for that particular year but its drilling down to month for that particular quarter for all years.
    Any suggestions are much appreciated.
    Thanks,
    Harry.

    1.) Congrats for resurrecting a year-old thread.
    2.) Your answer is here: "Check the level key of the quarter level...it should include both quarter and year columns. Since a specific quarter occurs every year, quarter column alone can't be used as the level key."

Maybe you are looking for