Drill Down and Drill UP on Web Analysis Report

Hi all,
I have a question regarding Drill down and Drill up on Web Analysis Report.
The situation is the following:
I've created a report with some account parent elements in row. The dimension account has a multiple hierarchy.
I need to drill down on the child of these elements keeping the parente on top and so i've selected the option "Selected Member First".
The drill down it's ok for the first drill to go on the next level but when i drill down once more to go on the next level of the selected member hierarchy the drill move this level out hierarchy.
Can someone help me on this point?
After that i've drilled just to the last level when i drill up on these elements to return on the previous level i note that in the report happens a strange thing:
The Drill Up works fine but on the report appears another elements which is the same parent with anothe code/alias of another hierarchy instead of the Selected member.
On this i've noted tha this 2 different parente have the same elements...I think that the children of the selected memeber can be shared members....Can be this the problem?
Thanks for the help.
Best Regards
Eugenio Gualtieri

Hi John,
thanks for your answer.
I've trayed to set the report on Smart View to virify tou test your advise.
The situatio is the following:
IS05101010-PUBBLICITA'
702000 - VEND. DI SPAZIO PUBBLICITARIO
702010 - RETTIFICHE VENDITE SPAZIO PUBBLICITARIO     
W10004 - RICAVI PUBBL ICITA' ATTIVA (Q.EDIT) INTE     
W10007 - RICAVI DA SPAZIO PUBBL. INTERASA     
W10029 - RETTIFICA RICAVI PUBBL. INTERASA     
ED05101010-PUBBLICITA'
702000 - VEND. DI SPAZIO PUBBLICITARIO
702010 - RETTIFICHE VENDITE SPAZIO PUBBLICITARIO     
W10004 - RICAVI PUBBL ICITA' ATTIVA (Q.EDIT) INTE     
W10007 - RICAVI DA SPAZIO PUBBL. INTERASA     
W10029 - RETTIFICA RICAVI PUBBL. INTERASA     
If I take only one parent member the drill up works fine but if i take all 2 memeber as above and i decide to drill up on one of the two element occur that the drill work for the two elements at the same time.
Afetr the drill in this case the situation is:
IS05101010-PUBBLICITA'
ED05101010-PUBBLICITA'
Can be a problem due to shared memebers?
Thanks for your help.
Regards
Eugenio Gualtieri

Similar Messages

  • Drill down and Drill up

    hi,
      I need to explain to a team, how drill down works. I mean, what are all the properties that I should set for an infoobject to do drill down and drill up on it.
      also, the purpose of hierarchies is drill down? I didnt understand.
    thanks.

    The drilldown and drillup feature is set and achieved in the report by designing in the query designer.
    In the Query Designer if you push a characteristic in "Free Characteristic" then details for this characteristic won't appear in the report.To see the details for these characteristic you have to drill down the original report.
    For Example you have 2 characteristic 0CUSTOMER,0CALDAY and you are displaying KFs "No of Orders" and "Order Value".
    Now if you have both characteristic in the ROWS section in the query designer the report will show Customerwise Daywise Total Order and Sum of Order values.
    Push the 0CALDAY to Free Characteristic.Now you will see only Customer wise No of orders and Value.Right Click you will find an option to drilldown to 0CALDAY and when you select you will be able to see Customerwise Daywise details.
    Hierarchies by default shows the first node and you can drill down to its children.
    Navigational Attribute behaves as a characteristic in the infocube with which you will be able to restriction as well as drill down/up.
    Regs
    Gopi
    Assign points if it helps ....
    Message was edited by: Gopi

  • Selecting Member Name and also Alias in Web Analysis report

    I have made a web analysis report and now i want to show member names as well as alias of the members which i have selected on row side. How can i do that?
    Thanks in advance.

    in the member properties, you have an option to show alias, member name, or both. Click on both / alias as per the requirement

  • Web Intelligate Summer Report drill down and drill up problem

    I use summary table and @aggreage_aware function to design a universy.  I want WI report shows highest level summary table data first, then drill down to next high summary table data.  But when I drill up back,  it still shows be next high summary table data.  I don't use the report to do any calculations.  I just want it shows different level data.
    Detail:
    I have three tables:
    1.  Month_Data table:  - Base fact data table.
    Year
    Quarter
    Month
    Department ID
    Supplier ID
    Score          -- Measure type
    2.  Quarter_Data table: - High level summary table.
    Year
    Quarter
    Department ID
    Supplier ID
    Score          -- Measure type
    3.  Year_Data table:  - Highest level summary table.
    Year
    Department ID
    Supplier ID
    Score          -- Measure type
    I like to create a web intelligence report that shows data from year_data table:
    Year          Score
    2008          105
    2007          99
    2006          90
    If I drill one level down, It will show data from quarter_data table:
    Year (example 2007)
    Quarter1     Score
    Quarter2     Score
    Quarter3     Score
    Quarter4     Score
    If two level drill down, it will show data from month_data table:
    Quarter1
         Month1          Score
         Month2          Score
         u2026
         Month12                     Score.
    No calculation needed on the report.
    I will use follow steps to create a universe:
    1.  Three tables will be three classes.  The classes order is:
         Year_Data class;  Quarter_Data class; Month_Data class.
    2.  When I create universe, I join:
    Year_Data  class to   Quarter_data class:
    Year to year                 1 to n               
    Department ID to Department ID          1 to n
    Supplier ID to Supplier ID          1 to n
    Quarter_Data class to Month_Data class:
    Year to Year               1 to n
    Quarter to quarter               1 to n
    Department ID to Department ID          1 to n
    Supplier ID to Supplier ID          1 to n
    3.  Create a filter class with object Department ID and supplier ID.
    4.  I create two aggregate aware classes:
    Agg_dimension class:
         Year:    aggregate_aware(year_data.year, quarter_data.year, month_data.year)
         quarter: aggregate_aware(quarter_data.quarter, month_data.quarter)
         Month:     aggregate_aware(month_data.month); 
    Agg_Measure class:
         Score: aggregate_aware(year_data.score, quarter_data.score, month_data.score)
    5.  I may re-define year, quarter, month and score as aggregate_aware function for objects in all classes:
         Year:     aggregate_aware(year_data.year, quarter_data.year, month_data.year)
         quarter: aggregate_aware(quarter_data.quarter, month_data.quarter)
         Month:     aggregate_aware(month_data.month); 
         Score:   aggregate_aware(year_data.score, quarter_data.score, month_data.score)
    6.  create user hierarchies: 
    agg_dimension.Year
    agg_dimension.quarter
    agg_dimension.month 
    7.  Figure out Aggregate Navigation  -- it is easy.
    Then create a report.  I put follow objects on report:
    Agg_dimension.year          agg_measure.score
    When I run report, it shows right data:
    Year_data.year          Year_data.score
    On the report. I drill down on year, it shows right data.
    Quarter_data.Year:
    Quarter_data.quarter1                quarter_data.score
    Quarter_data.quarter2                quarter_data.score
    Quarter_data.quarter3                quarter_data.score
    Quarter_data.quarter4                quarter_data.score
    But when drill it up back on quarter, it shows:
    Quarter_data.year     quarter_data.score1
    Quarter_data.year     quarter_data.score2
    Quarter_data.year     quarter_data.score3
    Quarter_data.year     quarter_data.score4
    Not
    Agg_data.year          agg_data.score.
    It has drill up back problem on my report.
    Please help.
    Thanks
    Frank Han

    and keyfigures are coming frm 2lis_03_bf..But when i drill down on purchase organization, purchase grou , vwndor account group and planning group then # is coming instead of value....i dont the reason for this..
    Did you chk if you have vendor, purchase org, all this coming from 2LIS_03_BF??
    Can you chk in listcube transaction what is the output by putting the same restrictions as in the query?
    Edited by: mansi dandavate on Jul 10, 2009 11:37 AM

  • Disable Drill options only for one dimension of  Web Analysis report

    Hi,
    Please help me on below issue.
    I created a web analysis report with 3 dimensions Accounts, MRC and Measure. I have to disable drill down and drill up options only for Measure. Accounts and MRC should be drillable where as Measure should show the selected member as static and not drillable.
    Thanks

    Hi Swetha,
    You must've realized that- Even if you select only the desired members, you end up being able to drill-down unwanted members. Correct ? :)
    The only way, I believe, is- To create a users' group at your Data source side, perhaps, Essbase & provision this new group with a Metaread filter which prevents him/her from Drilling down to the leaf node.
    PS: Giving Read access might also let the user not see the data for children. But, if you want to hide the members also, Metaread+ is the way to go.

  • Web Analysis reports based on Planning application

    All,
    I have migrated planning application from dev to prod using LCM, planning version 11.1.1.2. everything has been migrated and working fine.
    Web Analysis reports, and Database connections are also migrated from DEV to PROD.
    User has uploaded some PLAN data for FY10 through smartview on PROD server, but unable to see the data using Database connection migrated from DEVL but he can see the data when he creates new database connection on PROD.
    both database connections are from same database but he cannot see any new data uploaded through smartview with old database connection and he have tons of reports based on old database connection.
    can I change database connection for old reports with new database connection or do I need to fix something on my planning side.
    Please provide some suggestions. I can give more info if required.
    Thanks
    Ravi S

    Hi,
    LCM will have created xml exports with the database connection information in them.
    If you open one of the xml database connection exports you will see something like
    <server-name>localhost</server-name>
    <application-name>PLANSAMP</application-name>
    <database-name>Consol</database-name>
    You would need to update the information such as the servername in the files then import them in again using LCM.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Difference between drill down and filter using navigation attributes?

    hi all,
    can anyone let me know the difference between filter and drilldown options using navigational attributes. pls explain with examples for filter and drill down and how it varies.
    thanxs
    haritha

    Jst to add up with an example :
    Say you have a cost center variance analysis report with cost elements in the filter. ( not present in the default report result )
    Filter - You can right click on a particular cost center & say " Keep Filter Value " - it will result in only showing that cost center & you can wish to select other filter value doing " Select Filter Value ".
    Drill Down - If u wish to see the cost elements associated with cost centers you can right click on Cost Center & do " Drill Down To - Cost Element " or Drill Across.

  • Drill Down In Excel like in web

    Hi Friends
    Can we have drill down facility in input scheule in Excel like wise in Web?
    For Eg:
    If i have 3 levels:
    Initially Input schedule (Excel) need to display 1st level items next i click then need to drill down and final
    base members will be in 3rd level.
    I could do this in WEB.
    Ex:
    Other Income
       Duty drawback benefit
       Sale of scrap
       Lease rentals
       Miscellaneous income
    Cost of Sales
       Raw materials and components consumed
       Traded goods
       Stores and Packing materials consumed
    Initially i need to display
    Other Income
    Cost of Sales
    once i click other income need to drill down and display base members then i give input & save
    Rgds
    Srinath

    Hi,
    In 7.5 you can do as follows :
    Workbook Options>Drill Down Options>select Expand by Inserting new rows.
    By double clicking on cell we can Expand or Collaps
    In 10 , Its auto no need to set any options. Just double click will do.
    Hope it helps...
    regards,
    Raju

  • Is it possible to implement the drill down and navigate reorts in narrative

    any body pse help me to find 'is it possible to implement the drill down and navigate reports in narrative view'

    Hi user12255470,
    Go URLs are a way to directly call an Answer Request or Dashboard Page via a URL. In addition, you can even pass parameters in the URL as filters. GO URLs are used will you want to allow a user to drill into detail by clicking on a static text. It also allows other tools to drill into OBIEE.
    Here's an example GO URL: http://LOCALHOST:9704/analytics/saw.dll?Go&Path=/users/administrator/OTN Tests/Page Test&Style=oracle10&Format=PDF
    I'll break down each piece
    LOCALHOST: This is the URL for your OBIEE web host
    :9704: This is the typical port for OBIEE installs (sometimes 7777)
    ?Go: This is where the it's gets the name "GO URL". It's the GO command.
    &Path= : This is the full path of the report. In my case, it's in the administrator folder in a sub folder called OTN Test. The report itself is called Page Test.
    &Style=: This sets the style, or the look and feel, on how the report is presented. The default is oracle10.
    &Format=: You can set this to default the presentation. I set it to PDf so that a PDF will generated.
    Good luck and if you found this post useful, please award points!
    Best regards!
    -Joe

  • How to remove the sort function on the drill down and then save

    how to remove the sort function on the drill down and then save in the  change local view of the Query
    Is it possible to change the porperties of any characteristic in the local view and then save?
    If so please post the answer.

    I do not think that option is possible.
    Regards,
    Venkata Boga.

  • Disable Save and Save As in Web Analysis

    I have some standard Web Analysis reports that I want to share amongst users. I've created a common folder in Workspace and saved the reports (each is just a simple grid) to the folder.
    If my users are provisioned as Viewers they can drill up and down on the grid but not navigate the dimensions (no pivoting).
    But, and this is the question, how do I stop Web Analysis from prompting them to save the report if they have drilled down? If the user does click on Save the file is not saved. The same goes for Save As -- the user can type anything he likes -- regardless of location (personal folder or originating folder) or name (same value or a different one) the file is not saved.
    Thanks,
    Cameron Lackpour
    Edited by: CL on Oct 3, 2008 10:50 AM
    Whoops, I forgot to add that this is Web Analysis 9.3.1

    Iain,
    Thank you for your answer -- that did the trick.
    Bizarrely (I use that word a lot wrt Web Analysis), I cannot see this setting for Viewer provisioned users but I can for users provisioned as Analysts/Report Designers. In my case that's fine as I need to move users to that level of provisioning to allow them to swap dimensions and save the reports to their custom folders when desired.
    Thanks again.
    Regards,
    Cameron Lackpour
    P.S. Yes, having each user change it manually/separately is a pain but that can be addressed in training.

  • How to Hide/show the columns data while doing Drill down or drill up

    Hi ,
    How to Hide/show the columns data while doing Drill down or drill up in webi report .
    Does it possible BO 3.1 version ?
    Please suggest me on this.
    Thanks & Regards
    Venkat

    While that is not there yet, you can make use of the show when empty yes/no in combination with alerters.
    So I have an alerter applied to every cell of the table.
    When a condition is true (say I drilled down) I just put = "" in every cell, emptying the table,
    because its now empty and doesn't need to show, it wont.
    For the detail table I use the opposite, so when you drilled down it becomes visible...
    Hope this helps all that do not have 40 yet
    Good luck,
    Marianne

  • POV and User POV in Web Analysis 9.3

    Hi,
    I am a bit confused with POV and User POV in Web Analysis 9.3.1. I have a few web analysis dashboard to be used by several different groups of users. I use the admin to go in and for each of the report, I set whether need to use User POV (in data layout option) and/or use POV (the POV is activated in the database connection).
    However, I use the other user id (no the admin) to login and go to each of the dashboard, such settings of using User POV and/or POV are not valid. I wonder which setting I can set so that all the user will inherit the POVs setting from the default one.
    Since I have too many users, I can not use each user id and password to do such settings individually.
    Any recommendations? Thanks in advance.

    If your chart's selections and therefore it's colors are basically static, try creating the legend by hand.
    Our users requested that the Legends be different than what we could get it to display so I turned off the Legend and created my own. Since the colors on my graph don't change I was able to hard-code the legend. Place a new, small panel inside your chart where you want the Legend to be. Then create colored squares using MS Paint (fill a square then Colors | Edit Colors to specify the exact RGB) that match the colors of each bar/pie slice and insert them as Images on the panel. Re-size so they're small. Then create a text box next to each color for your Legend text.
    Then enable a Line Border on the panel & that should do it. Right click on your chart and choose Send To Back so the Legend is on top.
    My legend is in a panel beneath the chart (not inside it) but the above steps should work for what you need.
    Be sure when you view this on whatever your standard resolution is such as 1024 X 768 that the legend & titles appear where you want them, otherwise move things around until it's satisfactory.
    Good Luck,
    Karen Smejkal

  • Migrating HFR and Web Analysis Reports and Documents

    Dear All,
    Is there any way I can migrate HFR and Web Analysis Reports and Documents from test environments to production instead of re-creating reports?
    Thanks,
    ioGGo.

    For HFR reports,
    - If you want to do a bulk export, then choose File->Export & select multiple reports & save to a .zip file when prompted. In this case, reports' folder hierarchy is maintained the same as in source.
    - If you want to do a selective export, select the folder(where your report is present) from the (left)navigation pane. Then choose File->Export, select the report & save to a .des file when prompted.
    For WAS reports,
    you may export each report definition from File -> Export. I believe- it'd let you save as .apt file.
    However, for both type of reports, you need to ensure the respective database connection file(s) are already present before you import the reports/documents in your prod. environment.
    - Natesh

  • Issue while opening the web analysis reports

    Hi,
    One of our user is not able to open a web analysis report with an error messages saying
    "Java.Lang.Exception: Unexpected HTTP status code of 500 received from server"
    "Document does not exist or no authorization to open the document"
    Other users with the same level of access are able to open the report fine and also the same user is able to access the report fine with a test id from his machine.
    What could be wrong? Any suggestions please.
    The only thing I see here, something wrong with userd ID or password.
    Thanks
    Prasad

    Hi,
    I had also faced this problem earlier. I was using HFM as data source for WA reports. After searching I found that there was some change at HFM level. Some dimensions/members had been deleted or added in HFM. And I was using those missing members in WA Grid.
    I had to recreate my reports again as I didn't get any other way to deal with this problem.
    Please shared any other alternative option, if you found while working on this issue.
    Thanks & Regards,
    Mohit Jain

Maybe you are looking for