Individuals members hierarchy not collapsing

Hi ,
I am creating a pivot table with - Entity dimension hierarchy(in rows) and Revenue measure(in columns) .
While expanding some level of the hierarchy its expanding correctly , but while collapsing the same level , its not collapsing . However , the parent level hierarchy is showing "+" sign , on side of it .
Is it a version bug , or somthing is missing from my end .
OBIEE version - 11.1.1.6
data source (essbase) - 11.1.2.1
Thanks
sayak

Hi Sayak,
Could be browser issue, can you try with different browser?
Regards,
Dpka

Similar Messages

  • Webi report on OLAP Bex query -  Cost element Hierarchy not working Drill down

    Hello,
    We have a BO report on Bex query, Not on universe, we have a Hierarchy for Cost Element Group, and we are expecting the Drill down functionality for that in BO report, but it does not.
    Webi report on OLAP Bex query -  Cost element Hierarchy not working Drill down
    Any pointers how to do it please
    Thanks
    Krishna

    Hi,
    WebI reports on BEx source don't use same Drill feature as other sources, it's replaced by expland/collapse of hierarchy nodes (documented in WebI user guide in § "24.1 Drill defined"). This means you have to create query which selects all hierarchy sub-tree you plan on exploring later in report, otherwise if no data is available under a node there will be no '+/-' sign to visit this part of tree.
    You could try first to select "All members" from hierarchy in QueryPanel and see if behavior in report suits your needs. Then you should restrict hierarchy member selection to what's really needed to avoid performance issues.
    Regards,
    Loic

  • Shared members' properties not flowing automatically

    Hi,
    We are developing hierarchies in Drm11.1.2.2
    Wherein we have primary members and also shared members in our hierarchy to be built on ...for the properties part let's say for ex I have description-lob as a local property that inherits a global property description-input ...note:values at global properties not to be changed...hence lob ...when the members are created as primary members with their respective properties... The shared members do not inherit the properties from the primary member... How do we get inherit it automatically... Note: description-lob is a overridden property... Please help me asap with your ideas...
    Thanks

    Hello Scorp,
    I've tried to understand and here's what i understood.. The Description-LOB is a defined Inheriting or probably a Overridable derived property.  Now taking each case differently -
    Note- The Shared members will not "Inherit" the values from their primaries unless they are among its descendants and which typically doesn't make sense from an alternate structure view.
    If it is a defined property it will not reflect on the Shared member automatically, if my memory serves me right the Leaf property is the only one which is common.
    Now having said that, the only possibility is that of a overridable derived property, now for that you need to put in a condition in your formula to check for Shared members separately, Check for the Core.SharedFlag_MDM  which is True for Shared members and False for Primaries you can do something like this.
    If(PropValue(Core.SharedFlag_MDM),
    NodePropValue(PropValue(Core.PrimaryName_MDM),Custom.YourProperty),
    PropValue(Custom.YourProperty))
    Let me know if I have deviated from your question.
    Thanks
    Denzz

  • Team members are not displaying in Team Calendar

    For some employees.... Team members are not displaying in Team Calendar in Portal what would be the problem Could you please resolve this Its very urgent
    Edited by: Kumar.saphr on Aug 18, 2011 9:38 AM

    Hi Kumar,
    This could be due to the following reasons:
    1. Check whether the OADP settings are correct. It might be worth testing the evaluation path that it uses.
    2. Check whether the users have appropriate authorisations (for IT2001) and structural auths (if implemented).
    Hope it helps.
    -Akshay

  • Spry Accordion not collapsing properly in IE & Firefox

    My design portfolio is on my testing server. The accordion
    works perfect in Safari but it will not collapse in Firefox and
    Internet Explorer. Here is the link:
    http://deptart2.memphis.edu/~jwilcoxen/web_portfolio/home.php
    . Please help. I attached my spry accordion css.
    @charset "UTF-8";
    /* SpryAccordion.css - Revision: Spry Preview Release 1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights
    reserved. */
    /* This is the selector for the main Accordion container. For
    our default style,
    * we draw borders on the left, right, and bottom. The top
    border of the Accordion
    * will be rendered by the first AccordionPanelTab which
    never moves.
    * If you want to constrain the width of the Accordion
    widget, set a width on
    * the Accordion container. By default, our accordion expands
    horizontally to fill
    * up available space.
    * The name of the class ("Accordion") used in this selector
    is not necessary
    * to make the widget function. You can use any class name
    you want to style the
    * Accordion container.
    .Accordion {
    border-left: none gray;
    border-right: none black;
    border-bottom: none gray;
    overflow: auto;
    background-color: #FFFFFF;
    font-family: "Gill Sans", "Helvetica Neue", "Arial Narrow",
    sans-serif, Helvetica;
    padding: 10px;
    background-image: url(../images/glowbg_home.jpg);
    background-repeat: no-repeat;
    text-align: left;
    text-indent: 8px;
    /* This is the selector for the AccordionPanel container
    which houses the
    * panel tab and a panel content area. It doesn't render
    visually, but we
    * make sure that it has zero margin and padding.
    * The name of the class ("AccordionPanel") used in this
    selector is not necessary
    * to make the widget function. You can use any class name
    you want to style an
    * accordion panel container.
    .AccordionPanel {
    margin: 0px;
    padding: 0px;
    background-color: ##54275F;
    /* This is the selector for the AccordionPanelTab. This
    container houses
    * the title for the panel. This is also the container that
    the user clicks
    * on to open a specific panel.
    * The name of the class ("AccordionPanelTab") used in this
    selector is not necessary
    * to make the widget function. You can use any class name
    you want to style an
    * accordion panel tab container.
    .AccordionPanelTab {
    background-color: #000000;
    border-top: 1px none black;
    border-bottom: 1px none gray;
    margin: 0px;
    padding: 2px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    color: #CCCCCC;
    font-family: "Gill Sans", "Helvetica Neue", "Arial Narrow",
    sans-serif, Helvetica;
    font-size: 12px;
    font-weight: normal;
    /* This is the selector for a Panel's Content area. It's
    important to note that
    * you should never put any padding on the panel's content
    area if you plan to
    * use the Accordions panel animations. Placing a non-zero
    padding on the content
    * area can cause the accordion to abruptly grow in height
    while the panels animate.
    * Anyone who styles an Accordion *MUST* specify a height on
    the Accordion Panel
    * Content container.
    * The name of the class ("AccordionPanelContent") used in
    this selector is not necessary
    * to make the widget function. You can use any class name
    you want to style an
    * accordion panel content container.
    .AccordionPanelContent {
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    background-color: #CCCCCC;
    text-align: left;
    vertical-align: 50%;
    height: 326px;
    /* This is an example of how to change the appearance of the
    panel tab that is
    * currently open. The class "AccordionPanelOpen" is
    programatically added and removed
    * from panels as the user clicks on the tabs within the
    Accordion.
    .AccordionPanelOpen .AccordionPanelTab {
    background-color: #4F285B;
    /* This is an example of how to change the appearance of the
    panel tab as the
    * mouse hovers over it. The class "AccordionPanelTabHover"
    is programatically added
    * and removed from panel tab containers as the mouse enters
    and exits the tab container.
    .AccordionPanelTabHover {
    color: #51275D;
    .AccordionPanelOpen .AccordionPanelTabHover {
    color: #FFFFFF;
    background-color: ##54275F;
    /* This is an example of how to change the appearance of all
    the panel tabs when the
    * Accordion has focus. The "AccordionFocused" class is
    programatically added and removed
    * whenever the Accordion gains or loses keyboard focus.
    .AccordionFocused .AccordionPanelTab {
    background-color: #000000;
    /* This is an example of how to change the appearance of the
    panel tab that is
    * currently open when the Accordion has focus.
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
    background-color: ##54275F;
    height: 310px;

    Thanks Gramps, that information was really helpful.
    I just removed all instances of 'rgba' in the .css rules that specify color, changing it to 'rgb' and also removing the 4th parameter indicating the transparency value.
    Now that I understand what the problem was it actually makes complete sense, since IE does not support transparency.
    Thanks again.

  • Can I create a group in which the members are not listed?

    My organization is jumpy about revelaing "private" information (in ths case e-mail addresses) "publically." Is there a way to create a group so that the e-mais of individual members are not listed (e.g., "undisclosed recipients""

    Go to the Mail Menubar/Mail/Preferences/Composing/Addressing: Uncheck: When sending to a group, show all member addresses.

  • Dimension members were not deleted after refresh in Planning desktop

    Hi
    A Planning application's outline was restored from backup.
    It contains some dimension members which were deleted from Planning Web some weeks before and there were made many Planning refreshes after. Full database refresh had been made in Planning desktop and these members were not removed. As refreshing is a procedure to keep metadata in correspondence such result isn't expected in my opinion.
    Is it normal behavior ?

    Hi
    i had a similar problem before. here is what i did
    add the member again.
    refresh
    delete the member
    refresh again.
    this solves the relational repositories sync issue.
    hope this helps.
    Dornakal.
    www.dornakal.blogspot.com

  • In CS3 how do i keep the palletes  open not collapsed

    on the upper right side i have history actions layers styles channels side by side as my workspace. Yet the icons for each "window" is closed and i have to click on the top one to get the palletes above to open where i can have them all at my disposal.I cant see where the option is to KEEP them OPEN not collapsed. Please offer me some help here!
    thanks
    gl

    Hit the icon to open the palette. Grab it by the gray bar at the top of the palette and yank it loose.
    J

  • Collapsible panel not collapsing properly

    When I insert a background-color different from none here, in
    the SpryCollapsiblePanel.css,
    .CollapsiblePanel {
    margin: 0px;
    padding: 0px;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: none;
    background-color:
    none;
    and use it on a page, the panel background-color is correct
    when the panel is opened.
    However, when the panel is closed again, the area with the
    panel background-color does not collapse but remains as a
    background-color in the area under the tab, replacing the general
    background-color of the page, thus also forming the
    background-color of any unrelated text below the panel.
    How to avoid that?

    That's exactly what I'm talking about... the page is
    completely messed up. Thanks for looking.
    However I think I discovered my problem. I had the widget
    inside ul tags which seemed to make it disappear in IE. I'm
    experimenting now and seem to be finding a solution by moving the
    list items around. I'd say I have a solution.

  • Profit Center Hierarchy Error - profit center hierarchy not defined

    in Quality client QA
    0ke5, the configuration settings is not transfered from DEV through transport request.
    now i have created the Profit Center Hierarchy and started process testing. Now i try to assign the hierarchy in 0ke5, error message standard hierarchy not defined in controlling area XXX.
    I also try to define the Dummy Profit Center KE59, but error comes profit center hierarchy not defined.
    also note that 0ke5 and 1kef are blank.

    try to re-transport PCA
    IMG; CO--> PCA --> tools --> transaport customizing set. -->
    but i believe if you transport only the "master data" Q will function fine. ( try OKEQ first)

  • Sap.m.Panel is not collapsing

    Hi Folks,
    sap.m.Lable is not collapsing at all. Tried "expandable" and "expanded" property too.But when I try sap.ui.commons.Panel it works well.
    Any idea experts?
    Note:
    I am using SAPUI5 Toolkit 1.20
    Regards,
    Rauf

    Hi Rauf
    it should work with "expandable" like this.
    Do you see any errors in the console (if you are on Chrome)?
    -D

  • Input Planning data on hierarchy notes

    Hi Expert,
    On our BI project, The user want to input the values on hierarchy node (administration and sales node).
    Example:
    1. Cost center accounting hierarchy
         2. Administration
                 Cost Center 1
                 CC 2
         3. Sales
                 CC3
                 CC4
    i try to create structure admins and sales after that inside the admins and sales, i restricted the hierarchy node. But it's not working. Please give the advise how to do it....because only that ways the user want to do their CCA planning.
    THanks in advance.
    Siandari

    Yes - this is possible. In order to do this in Hyperion Planning, your version must be setup as a "Target" version, and not a "Bottom-up" Version.
    If you don't want to use a "target" version, designers will sometimes create "proxy" members that represent an upper-level member in a hierarchy (but are actually level 0). These can be used to hold amounts to be allocated. The benefit of this approach is that the amount to be allocated doesn't actually get overwritten with the results of the allocation. This can make testing and validations easier. With that said, these proxy members can be difficult to manage, especially if you need to allocate from many upper-level points in a hierarchy.
    Hope this helps,
    - Jake

  • Default hierarchy not getting selected in the GOTO report.

    Hi friends,
                 I am facing a weird problem in a jump query(GoTo query). I am giving an input for the main query. The input values are week and Organization(it is a hierarchy). I am executing the report and after that i am going into the jump query through the main query.
    In the GoTo Query, when i right click on the Organization -> properties -> Chacteristics -> i could find that the hierarchy is not getting selected by default. I need to go and select from the dropdown manually.
    If i execute the same GOTO report directly without going through main query, I am able to see the default hierarchy. I would like to see the same in my first case as well(i.e when i run the query through the Main Query).
    Can somebody help me in achieving this.
    Thank you
    Sunil

    @ is a default value as per ALV internal process. This is used in icons .
    I think this is causing the confusion.
    Check in the fieldcat if there is any adjsutment to be made to handle this.
    Br,
    Vijay

  • Hierarchy not getting displayed

    Hi,
    I have changed the hierarchy by manual update i.e i have added a node to the hierarchy .
    And after that i have saved and activated the hierarchy .
    It was giving an error saying "Number of nodes in the node is more than the hiearchy ".
    The solution was given to "Supress the Inassigned Nodes".
    Now , i have did the same .But , still the values are not appearing when i am displaying in the reports.
    I.e i am selecting in the input screen where i have created a hierarchy variable.
    But , when i want to select the hierarchy in the report by F4 , i am not able to see the node which i newly inserted.Though , i am seeing in the rsa1 .
    Please help me with this.
    Regards,
    Balaji Raj

    We got the sloution for this:
    We need to make the hierarchy setting and tick the check entry box in top down planning layout. Then this is automatically taken care of.
    Regards
    Sirisha.

  • Hierarchy not getting displayed in BPS top down planning

    HI
    As per our business requirement we have enhanced planning levels 4MP70000 and 4MP80000 to make it as planning function for four quarters. This is working fine as expected but we are facing issues in hierarchy. When implemented from CRM side we are seeing them as indpendent structures and not as hierarchies. Also the constraint that the sum of child node amounts should not exceed the parent node is not getting implemented. We used the hierarchy variable 4MKTHI01.
    Please guide us what could be the issue and any help on this is greatly appreciated.
    Thanks.

    We got the sloution for this:
    We need to make the hierarchy setting and tick the check entry box in top down planning layout. Then this is automatically taken care of.
    Regards
    Sirisha.

Maybe you are looking for

  • How to find out the size of a file?

    Hi, I would like to determine the size of a file from my code. How is that possible? I do not find any appropriate method in the java.io.File class. Any help would be very appreciated!

  • Problem with Transporting packages

    Friends I am just trying to learn the basic export and import of packages from one server to another. I have created a very simple package with a simple program (SE38 Program). I noted down the request number. I then went to transaction code SE09 and

  • Need help with inventory program!!! someone please help me!!!

    Ok I have to write this inventory program for one of my classes. For part one i needed to Create a product class that holds the item number, the name of product, the number of units in stock, and the price of each unit. Then create a java application

  • Hello, I'm having trouble with my ipod

    hello, I'm having trouble with my ipod

  • Why do I get a lined pattern when casting shadows with a Point light?

    Hello, For some reason I am getting a weird lined pattern on my composition. It only happens when using a Point light with Cast Shadows on (see image below.) It's almost a wood effect and not one I particularly want. I have found that altering the sh