Expand Hierarchy

Hi all,
I have a question regarding to the web template. From the context menu, there is a function called "Expand Hierarchy". Under that it shows Level of Hierarchy, for example Level 01 - Level 05. Can we have the actual description instead of showing the level only? Our users feel it is so tough to dig into it and find what level they need to find.
Thanks,
Kev

The only way I see of doing that is by doing a system mod (either update the javascript function that creates the context menus or update the ABAPOO class). You may be able to create a copy of the ContextMenu javacsript function from the MIME and overlay that function. Due to scope, the local javascript in your web template will be used as a substitute to the global javascript in the MIME.

Similar Messages

  • How to display an expanded hierarchy in report?

    Hi,
    i'm working with BI 7.0. How do I display a completly expanded Hierarchy in my report. At present I see the hierarchy but the nodes need to be manually expanded in the report.
    pls help,
    SD

    In Query designer under properties of your characteristics there is a separate tab called "hierarchy"; only If hierarchy is active for your characteristic you can change the properties for the hierarchy. If not you will see a message like "no avalaible hierarchy for this characteristics".
    If it is active it will be changeable. For autoopen your hierarchy you should select the point "expand till step" and define here till which step you want autoopen your hierarchy.
    Regards
    Engin

  • Auto Expand Hierarchy

    Hi gurus,
    Is there any solution how to auto expand hierarchy in OBIEE 11G?So i do not have to click plus(+) sign one by one manually.
    Thanks
    Joni

    I don't think its possible here...
    Option available are just for "Collapse all items in this column" and "Collapse all items on this page". Expand(+) will just expand the next level...

  • OBIEE 11g after expand Hierarchy Columns move the page to where the expand was clicked

    Hi,
    I have a question about expanding the hierarchy columns.
    I have made so that some information are only show when press the + sign to expand extra information.
    The problem I am having is that when the + sign is pressed to expand the content, the whole page get refresh and move back to the top of the page.
    Is there a way to stay where the screen was after expanding, instead of going back to the top of page?
    Thanks in advance.

    Hi Niraj,
    I think you are on 11.1.1.5 + version here. Now, that you have two security realms configured (one for AD and one default), please add one more parameter virtualize = true in the EM (just the page where you added user.name etc).
    This parameter would help BI Server recognize the two realms set up here.
    Hope this helps.
    Thank you,
    Dhar

  • Exception Aggregation is not working while Expanding hierarchy increases the total count

    Hi All ,
    I am working on Headcount report. I need to count the Employee based on the National Insurance no of a Employee so that the Employee will be count only once.
    On query execution query gives a correct result. After expanding the Org. Unit Hierarchy it will show a different result and more than that before expanding in the count column. Attachment is there for reference.
    Regards
    Arvind

    You need to close your resultSets, Statements and Connections before exiting the jsp. That is probably why you are experiencing this problem.

  • How to expand hierarchy at one shot in WAD.

    HI gurus
    I have a hierarchy  in WAD with 10 nodes.To expand I have to click each note which takes some time to expand .The user wants to expand all node in one click. Is there any way to incorporate in WAD .
    Thanks
    Rgds
    Pradeep

    Hi Pradeep,
    If you see the context menu of the characteristic (Right click on the column in report) after executing the query, you will see "Expand to Level", select the level you want and whole hierarchy will be expanded to that level. If you want to expand any particular node of hierarchy to a level, I think this is not possible. 
    Regards,
    Kams

  • Default expanded hierarchy in OBIEE

    Hi,
    I have designed product hierarchy. It's working as desired. Product Category is at first level with a drill down symbol (+). When I click on that '+', it drills down to Product Subcategory. Similarly I can navigate to products by clicking '+' symbol further. Now I have a requirement where in I have to show all levels opened at a time, so that end user can see detailed data first, then they can drill up to required level.
    Thanks,

    Hi Welcome,
    Please refer the following links, Here step by step with screen shots.
    https://blogs.oracle.com/robreynolds/entry/obiee_11g_new_feature_-_hierar
    http://www.rittmanmead.com/2010/08/oracle-bi-ee-11g-parent-child-hierarchies-differing-aggregations/
    http://sandybi.wordpress.com/2010/08/17/hierarchies-in-obiee-11g-part-1/
    Award Points it is useful.
    Thanks,
    Satya

  • Fix the Expanded Hierarchy!

    I have my main page hierarchies that have sub categories in them. One of those has over 74 different pages. When I expand it, not only does it take FOREVER (imo, more like 3 seconds on the top of the line macbook pro with Retina), its weird to have to scroll left and right so far to collapse it and or move about. Plus it expanded off the background into a gray space. Having a way to collapse sections of it or some fix would help me greatly.

    Going to revive this thread as it seems that these errors are not all resolved, perhaps some new features that caused new errors are happening.  For a few months I actually had a hard time and couldn't view posts.  Not sure if anyone else seems to be having the same issue or had the same issue.  The last few days, I have been able to view posts again - though getting errors in profile page.

  • BPS variable type EXIT to expand hierarchy

    Hello,
    Any idea how I can get all elements under a particular node (chosen by the user through a variable) of a hierarchy using a Function module in BPS?
    I have been trying to do this using Function 'RSSH_HIERARCHY_READ' with the following code and parameters (see below)
    Could anyone tell me how to proceed next?
    Thanks in advance
    Points will be assigned
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(I_TYPE) TYPE  UPC_Y_VAR_TYPE
    *"     REFERENCE(I_AREA) TYPE  UPC_Y_AREA
    *"     REFERENCE(I_VARIABLE) TYPE  UPC_Y_VARIABLE
    *"     REFERENCE(IS_HIE_KEY) TYPE  UPC_YS_HIE_KEY
    *"  EXPORTING
    *"     REFERENCE(ET_HIE_NODES) TYPE  UPC_YT_HIESEL
      DATA: BEGIN OF wa_val,
              from TYPE rsleaffrom,
              to   TYPE rsleafto,
            END OF wa_val,
            wa_hierdir    TYPE rshi_s_hiedir,
            wa_hiedirkey  TYPE rshi_s_rshiedirkey,
            wt            LIKE wa_hiedirkey OCCURS 0 WITH HEADER LINE,
            ls_hie_nodes  TYPE upc_ys_hiesel,
            tb_node_val   TYPE rshi_t_hienode,
            tt            LIKE LINE OF tb_node_val,
            tb_interval   TYPE rshi_th_interval.
      SELECT SINGLE hieid objvers FROM /bic/hystopid
             INTO wa_hiedirkey
             WHERE nodename = '00001'.
      CALL FUNCTION 'RSSH_HIERARCHY_READ'
        EXPORTING
          i_rshiedirkey     = wa_hiedirkey
          i_date            = sy-datum
        IMPORTING
          e_rshiedir        = wa_hierdir
          e_t_rsnodes       = tb_node_val
          e_th_rsinterval   = tb_interval
        EXCEPTIONS
          invalid_hierarchy = 1
          name_error        = 2
          iobj_not_found    = 3
          OTHERS            = 4.

    Hi Nicolas,
    It looks like you are trying to program an exit for a hierarchy variable. In there you don't need to return all nodes down to the  leaves. You have to return only the top node(s) that should be selectable.
    Anyway, if you want to read another BPS hiearchy variable, then use the following code:
    FUNCTION z_variable_get_detail_hier.
    *"*"Local interface:
    *"  IMPORTING
    *"     REFERENCE(I_AREA) TYPE  UPC_VAR-AREA
    *"     REFERENCE(I_VARIABLE) TYPE  UPC_VAR-VAR
    *"     REFERENCE(I_BUFFER) TYPE  BOOLE-BOOLE OPTIONAL
    *"  EXPORTING
    *"     REFERENCE(E_SUBRC) TYPE  SY-SUBRC
    *"     REFERENCE(ES_RETURN) TYPE  BAPIRET2
    *"     REFERENCE(E_TYPE) TYPE  UPC_VAR-VARTYPE
    *"     VALUE(ET_HIESEL_ALL) TYPE  UPC_YT_HIESEL
    *"     VALUE(ET_HIESEL) TYPE  UPC_YT_HIESEL
    *"     VALUE(ETO_CHANM) TYPE  UPC_YTO_CHA
      STATICS:
        p_subrc        LIKE sy-subrc,
        ps_return      LIKE bapiret2,
        p_type         LIKE upc_var-vartype,
        pt_hiesel_all  TYPE upc_yt_hiesel,
        pt_hiesel      TYPE upc_yt_hiesel,
        pto_chanm      TYPE upc_yto_cha,
        p_variable     TYPE upc_var-var,
        p_area         TYPE upc_y_area,
        p_first_read   LIKE boole-boole VALUE 'X'.
      DATA:
        lr_variable TYPE REF TO cl_sem_variable.
    * We can't read the values from the buffer if ...
    * - it is the first read
    * - the buffer flag is initial
    * - the stored area or varname differ from imported values.
      IF NOT i_buffer IS INITIAL
        AND p_first_read IS INITIAL
        AND p_area = i_area
        AND p_variable = i_variable.
        e_subrc        = p_subrc.
        es_return      = ps_return.
        et_hiesel_all  = pt_hiesel_all.
        et_hiesel      = pt_hiesel.
        eto_chanm      = pto_chanm.
      ELSE.
    * clear all exporing tables of type reference
        CLEAR: eto_chanm, et_hiesel_all, et_hiesel.
        CALL METHOD cl_sem_variable=>get_instance
          EXPORTING
            i_area       = i_area
            i_variable   = i_variable
          RECEIVING
            rr_variable  = lr_variable
          EXCEPTIONS
            not_existing = 1
            OTHERS       = 2.
        IF sy-subrc <> 0.
          e_subrc = 4.
          CALL FUNCTION 'BALW_BAPIRETURN_GET2'
            EXPORTING
              type   = sy-msgty
              cl     = sy-msgid
              number = sy-msgno
              par1   = sy-msgv1
              par2   = sy-msgv2
              par3   = sy-msgv3
              par4   = sy-msgv4
            IMPORTING
              return = es_return.
          EXIT.
        ENDIF.
    * read details of variable
        CALL METHOD lr_variable->get_attributes
          IMPORTING
            e_type    = e_type
            eto_chanm = eto_chanm.
    * read restricted values
        CALL METHOD lr_variable->get_hie_nodes
          EXPORTING
            i_user     = sy-uname
            i_restrict = 'X'
          RECEIVING
            rt_value   = et_hiesel
          EXCEPTIONS
            error      = 1
            OTHERS     = 2.
        IF sy-subrc <> 0.
          e_subrc = 4.
          CALL FUNCTION 'BALW_BAPIRETURN_GET2'
            EXPORTING
              type   = sy-msgty
              cl     = sy-msgid
              number = sy-msgno
              par1   = sy-msgv1
              par2   = sy-msgv2
              par3   = sy-msgv3
              par4   = sy-msgv4
            IMPORTING
              return = es_return.
          EXIT.
        ENDIF.
    * read all values
        CALL METHOD lr_variable->get_hie_nodes
          EXPORTING
            i_user     = sy-uname
            i_restrict = ' '
          RECEIVING
            rt_value   = et_hiesel_all
          EXCEPTIONS
            error      = 1
            OTHERS     = 2.
        IF sy-subrc <> 0.
          e_subrc = 4.
          CALL FUNCTION 'BALW_BAPIRETURN_GET2'
            EXPORTING
              type   = sy-msgty
              cl     = sy-msgid
              number = sy-msgno
              par1   = sy-msgv1
              par2   = sy-msgv2
              par3   = sy-msgv3
              par4   = sy-msgv4
            IMPORTING
              return = es_return.
          EXIT.
        ENDIF.
    * -- no error occured => store results to buffer
        CLEAR p_first_read.
        p_area         = i_area.
        p_variable     = i_variable.
        p_subrc        = e_subrc.
        ps_return      = es_return.
        pt_hiesel_all  = et_hiesel_all.
        pt_hiesel      = et_hiesel.
        pto_chanm      = eto_chanm.
      ENDIF.
    ENDFUNCTION.
    Regards,
    Marc
    SAP NetWeaver RIG

  • Expand Hierarchy Items

    Greetings...fellow matez,
      I have a Structure which consists' of several <b>selections</b>. This Selections then restrict a Characteristic "0Account". Now, the restriction of Characteristic "0Account" is made up of <b>groupings</b> of several hierarchy nodes.
      Now, I would like to have my <b>Reports to list the items</b> in the restricted "hierarchy selection" instead of just the Total Values.
      Allow me to explain by an example.
      I have made a <b>Selection</b> "Market Development and Promotion". This consists of two nodes which I select from my Hierarchy restriction of 0ACCOUNT
      Now, when I run my BEx report, I only see a one liner which sums two nodes restricted earlier to represent my "Market Development and Promotion" cost....which is perfectly Okay!
      But, what I now need is the ability to drilldown to the two individual nodes from my BEx report.
      Please advice!
      P/S: Remember that this is <b>Hierarchy Selection</b>

    Eugene mate,
      "  <i>Note, that you didn’t specify any hierarchies, you just use some accounts which are also included into hierarchies.</i> "
    <b>  In my query, I am using hierarchies to restrict my selections!</b>
       Let me explain my scenario, once again.
       I have made a STRUCTURE called 'Group Financial Performance(Operating Cost).
      This STRUCTURE contains 9 SELECTIONS and 2 FORMULA'S.
      Lets take one of the SELECTION called "MANPOWER COSTS"
      Once again, in my 'EDIT SELECTION' box here, I used the Hierarchy 'Profit & Loss' on <b>InfoObject 0ACCOUNT</b>. I restricted my <b>InfoObject 0ACCOUNT</b>with one item from my Hierarchy on the Left to the 'Selection' on the right. Here I dragged the item hierarchy (CABMSTAFFCOST)
      So now, if I execute my query I get the results displayed as following :-
    MANPOWER COST(in my Row)
    Current Month - xxx (in my Columns)
    Previous Month - xxx
    Current YTD    - xxx
    Budget YTD     - xxx
    Now, in my SAP R/3 under Display Cost Element Group, I get to see the accounts that make up this MANPOWER COST of my Hierarchy 'Profit & Loss'
    Such as MANPOWER COST contains the following accounts :-
    PAYROLL ALOWANCES
    BONUS & EX-GRATIA
    MEDICAL
    INSURANCE
    RETIREMENT BENEFIT
    STAFF BENEFIT
    I NEED TO DISPLAY THESE BREAKDOWN OF MANPOWER COST HIERARCHY in my SAP BW BEX Report.

  • Design Studio : How can I expand all hierarchy at once in dimension filter

    Dear Colleagues.
    I am currently working on design studio. I need your advises to implement BW hierarchies in my dashboard.
    Is it possible to expand all hierarchy in Dimension Filter of Design Studio?
    I tried to expand hierarchy in data source api, like 'expandNode' or 'setDrillLevel'.
    These functions can be expanded all hierarchy in Cross tab. but it can not be applied to Dimension Filter.
    Please help me to achieve this.
    Thank you in advance.
    Best Regards,
    K.Min

    I don't see a way to achieve this with the Dimension Filter or the Filter Panel
    I think it would be a great idea to add to Idea Place at ideas.sap.com

  • Web Interfaces: BPS-Hierarchy: Collapse/ Expand all nodes

    Hello,
    having a bps hierarchy in a web interface, is there any way to collapse/ expand all nodes at once (via a button)?
    Cheers,
    Simon

    Simon
    Web interface does not support the collapsing of hierarchy.
    it will automatically expands hierarchy.
    Thanks,
    Raj.

  • Expanded hierarchies in workbook...

    Hi All,
    We are getting a weird problem when we are refreshing a query in workbook
    When data is refreshed, the values pull into the hierarchy top level, but not the detail level. After expanding and collapsing the hierarchy node, the values is then displayed.
    This is kind of confusing!!!!
    Any ideas will be really appreciated !!!
    Thanks

    Hi........
    Hierarchy Active
    You use this function to switch display hierarchies on and off.
    Hierarchy Node Expanded
    Select Hierarchy Node Expanded if you want to expand a hierarchy node. If you want to collapse the hierarchy node, deselect the indicator. You can also expand or collapse the hierarchy node by choosing the hierarchy icon.
    Expand Hierarchy :
    Choose Expand Hierarchy ® Level <1> if you want to display more levels of the hierarchy. You can also expand the hierarchy by choosing the hierarchy icon. For more information
    Also check this link :
    http://help.sap.com/saphelp_nw70/helpdata/en/f1/0a5543e09411d2acb90000e829fbfe/content.htm
    It may help you........
    Regards,
    Debjani......

  • Duplication of values in chart that based on hierarchy

    Hi Gurus!
    Look. For example, I have hierarchy
    A
    -> AA
    ->->AA1
    ->->AA2
    B
    -> BB
    ->->BB1
    ->->BB2
    If at the level BB2 I have values (for example Quantity = 10 for BB2) the hierarchy will look like:
    A           
    -> AA     
    ->->AA1 
    ->->AA2 
    B            10
    -> BB       10
    ->->BB1   0
    ->->BB2    10
    So, 10 will be shown at BB and B. But this is ok, of course.
    But when I created a chart based on hierarchy, and restricted this chart to BB, I see:
    Quantity BB = 10
    Quantity BB1 = 0
    Quantity BB2 = 10
    But I would like to see values for BB1 and BB2 only. So, if I select node BB, I would like to see corresponded quantities for sub-nodes, but not for BB. So, the chart usually looks like divided on 2 equal parts sphere, 1 part for BB, and another part divided on BB1 and BB2.. Is it possible to show BB1 and BB2 only when I selected BB in navigation?
    Iryna.

    Hi Iryna,
    there is an entry "Show expanded Hierarchy nodes" in the options for graphics. You can find it in the SAP standard template or in the Web Application designer. If the entry is not set, only the lowest expanded nodes of a hierarchy are displayed.
    Kind regards,
    Jürgen

  • OBIEE Multiple Employee Organisation Hierarchy Version update - duplicating workforce totals

    Hi,
    On creation of a new version of the Employee Organization hierarchy, some of the OBIEE dashboards & analyses that were oracle seeded function show ...
    Total Employee headcount  =   total employee headcount from hierarchy ver 1 + total emp headcount hierarchy ver 2
    Which is incorrect and misleading in the reports. (Similar issues for FTE..... )
    Firstly, is this normal ----- or has the versioning been implemented incorrectly, or is there missing aggregation at the Ebusiness, BI rpd or dashboard level?
    Secondly, what is the best solution to display the relevant hierarchy based on the report dates?
    If there is further aggregation needed, how can this be added without needing to update it every time a new employee organization hierarchy version is copied?
    Thanks,

    For my solution it was done through a button with 2 commands.  These commands are SET_HIERARCHY and then SET_AXIS_HIERARCHY.  These 2 commands seem to be necessary as the SET_HIERARCHY simply sets the level of where the hierarchy is expanded to and the SET_AXIS_HIERARCHY enables the display of the expanded hierarchy on the axis you choose, usually  in the rows.
    SET_HIERARCHY:
    Data Binding
    Characteristic: Organisation Unit
    Command-Specific Parameters
    Active: On
       Heirarchy Identifier
    Name of Hierarchy: ORGEH (ORGEH)
    Version: 01
    Key Date: 0DAT
    Initial Drill Level: 16 (Note: this is the maximum level anticipated in Organisation Unit, so fully expanded)
    SET_AXIS_HIERARCHY
    Data Binding
    Axis: ROWS
    Command-Specific Parameters
    Active: On
    Description: Default
    Initial Drill Level: 1 (Note: this is the level of the characterisitic Organisation Unit from the query Rows axis, not the hierarchy level)
    Hope this helps.
    Regards,
    Joe

Maybe you are looking for

  • Mail backup without attachments

    Hi Without removing attachments from my primary mail folders, does anyone know a way of making a backup of my mail that would not include attachments? My aim is to make a relatively concise backup of the contents of my mail that I can store online wi

  • Boot Camp - NTFS and issue and Windows based defragmenters.

    I am interested in having a BootCamp developer contact me regarding NTFS partitions and what happens when you defragment while booted into Windows. Specifically, what is happening is that when a boot time defrag is performed while booted into Windows

  • I need to swap devices and phone numbers!

         So here is the deal... My plan has four lines (my mother, brother, sister and I). My sister used my upgrade and renewed my contract in December (extending my contract 2 years), however I planned on dropping my phone line. So I need to swap my de

  • SAP ECC 6 Upgrade to 2008 R2 and Virtualization success/failure stories

    Hi Sap community, I'm planning the following upgrade on my SAP Ecc 6.0 : Source CI : physical server on windows 2003 x64 SP2, Target CI : virtual server under vsphere 5.0 Windows 2008 x64 R2, Source DB : physical server on windows 2003 x64 SP2, SQL 2

  • Configure Mail to support LDAP (Mavericks)?

    I have a new Mac running Mavericks (10.9.1) and the Mail app appears to be at version 7.0.  Following my company's instructions I have successfully set up a mail account (using IMAP), but the instructions don't seem to apply for enabling me to use an