Column hierarchy in critera

Hi,
I was going through the web services in OBIEE 11g. While we create new analysis by selecting the criteria we will get hierarchy also in left side what is the the use of it and when i select any hierarchy example: time hierarchy they did t get any result pertaining to that hierarchy. what is the use of it in OBBIEE 11g any one please guide through it
thanks in advance

Hi user,
It's not very clear what you're asking, but I think is something related to the hierarchy?.
Let0s supose you create a time hierarchy in your rpd. You can either use this hierarchy in your analysis or only the fields related to them. The hierarchy gives you a way of looking at data in a tree perspective and it also allows you to see the aggregation in different levels. It depends on your requeriments whether you're going to use it or not. If you only need a report with the month, you will probably only use the Month_Name column instead of using the whole hierarchy.
I hopethis helps.
J.

Similar Messages

  • About ALV as Hierarchy

    I want to make my ALV like this [https://weblogs.sdn.sap.com/weblogs/images/1918/wda_alv17.jpg|https://weblogs.sdn.sap.com/weblogs/images/1918/wda_alv17.jpg] by coding. I've found a pdf about how to do it, but it doesn't work.
    Here is my code:
      DATA:
            l_ref_cmp_usage TYPE REF TO if_wd_component_usage,
            l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table.
      l_ref_cmp_usage = wd_this->wd_cpuse_salv( ).
      IF l_ref_cmp_usage->has_active_component( ) is INITIAL.
        l_ref_cmp_usage->create_component( ).
      ENDIF.
      l_ref_interfacecontroller = wd_this->wd_cpifc_salv( ).
      wd_this->r_table = l_ref_interfacecontroller->get_model( ).
      cl_salv_wd_model_table_util=>if_salv_wd_table_util_stdfuncs~set_all(
        r_model = wd_this->r_table ).
      wd_this->r_table->if_salv_wd_table_settings~set_display_type(
      if_salv_wd_c_table_settings=>display_type_hierarchy ).
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      lr_column = wd_this->r_table->if_salv_wd_column_settings~get_column( 'CNOID' ).
      lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
      lr_column = wd_this->r_table->if_salv_wd_column_settings~get_column( 'STOID' ).
      lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
      wd_this->r_table->if_salv_wd_table_hierarchy~set_last_hier_column_as_leaf( abap_true ).
    how can i make these code work?
    thx
    by jkchen

    hi arjun,
    it still doesn't work. when i debug it, the system sets the column hierarchy "false"...
    the code is like this now:
      DATA:
            l_ref_cmp_usage TYPE REF TO if_wd_component_usage,
            l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table,
            l_value TYPE REF TO cl_salv_wd_config_table.
      l_ref_cmp_usage = wd_this->wd_cpuse_salv( ).
      IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.
        l_ref_cmp_usage->create_component( ).
      ENDIF.
      l_ref_interfacecontroller = wd_this->wd_cpifc_salv( ).
      l_value = l_ref_interfacecontroller->get_model( ).
    *  cl_salv_wd_model_table_util=>if_salv_wd_table_util_stdfuncs~set_all(
    *    r_model = l_value ).
      l_value->if_salv_wd_std_functions~set_hierarchy_allowed( abap_true ).
      l_value->if_salv_wd_table_settings~set_display_type(
      if_salv_wd_c_table_settings=>display_type_hierarchy ).
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      lr_column = l_value->if_salv_wd_column_settings~get_column( 'CNOID' ).
      lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
      lr_column = l_value->if_salv_wd_column_settings~get_column( 'STOID' ).
      lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
      l_value->if_salv_wd_table_hierarchy~set_last_hier_column_as_leaf( abap_true ).

  • ALV as Hierarchy with aggregation

    Hi
    I have 5 columns: H1, H2, H3, SUM1, SUM2
    For columns SUM1, SUM2:
    lo_field = lo_value->if_salv_wd_field_settings~get_field( <fs_col>-id ).
    lo_field->if_salv_wd_aggr~create_aggr_rule( ).
    lo_aggr_rule = lo_field->if_salv_wd_aggr~get_aggr_rule(  ).
    lo_aggr_rule->set_aggregation_type( if_salv_wd_c_aggregation=>aggrtype_total ).
    For columns H1, H2, H3:
    <fs_col>-r_column->if_salv_wd_column_hierarchy~set_hierarchy_column( value = abap_true ).
    If i create sort rule for H1,H2,H3 hierarchy automatic sort is broken.
    How i can create aggregation on Hierarchy ALV?

    hi arjun,
    it still doesn't work. when i debug it, the system sets the column hierarchy "false"...
    the code is like this now:
      DATA:
            l_ref_cmp_usage TYPE REF TO if_wd_component_usage,
            l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table,
            l_value TYPE REF TO cl_salv_wd_config_table.
      l_ref_cmp_usage = wd_this->wd_cpuse_salv( ).
      IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.
        l_ref_cmp_usage->create_component( ).
      ENDIF.
      l_ref_interfacecontroller = wd_this->wd_cpifc_salv( ).
      l_value = l_ref_interfacecontroller->get_model( ).
    *  cl_salv_wd_model_table_util=>if_salv_wd_table_util_stdfuncs~set_all(
    *    r_model = l_value ).
      l_value->if_salv_wd_std_functions~set_hierarchy_allowed( abap_true ).
      l_value->if_salv_wd_table_settings~set_display_type(
      if_salv_wd_c_table_settings=>display_type_hierarchy ).
      DATA: lr_column TYPE REF TO cl_salv_wd_column.
      lr_column = l_value->if_salv_wd_column_settings~get_column( 'CNOID' ).
      lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
      lr_column = l_value->if_salv_wd_column_settings~get_column( 'STOID' ).
      lr_column->if_salv_wd_column_hierarchy~set_hierarchy_column( abap_true ).
      l_value->if_salv_wd_table_hierarchy~set_last_hier_column_as_leaf( abap_true ).

  • Hierarchial Table Display

    Hi all.
    A user has requested a hierarchial table display, consisting of header rows and detail rows, both with multiple but different columns.
    Something like the old FM REUSE_ALV_HIERSEQ_LIST_DISPLAY.
    For example:
    Purch. Order   Vendor   Name
       Item   Description        Material    Quantity   UoM
    3800000001     123456   Widgets R Us
       20     Blue Widget        WID001            2    EA
       20     Red Widget         WID002            5    EA
       30     Green Widget       WID003            4    EA
    3800000002     654321   Widget Warehouse
       20     Blue Widget        WID001            3    EA
    I have had a look at Table with Tree (DEMO_TABLE_WITH_TREE), but from what I can see this UI only allows a single column for the hierarchy structure.
    Does anyone know how to achieve a multi-column hierarchial display in a table ?  Any suggestions or comments appreciated.
    Thanks & regards,
    Grogan

    Hi,
    Refer this article: [ALV and Standard Table as Hierarchy in Web Dynpro ABAP|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c060fcb4-2c62-2b10-d2b2-f32407a5cc6f].
    I hope it helps.
    Regards
    Arjun

  • Logic in determining package sequence in maintenance planning

    Hi,
    I have created a performance based strategy, with the package containing 2 cycles and 2 levels of hierarchy.
    cycle 1        500H
    cycle 2      1000H
    So, the package sequence is showing
    500H     1000H      1500H     2000H    2500H etc
    1           2              1            2           1         etc
    When I tested with measuring documents, I noticed that the package due always following the sequence of the cycle 1,2,1,2,1,2, regardless of the the measurement reading. The example I tested with the measuring document is as follows:-
                                                  SAP assigned package due in IP10
    1st measdoc = 600H                1
    2nd measdoc = 1500H              2
    3rd measdoc = 2500H              1
    4th measdoc = 2520H              2
    I thought, based on the packages defined in the strategy, I should be getting the package due as 1,1, 2,1, which is based on the difference between last reading and current reading.
    Can someone shed some light on how SAP determine the Package due ?
    Thanks !
    Lip Huey

    Hi Lip,
    My start counter for the plan is 0
    I schedule the plan in IP10
    Now IN IP10 if i see the scheduling list it will show me the following list
    Next planned counter reading, total counter reading, and completed counter reading.
    So  when you schedule the plan system will calculate what will be the next planned reading for which maintenance will be due that is the column next planned counter reading. in  this case it will be 500
    Now i enter a measuring doc for 600.
    If i schedule again if you see the above columns it will show next planned reading as 500 but total counter reading as 600.
    If you save this system will generate order and if you TECO the order and  schedule again ain IP10 and see the columns
    It will show as completed counter reading as 600, next planned counter reading as 1100 and total counter reading as 600.
    Next planned counter reading is calculated  as completed counter reading + 500 which is the next package 2 (If you have maintained shift factor late completion as 100%) If the shift factor is not maintained then sys will add 500 to previous planned reading to give next planned reading as 1000.
    Please check all parameters in the tab page scheduling parameters in your plan
    And for strategies check column hierarchy this will have an effect on what operations from task list are copied to order.
    Regards
    Pankaj

  • How to load ODBC data?

    I have just installed NI DIAdem 9.1 on Windows XP and am struggling with the inadequate documentation.
    I have a local MySQL database server running, and have installed the MySQL ODBC driver.
    I have defined an ODBC data source to provide access to my database.
    Now how do I get DIAdem to use the ODBC connection?
    There is no file, just a named ODBC source.
    I am upset that this simple action is not described in the documentation. (Or I cannot find it.)

    Hi Nick,
    DIAdem can interact with your data base in two ways.  You can open up the table and column hierarchy of your data base in the NAVIGATOR, which is nice because it shows you the whole data base and enables you to easily select which tables/columns you're interested in.  What's not so nice is that the only thing you can do at that point is to load entire columns from your data base into the Data Portal.  Most people have a data base for the particular reason that they want to query specific records out of selected columns, so it's rarely useful to load entire columns (though it makes for a good sales demo).
    The second way that DIAdem can interact with your data base is through a VBScript which uses the "SQL_" ODBC functions.  If you launch the DIAdem Help system and go to the "Index" tab, then type "SQL_" in the keyword field and hit the "Enter" key on your keyboard, you will find a healthy list of built-in SQL commands to communicate with external data bases using ODBC.
    I am including my own personal list of SQL examples as well,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments
    Attachments:
    DIAdem ODBC Examples.zip ‏1362 KB

  • Sorting Aggregate Results

    Hello,
    My column hierarchy is: Territory->Customer->Score
    I am sorting on Score, which works fine. I have to keep the Customer column in the query to get correct results. In the crosstab view, I move the Customer column to the exclusions, and now the Score rolls up to show it for the territory, but it is not in sorting order now.
    How can I get that to sort correctly? It seems I want to sort the higher level results and not the underlying query.
    Thanks!

    ejryan,
    try to hide column customer (from the columns menu in pivot table edit view), rather than moving it to exlcusions..
    /Mike

  • Hiding a hierarchy column in graph view

    Hi All,
    In an compound layout I would like to have pivot view and bar chart view.
    There are two hierarchy columns in criteria. These column should display in pivot view.
    My requirement is to hide the hierarchy columns in Bar chart view and can we apply separate selection steps for each view.
    Kindly help me..
    Thanks,
    Haree

    Hi,
    Edit the pivot table and graph and at the below you can see the selection steps for the individual components. So that you can give separately for each of the components.
    Hope this helped/ answered.
    Regards
    MuRam

  • 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

  • PowerView option - Drill Down one level at a time also hide the columns other than the hierarchy columns

    Hi All,
    I have a simple PowerView report (Excel 2013) in which I have a hierarchy (three columns), an image column, and a Value column:
    When I change the Show Levels option to "Rows - Enable Drill Down One Level at a Time", image column also hide.
    I want to keep the image column displayed while drill down/up to the hierarchy.
    Is it possible? If yes, then how?
    Thanks & Regards,
    Muhammad Ehsan
    If this answers your question please mark as answer. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

    Hi Muhammad,
    According to your description, you have images at child level. Now you want to have the images displayed when have the child level items collapsed. Right?
    In this scenario, when you show the data in a matrix in Power View, those images, Size ID and Prices have been added into a child group. If we enable drill down, all the items within the child group will be collapsed. We can't change it at all in Power
    View.
    For your requirement, we suggest you design your report using SQL Server Data Tools in Reporting Services. In Reporting Services, we can have specific columns toggled by the parent item.
    Reference:
    Add drill-down to a Power View chart or matrix
    Drill-down Behaviour in Power View
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Assertion failure error while using hierarchy column in 11.1.1.7.1

    Hi all,
    I have done In-place upgrade of OBIEE from 11.1.1.5 to 11.1.1.7. Afterthat installed 11.1.1.7.1 patchset also.
    Dashboard prompts were created by using hierarchy column. While applying hierarchy prompt i am getting below error
    Assertion failure: levels.size() > start_pos at line 843 of project/weblayoutbuilder/viewlayoutbuilderutil.cpp
      Error Details
    Error Codes: ACIOA5LN
    Some times presentation services will restarted automatically.
    Kindly give a solution regarding this.
    Thanks in advance

    This is occuring due to Bug 17334677 in 11.1.1.7.0. It has been fixed in future versions and backported to SOA BPM 11.1.1.7.0 Apply Patch 17334677

  • Re-sizing hierarchy column in ALV Tree

    Hi all,
    I have created a class inheriting from CL_GUI_ALV_TREE that is used to create a Tree structure for Equipment.....
    Now my requirement is that the Hierarchy column should be re-sized based on the width of the node text.
    Please help.
    Thanks in advance.....

    You can control the size of the hierarchy column by setting the following field:
    *Set the width as follows
      g_hierarchy_header-width = 200.
    *Reference the g_hierarchy_header structure when calling the following method
      CALL METHOD tree1->set_table_for_first_display
        EXPORTING
        is_hierarchy_header = g_hierarchy_header
          it_list_commentary  = gt_header[]
          is_variant          = g_variant
          i_save              = g_save...

  • Re-size Hierarchy column in ALV Tree

    Hi all,
    I have created a class inheriting from CL_GUI_ALV_TREE that is used to create a Tree structure for Equipment.....
    Now my requirement is that the Hierarchy column should be re-sized based on the width of the node text.
    Please help.
    Thanks in advance.....

    Not answered

  • Use presentation hierarchy column in table prompt section

    Hi,
    I right click on presentation hierarchy column -> Move -> To prompts.
    Column filter appears in table prompts section but there is only one value to select in a dropdown - top levelparent of hierarchy.
    Is there any way to make all hierarchy levels be displayed in prompt?
    Regards,
    mudi

    Take 2 column first column as parent and second column as Child

  • No data for Parent-child hierarchy column in Pivot table view

    Hi all,
    I used OBIEE 11.1.1.6.2 Version.
    I drag one Parent-child hierarchy column and one measure and show result with a pivot table view.
    But when I click "+" icon to show detail level data,
    It messaged that: "*the layout of this view combined with the data,selections,drills,or prompt values chosen resulted in no data*."
    But it can show every-level data when I used table view.
    It was so strange..
    Did anybody meet this before?
    Thanks in advance.
    regards,
    Anne

    Hi,
    Yes, I have the same problem with pivot table for hierarchy dimension.
    If you use a normal table (not pivot) it seem to work. Unfortunatley with restrictions as normal table view have.
    Same problem still exist in 11.1.1.6.5
    I have logged a SR to Oracle about this.

Maybe you are looking for

  • NullPointerException while calling a webservice

    Hello, I want to use a this webservice: http://www.webservicex.net/WCF/ServiceDetails.aspx?SID=37 I have implement it, but I can not use it. Here my Code from the ComponentController:                AtomicModel model = new AtomicModel();             

  • ITunes crashes when I'm trying to log in into iTunes store

    After I've made my first purchase (of a music album) in iTunes store iTunes has crashed. And now iTunes crashes when I'm trying to log in into iTunes store. I've tried removing it, deleting iTunes folder in C:\Users\USER_NAME\Music and then installin

  • Reserved in store, but no date?

    Sorry if this has been asked already. I reserved a 3GS for in store pickup last Tuesday night, but the e-mail that was sent to me as the "date" field blank. I'm going to try calling the store to confirm, but would anyone happen to know if if would st

  • How to set up a point to point connection in 4 sites

    Hi all. I'm investigating the option of set up a point to point connection around 4 sites. I will call Site01, Site02, Site03 and Site04. Site01 will be the main one with a Main Domain Controller. Site02, Site03 and Site04 will be the Secondary Domai

  • Can't download JUNIT extension via "check for updates"

    Hi, since a few weeks (with jdev 11.1.1.1.0 and jdev 11.1.1.2.0) I can't download e.g. JUNIT extensions via "check for updates". I have to enter a password but authentication is not possible. Even when I reset the passord (via "find password") it doe