Hierarchy Reporting - Suppress levels

Hi
I am using a Hiearchy to provide Grouping and Order. However, for certain Queries, I need to report at the lowest level, in Hierarchy Order, but WITHOUT displaying the levels above the lowest level. Any tips on how to do this, preferably within the Query, would be most welcome.
Thanks

I don't get a Restrict option on the right-click menu in the row definition. I can Restrict on the Filter tab in Query Designer. But, if I'm interpreting what you're saying correctly, every time the Hierarchy changed I would have to change the hard-coded leaves from the new hierarchy in the query. My Hierarchy is not static enough for this to be an option.
Is there a way of using (creating?) a variable that would allow choice of Level (04, say), rather than hard-coded specific nodes?

Similar Messages

  • Abt Hierarchy Reporting

    Hi ALL,
                We have uploaded data from Flat file to hierarchy using IDOC transfer method , data transfered successfully to hierarchy.
    The hierarchy contains following structure ,
    SALES REGION----->> SALES OFFFICE -
    >>SALES REP ID .
    While Creating Hierarchy Report , in query designer we drag the SALES REP ID to rows and right click the
    SALES REP ID -
    >>Properties -
    >> Hierarchy -
    >>Expand Level=10---->ok ... Given
    Note: Hierarchy is active...
    But Still Query  doesnt contain any data in output .
    What is the Reason ??
    Thanks n Advance

    Hi,
             Thanks for the Answers...
           1). The Sales Rep ID is available at infoprovider level ..
           2). We have removed the hierarchy in the query properties , and use Sales rep id alone  in rows and reported but the report doesnt fetch any data ...
            3). In RSH1 we have seen Our Hierarchy Structure presented ...
    need further answers ......
    thanks ....

  • Hierarchy Report - is this possible through BO???

    Hello friends
    We have a requirment as follow:
    In Row : Hierarchy
    In Column: Qty
    we have 3 levels of hierarchy: level1 , level2 and level3
    we want level1 in row and rest two levels in column along with qty
    Row: :Level1
    Col: Level2, Level3, Qty
    please let me know whether its possible through BO or not,,,I tried out this in BEx (BW) but we cant do that
    Edited by: Alok Kashyap on Feb 2, 2009 9:03 AM

    Hi Alok,
    As I understand you want to set different levels of hierarchies for different Columns objects in the report.
    BO doesnu2019t have the concept of Row and Column Level Hierarchy because when you select any value BO Select all values in column we canu2019t refer any single value in column and we canu2019t refer all related values as record thus Row level hierarchy is not possible.
    You can use Custom Hierarchies to set different hierarchies for different objects.
    Lets Say you Want Object in  Column A to follow Level 1 include that object in Level1 Hierarchy.
    Define Level 2, Level 3 Hierarchy and Include Object in Column 2 in those hierarchies thus Column 2 follows Level 2 and Level 3 Hierarchy.
    When there is confusion about which Hierarchy Level  to follow when at same level it asks user which way to go.
    I Hope this Helpsu2026
    Thanksu2026
    Pratik

  • Reporting on Level 0 of half my Entity Structure

    I have an Entity structure in my hierarchy with two children, "Corporate" and "Communities". I'd like to report on level 0 of the "Communities" member, but I keep getting the "Corporate" children in my report as well.
    How can I set it up so only the level 0 members of "Communities" is included in my report?
    Thank you in advance for your help.

    I don't want all the descendants in "Communities", there are many levels. I just want level zero. If I use these two items, my level zero communities will show up twice, won't they, once under the "Communities" member, and once under "Entity". I just want them to show up once.

  • Want to flatten my parent-child hierarchy into an level-based hierarchy.

    Hi Expert,
    Can anyone let me know how I can convert my parent-child hierarchy into an LEVEL-based hierarchy.
    Thanks in Advance
    S

    If you have an Oracle DB have a look on the CONNECT BY PRIOR functionality.
    regards
    John
    http://obiee101.blogspot.com

  • Ragged Hierarchy and Skip Level Hierarchy

    Hi all,
    I am confused with ragged and skip level hierarchy, as i read some documents related to obiee 11g.
    Will you please explain with an example the difference between ragged hierarchy and skip level hierarchy and also when to use these hierarchies?
    regards
    chandra kanth.

    Chandra Kanth,
    Hope this helps you
    http://blogs.simba.com/.a/6a00e3932f172e88340133f4d758b5970b-800wi
    Thanks,
    Saichand.v

  • ALV HIERARCHIAL REPORT

    Dear Experts,
    Can anyone tell me how to create a ALV Hierarchial report with one HEADER table and multiple ITEM(child) tables.
    thanks & regards,
    gautam

    Hi you can tray review this code for a example i found in the web and help me:
    REPORT Z_TEST_HIESEQ_REPORT.
    TABLES: ekko,ekpo.
    * selection option
    SELECT-OPTIONS s_ebeln FOR ekko-ebeln.
    TYPE-POOLS:slis.
        * define header table and item table
    DATA: BEGIN OF headertab OCCURS 0,
              ebeln LIKE ekko-ebeln,
              bstyp LIKE ekko-bstyp,
             bsart LIKE ekko-bsart,
             statu LIKE ekko-statu,
             END OF headertab.
        DATA: BEGIN OF itemtab OCCURS 0,
        ebeln LIKE ekpo-ebeln,
        ebelp LIKE ekpo-ebelp,
        matnr LIKE ekpo-matnr,
        werks LIKE ekpo-werks,
        menge LIKE ekpo-menge,
        netpr LIKE ekpo-netpr,
        peinh LIKE ekpo-peinh,
        netwr LIKE ekpo-netwr,
        END OF itemtab.
        DATA: i_fieldcat TYPE slis_t_fieldcat_alv.
        DATA: v_repid LIKE sy-repid.u201Ccurrent program name
        DATA: g_tabname_header TYPE slis_tabname,
        g_tabname_item TYPE slis_tabname.
        * data connect header table and item table
        * we can set 5 field as foreign key at same time
        DATA: gs_keyinfo TYPE slis_keyinfo_alv.
        INITIALIZATION.
        v_repid = sy-repid.
        START-OF-SELECTION.
        PERFORM get_data.
        END-OF-SELECTION.
        * get field catalog of header table
        CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
        i_program_name = v_repid
        i_internal_tabname = 'HEADERTAB'
        i_inclname = v_repid
        i_bypassing_buffer = 'X'
        i_buffer_active = "
        CHANGING
        ct_fieldcat = i_fieldcat
        EXCEPTIONS
        inconsistent_interface = 1
        program_error = 2
        OTHERS = 3.
        IF sy-subrc <;>; 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno WITH sy-msgv1
        sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        * get field catalog of item table
        CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
        i_program_name = sy-repid
        i_internal_tabname = 'ITEMTAB'
        i_inclname = v_repid
        i_bypassing_buffer = 'X'
        i_buffer_active = "
        CHANGING
        ct_fieldcat = i_fieldcat
        EXCEPTIONS
        inconsistent_interface = 1
        program_error = 2
        OTHERS = 3.
        IF sy-subrc <;>; 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno WITH sy-msgv1
        sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        * set the header and item table are connected by pur doc number
        gs_keyinfo-header01 = 'EBELN'.
        gs_keyinfo-item01 = 'EBELN'.
        g_tabname_header = 'HEADERTAB'.
        g_tabname_item = 'ITEMTAB'.
        CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
        EXPORTING
        i_callback_program = v_repid
        it_fieldcat = i_fieldcat
        i_save = 'A'
        i_tabname_header = g_tabname_header
        i_tabname_item = g_tabname_item
        is_keyinfo = gs_keyinfo
        i_bypassing_buffer = 'X'
        i_buffer_active = ' '
        TABLES
        t_outtab_header = headertab
        t_outtab_item = itemtab
        EXCEPTIONS
        program_error = 1
        OTHERS = 2.
        IF sy-subrc <;>; 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        FORM get_data.
        SELECT ebeln bstyp bsart statu
        INTO TABLE headertab
        FROM ekko
        UP TO 100 ROWS
        WHERE ebeln IN s_ebeln.
        IF NOT headertab[] IS INITIAL.
        SELECT ebeln ebelp matnr werks menge netpr peinh netwr
        INTO TABLE itemtab
        FROM ekpo
        FOR ALL ENTRIES IN headertab
        WHERE ebeln = headertab-ebeln.
        ENDIF.
        ENDFORM. "get_data
    Edited by: Juan Manuel Garcia on Aug 17, 2010 11:29 PM
    Edited by: Juan Manuel Garcia on Aug 17, 2010 11:36 PM

  • Department / Org. unit Hierarchy report

    Hi Team,
    I am trying to pull a department / org. unit hierarchy report that rolls-up, for example if I am an IT analyst, under Service mgmt, ultimately rolling up to IT (org. unit) similiar to PPOME view.
    I did try a FM (RH_STRUC_GET), but could not get the req. details.
    Let me know if there is something like this, that I can use.
    Thanks
    RL

    Hi,
    Please try evaluation path O-O-S-P in report RHSTRU00 as mentioned by semvladigo.
    Regards,
    Dilek

  • IPv4 multicast broken in EA6900-v1.1 ? (IGMP report suppression)

    After upgrading from EA6900-v1.0 to v1.1 (both with same SW=1.1.42.161129),
    we observed that IPv4 multicast starts to fail (group membership expires).
    Does anybody know about the internal architecture in these Routers (e.g. any unmanaged internal switches)?
    It works fine if everything is wired.
    However if host1 is connected to wired and host2 is connected to 2.4G wireless,
    we see that Bonjour multicast gets forwarded but PTP multicast only in one direction.
    We believe this could be related to a IGMP feature called "IGMP Report Suppression", where a host not will send "IGMP Report" (aka Join mcast group), if it receives an "IGMP Report" for the same group "recently". In that case it believes a peer within same hub already has subscribed.
    Our theory is that in this mixed wired/wireless setup the Router might not forward PTP multicast traffic between wired and wireless when nobody send Report "on the other side".
    However in that case we don't understand why it still seems to forward "IGMP Report" to "the other side"...
    Bonjour uses 224.0.0.251 (within "Local Network Control Block") and PTP uses 224.0.1.129 (outside that block).
    Routers might have different forwarding rules for these two ranges, see below.
    http://www.iana.org/assignments/multicast-addresses/multicast-addresses.xhtml
    "Local Network Control Block (224.0.0.0 - 224.0.0.255 (224.0.0/24))"
    http://www.ietf.org/proceedings/50/I-D/idmr-snoop-00.txt
    "It is suggested that all multicast packets in the range 224.0.0.1 through 224.0.0.255 are forwarded on all ports."
    /Mads

    Internally AFAIK the WLAN and LAN ports are bridged and packets shouldn't be filtered. 2.4Ghz and 5Ghz are isolated from each other unfortuately on the EA6900. WAN to LAN\WLAN is different. I think in that case IGMP won't work because IGMP Proxy module would have to be installed.
    Please remember to Kudo those that help you.
    Linksys
    Communities Technical Support

  • SRKIM: R12: Concurrent Report Access Level

    PURPOSE
    r12 에서는 다른 user 에 의해 수행된 report output 을 볼 수 있는 user 권한을 어떻게 부여 하는지에 대해 알아 보도록 한다.
    EXPLANATION
    R11i 에서는 profile option: "Concurrent: Report Access Level" 을 지정 하여 concurrent request 의 output 에 대한 access level 을 지정 할 수 있었다.
    R12 에서는 이 profile 대신 UMX 의 Role Based Access Control (RBAC) 이 누가 request 의 output 을 볼 수 있는지를 지정 할 수 있도록 한다.
    administrator 는 한 request group 의 개별 프로그램이나 프래그램 set 혹은 모든 프로그램이나 셋에 대해 사용자나 role 에 대해 권한을 부여 할 수 있다.
    해당 기능을 구현 하기 위해 아래와 같은 permission 이 seeded 되어 있다.
    • Permission "Submit Request"
    • Permission "View Request"
    • Permission Set "Request Operations" containing the permissions "Submit Request"
    and "View Request"
    • Object "Concurrent Programs"
    • Object Instance Set "Programs that can be accessed"
    • Object Instance Set "Request sets that can be accessed"
    Request security group 에 대한 access 를 특정 role 에 부여 하기 위해서는 아래 steps 대로 수행 한다.
    1. UMX Responsibility 에서 user role 을 define 한다.
    2. System Administrator responsibility 에서 request security group 을 정의 한다.
    3. Functional Administrator responsibility에서 grant 를 정의 한다.
    1) grant 에 대한 이름과 description 을 입력한다.
    2) 해당 grant 에 대한 Security Context 를 입력한다.
    3) Data Security 항목에서 "Concurrent Programs" 혹은 "Request Sets" 를 object 으로 지정하고 next 를 click 한다.
    4) Object Data Context 에서 "Instance Set" 을 선택 후 "Programs that can be accessed" 이나 Request Sets that can be accessed 를 선택 한다.
    5) Instance Set Information 을 review 후 Instance Set Details 에서 request group 과 해당 application을 입력한다.
    6)"Request Operations" 에서 permission set 을 지정한다.
    Viewing Requests
    위에서 언급한 대로 RBAC 를 통해 viewing requests 권한을 control 할 수 있는데 아래와 같은 instance sets 이 그 역할을 한다.
    • All requests submitted by a user
    • All requests submitted by a user for a given application
    • All requests belonging to a program submitted by a user
    • All requests belonging to a request set submitted by a user (irrespective of the constituent programs' owning application) to another user (or a group of users - via a role).
    REFERENCE
    NOTE. 736547.1 - Concurrent Report Access Level

    Hello Kai,
    would you mind giving me a hand and post here the answer to your question? The mentioned metalink note is just referencing a whole section within 120sasg (B31451-05.pdf). If you would provide a short summary what needs to be done would be very welcome.
    Thanks a lot
    Volker

  • Report Access level

    hi,
    Is the concurrent:Report Access level profile option applicable to all concurrent requests(host,pl/sql,reports) or only for reports?
    null

    Yes, it is to all the concurrent programs.

  • Hierarchy Node Suppression in a BeX Query

    Hi,
    We haev a hierarchy with 3 levels
    Level 1  (Root) - Customer Hierarchy
    Level 2 - Customer Groups
    Level 3 - Customer Number
    Is it possible to display the Customer Groups (level 2) without displaying the Root Node (level 1)  in a BeX query. If we Expand to  level 2 , the query displays both level 1 &  level 2. We have a requirement to see level 2 only. Is that possible?
    If anyone has done this, would really appreciate if you can respond.
    Thanks,
    Anita

    Hi Anita,
    I am sure that as you have created hierarchy for Customer Number, you have to have customer group as its attribute. Dont you have that?
    And if you have your transcational data, you will have them posted against customer number.
    you must have Customer Number in the query already and that is the reason you could enable its hierarchy.
    My suggestion was to make Customer group as navigational attribute and add them into InfoProvider. You dont have relaod the data again for this.
    Moreover, Once you have customer group as navigational attribute, disable the hierarchy for customer number and in your query designer under ROW put Customer Group and Customer Number as two seperate characteristics.
    This will elminiate ROOT from the result and you will have customer group and Customer number in the result.
    Here the only difference is, instead of showing Customer Number below Customer group, it will be dispalyed in the next column.
    - Danny

  • Dynamic hierarchial report

    Hello All,
    I need to write a report whose output format a hierarchy report which varying columns for each key in onereport
    Eg:
    ABC
    COL1    COL2  COL3 COL4  COL5 COL6
    XYZ
    COL1 COL2 COL3
    PQR
    COL1 COL2 COL3 COL4 COL5 COL6 COL7 COL8
    MNO
    COL1 COL2
    Please sugest how to do it.
    Ujwal

    Hi Ujwal,
    You can achive this one by populating row_pos and col_pos in the field catalog.
    Thanks and Regards,
    Shakeer Hussain

  • Profile option  Concurrent:Report Access Level

    I need to set the profile Concurrent:Report Access Level .. but it is not retreivable from profile--> system -->.. any idea ?
    Kai

    Hello Kai,
    would you mind giving me a hand and post here the answer to your question? The mentioned metalink note is just referencing a whole section within 120sasg (B31451-05.pdf). If you would provide a short summary what needs to be done would be very welcome.
    Thanks a lot
    Volker

  • Display Bex Report in Hierarchy manner (all levels in one column)

    Hi experts,
    Pls. help me in providing any possible solution to get the Bex report in a customized manner as all levels in the report should come under one column as tabbed format with out going for creating hierarchy externally.
    i anm providing 3 example levels below to get some idea as i am not able explain in detail,
                        1.  corporate  (1st level)
                         2. company (2nd level)
                         3. Line of Business (3rd level)
    normal output would be,
    column1        
    corporate
      column2 
    company
    company2
    company3
    column3
    line of business
    line of business2
    line of business3
    required report
    column1
    corporate
    company.
    company2
    company3
    line of business
    line of business2
    line of business3
    need the above manner  in column ( all levels should come in one column in tabbed manner)
    please help in any possible solution to get the required report display.
    Thanks,
    Anil.

    Hi Joao,
    Technically, Description ID column in rpd works with prompt selection because where you will have to select "Enable user to select code by column" which brings sql with id rather than text as shown below
    OBIEE, Endeca and ODI: Description ID column - OBIEE 11g
    In your case you should go with new column with concatenation let me know if you have any difficulty in doing it !
    Thanks,
    Saichand

Maybe you are looking for