'Hierarchy Based Login' and 'Direct Reports' field in Dim - Position table

Hello -
I am trying to build a "My Team's" report, which basically shows the logged in Managers ( and his subordinates) revenues rolled up by default. Then the manager needs to drilldown on his name and see revenues grouped by his direct reports. I am using OBIEE 10G. In the out of the box RPD, there are two fields in the BMM layer called 'Hierarchy Based Login' and 'Direct Reports'.
1. The 'Hierarchy based Login' field uses the INDEXCOL method to get relevant column from the W_POSITION_DH table based on the the Logged in users hierarchy level (the hierarchy level is stored in a session variable (HIER_LEVEL). This session variable works fine and i have tested the SQL)
2. The 'Direct Reports' is using the same INDEXCOL method, just that it uses the formula HIER_LEVEL - 1. This works fine as well.
The issue i am facing is neither of these out-of-the-box fields are assigned to the Position dimension (the position dimension also exists OOTB).
So basically, i am able to create a manager and his direct subordinate report, but without any drill functionality.
I am trying to get the report to drill all the way down to the bottom most level of the heirarchy.
Any help to get this working is much appreciated

What i meant was neither of these out-of-the box fields are assigned to a Dimension Hierarchy ( there is a hierarchy called 'Position' that already exists out-of-the box). Other fields in the 'Dim-Position' table are assigned to a level in this position hierarchy, except these two. I guess what i am trying to achieve is to dynamically assign the hierarchy level based on the users Hierachy level in W_POSITION_DH table.
Thanks for spending time to look into my issue

Similar Messages

  • Create Dotted line reporting and direct reporting btwn org unit to org unit

    Hi,
    Currently I am working on matrix reporting structure. My requirement is to identify the dotted line reporting as well as direct reporting between org units to org units and where the relationships are storing and which tables.
    Can somebody please help me in this process.
    Thanks,
    kamalesh
    91-9913532050

    Transaction code is ppms for matrix
    Dimension 1- 50005733-A , and what evaluation path?
    Dimension 2-50005837-C, 50005856-D what eavluation path?
    relationship ?
    B position is reporting to A and D org unit,C org unit reporting to Reg head BR these are direct relationship in existing org structure.
    Requirements:
    1.Cleint needs C and D wants to reports A in dotted line relationships.
    2.cleint needs dotted line reports C and A and direct reports of A,Cand D.

  • Customized Email Content for Firefighter login and Log report

    Hi Experts,
    Is it possible to customize the email content (subject as well as body) for Firefoghter login and log report notifications. This is required on GRC AC 5.3 SP10.
    Thanks
    Davinder

    No, D P. You can not customize FF emails. They are hard coded in the ABAP programs.
    Alpesh

  • Framework order : GR-based invoice and Goods receipt fields

    Hello,
    In our solution, framework orders (purchase orders type FO) have no goods receipt, they are directly invoiced.
    However, when creating a purchase order (ME21N), the fields "GR-based invoice" (Invoice tab) and "Goods receipt" (Delivery tab) are flagged by default. We then have to "unflag" them each time we create a framework order (purchase order type FO).
    In customizing, can these fields be "unflagged" by default for the purchase orders type FO?
    Thanks for your answers.

    Hi Shirley,
    Go to Vendor master change(XK02/MK02)with whom you are creating the Framework order - Purchasing data, in that uncheck the check boxes for GR-based invoice and Goods receipt. Then save the vendor master. Then create the framework order.
    Hope this helps.
    Thanks,
    Viswanath

  • Apex is too slow to login and run report

    Hello Expert,
    I am working to fix a problem with APEX is extremely slow to login. It might take 3 to 5 min for the login to show up and it takes forever to load the reports on the screeen that has 1000's of rows. And when it comes to clik on the button to move from tabs in the application, or select a drop down menu, it takes forever.
    can any one suggest a solution to this problem? Is anyone experience this at their work environment and what can I do? If I am working on the same application in Development Environment, it is a little bit faster, it dosn't take that long as it takes in production.
    Your suggestions is much needed and appreciated.

    Without knowing what version of the database & APEX it is kinda hard to even fathom where your issue is...
    Are you having issues just getting a user logged in or is it a combination of logging in then running the report?
    Have you tried running the query OUTSIDE APEX in TOAD or SQL Developer?
    Can you post some information on what the query looks like?  Maybe even post a sample of the code on the Hosted Oracle Instance?
    Remember, the more you help us, the More We can Help You!!
    Thank you,
    Tony Miller
    LuvMuffin Software
    Ruckersville, VA

  • User login and activity report

    Hi
    We have SAP enterprise portal 7.0 SP9 installed. Now, I want a report which will give data like the users(ids)  and thier login time on this portal in a particualar time period. It would be better if i get the activity report of those users as well.
    Regards
    Dharmendra

    Hello,
    you can use portal activity report or google analytics to achieve this
    http://help.sap.com/saphelp_nw04/helpdata/en/58/728ea01cf64fff996b827f2a06f9b1/frameset.htm
    Google Analytics:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50b94044-7008-2b10-1680-c04e4526367b
    jo

  • Analytics Visibility - Books of Business and Direct Reports

    We have a manager who has looks over two key accounts and also has a few employees who deal with smaller deals.
    For the two major accounts, the opportunities are assigned Books of Business and each book rolls up to the same parent book.
    When the manager runs a report, and picks the parent book at the 'Look In', will they see other opportunities that are owned by people who report to him/her, or will they just see opportunities that have the books of business on them.
    In a perfect world, they would like to see the key account opportunities as well as the other opportunities for people who report to them.
    Can this be done?

    David,
    I will email you a file that explains analytics visibility in R15.
    The file is also available on Metalink for anyone else who needs the information... search for analytics visibility.
    Mike L

  • Read and display the field values in the table control

    Hi Experts,
    I am new to the Table Control. I have created table control using the wizard where i have mentioned the ztable while creating which consist of the following fields.
    Item Number
    Material number
    Material Description
    Net Price.
    I would like to retrieve the material description, Order quantity and Netprice based on the selection of the material number from the table control field.
    Thanks in advance.
    Sunil Kumar.

    Hi,
    Try to implicate the following code to your requirement..
    PROCESS BEFORE OUTPUT.
    PROCESS AFTER INPUT.
      LOOP AT itab INTO wa_itab.
       CHAIN.
        FIELD wa_itab-item.
        FIELD wa_itab-material MODULE fetch_desc_price ON CHAIN-REQUEST.
        FIELD wa_itab-mat_desc.
        FIELD wa_itab-price.
       ENDCHAIN
        MODULE modify_itab.
      ENDLOOP.
    Inside the module.
    MODULE fetch_desc_price INPUT.
    SELECT maktx FROM makt INTO itab-mat_desc
    WHERE matnr = itab-material.
    SELECT STPRS or resp fld from MBEW
    INTO itab-price WHERE matnr = itab-material.
    ENDMODULE.
    MODULE modify_itab INPUT.
    MODIFY itab from wa_itab INDEX <table control name>-CURRENT_LINE.
    ENDMODULE.

  • Hierarchy based on one dimension.

    Hi,
    How to create a hierarchy based on one dimension. For example: we have table:
    Category
    Category_ID
    Parent_Category_ID
    I want to create hierarchy, which like as:
    Category_Level_1
    Category_Level_2
    Is it possible without create new alias of table for each level?
    Thanks

    Which version of BO are you using?
    Assuming that you are using BO XI R2 or above version.
    And Is your question - how to create custom hierarchies in Universe Designer..... for two different fields (columns) taken from a single database table?
    If so, yes you can create custom hierachy for above scenario. In Custom Hierarcies option: Add the Parent_Category_ID first and  below that add Category_ID.
    If you want to rename your hierarchy levels as Category_Level_1 & Category_Level_2, then rename their corresponding objects names in Clasess & Objects pane.
    - Anil

  • Review Activity Notification to Direct Reports

    We have a workflow, thats creates review activity to manager of useraffected. Works Perfectly.
    But in some cases, aduser have direct reports, and SCSM aggregate this people to reviewers, from a review activity and send email to manager and direct reports.
    I was investigating, y apparently direct reports and manager are "reviewers".
    Is this situation a bug, an error, or it's OK?
    There is anyway to avoid that direct reports are agregated to reviewers?
    Thanks

    Hi,
    How do you determinate direct report users?
    Cheers,
    Marat
    Site: www.scutils.com 
    Twitter: LinkedIn:
    Graveyard:
    from Ad properties. The users in active directory have direct reports

  • Purpose of Entry/Check Table and Currency Quantity Fields...!

    Hi......!,
    I want to know what is the purpose of this   Entry/Check Table and Currency Quantity Fields, while creating a table in DDIC .
    give me a clear explanation .....!
    best answers would be rewarded.
    thanks
    prasad

    Hi Prasad,
    All the Modules in SAP are inter related,
    So their Tables also must be related and must be valid
    and they are related to foreign key relation ships
    and also we can provide the list of input values using search helps
    to know what the search helps and check tables are assigned to the particular  field they provided the tab
    In the currency fields or quanitiy fields we only enter the amount but not the units,
    so the units are assigned if we provide the reference field and table , and so that tab is provided to check what are reference fields and tables and also to assign new fields
    hope I am clear
    Reward if helpful
    prasanth

  • How to manage separate OLTP and MIS/Reports Server

    Dear All,
    Due to large amount of data and heavy MIS queries, response from our database server is very slow. Users face problems of slow speed.
    We want to separate our OLTP and MIS/Reporting.
    What is the best scenario provided by Oracle to implement this strategy. We are using oracle 11gR1 on Linux server.
    One thing to remember some reports require update information that is they has to show the latest data. However some MIS reports can be archived, like a procedure runs during off hours and insert data into tables periodically and MIS reports selects data from these tables.
    Your expert comments are required.
    Thanks, Imran

    I also require some procedures that run on a scheduled time and generate records in different tables, so read only database instance wont help much. If you are saying that you need the reporting database to be updatable, a physical standby is out. A logical standby is also most likely out unless you are just creating new objects. If you want to modify existing objects (inserting, updating, or deleting rows in existing tables), logical standby would not be appropriate.
    Do you want the reporting database to have the same data model as the OLTP database? Reporting databases often perform better with a different data model, but moving to a star or snowflake schema expands the scope of the project and increases complexity substantially. It also requires that existing queries be modified to hit the new schema which adds additional development time.
    Justin

  • Can we have 1 extractor that runs delta on 3 date fields in 3 diff tables?

    Hi guys
    i need a extractor that tracks changes to 3 different tables based on three different date fields one in each table. can this be done in one extractor. i understand u can have only one delta pointer per extractor. but is there a way to do this using a function Module?
    the other option is i know create three extractors, but since the fields i need are going to be a inner join b/w all three tables i was wondering if only one extractor is possible?
    Thanks

    Hi,
    this dummy date as the generic delta field will be passed to the fm (in case of a delta request) in the table i_t_select. Grab the value and design your select statement/s as you need. E.g.
    select * from your_view
    where date1 >= delta_date or date2 >= delta_date or date3 >= delta_date....
    Hope this helps!
    regards
    Siggi

  • Use of Hierarchy - and GOTO report based on it

    Hi
    I have a infoobject that uses an organisation unit hierarchy (0ORGUNIT). I use this in a report that also has a GOTO report connected. Both report has the 0ORGUNIT and its hierarchy.
    When I navigate down in the hierarchy, II do a GOTO in a value in the hierarchy, and the filters will be taken into the GOTO report. But....
    WHen i navigate myself down to the lowest level of information in the hierarchy, and on that levell rightclick and to a GOTO, the filters on the 0ORGUNIT (and the hierarchy) does not applies on the GOTO report. All other filters are applied on te GOTO report, but not the hierarchy.
    In the GOTO report I tried to click on the "Filter" button beside the name, and it is empthy. I can't sellected anything.
    I also get the message:
    Diagnosis
    Node restrictions are only permitted for a characteristic with active presentation hierarchy by a node of another hierarchy and end node restrictions.
    You have tried to filter a characteristic with active presentation hierarchy using a node of another hierarchy or a range selection (for example, interval, contain pattern).
    This can take place by toggling the hierarchy or, for example, by using the report interface.
    System Response
    The filter is not evaluated for the characteristic, but removed instead.
    Procedure
    Procedure for System Administration
      Notification Number BRAIN 502

    Hi
    Check the below notes
    Note 1040168 - BRAIN 502: Invalid filter is displayed
    Note 1326629 - BRAIN 502 "Invalid filter" or "No applicable Data".

  • Hierarchy based non-cumulative reporting

    BI Gurus,
    I am dealing with a data model with all cumulative "summation" type key figures.  These are hours logged by an employee.  There is also an employee hierarchy which defines the reporting structure.  Now the requirement is to create two reports: (1) Cumulative and (2) non-Cumulatibe report.  Non-cumulative along the hierarchy nodes that expand.  The catch is to show the logged employee hours at each level.  So, a manager should only see his own hours on his row and not the cumulative of his plus his direct reports.  The org structure of the hierarchy needs to be maintained in the report though. 
    One other issue is that the hierarchy being used has all the nodes postable.  Perhaps a new text node based hierarchy may be a viable option but please advise if anyone has any other thoughts. 
    Thanks
    Edited by: Ron on Jul 7, 2008 9:19 PM

    Hi Vikas,
    Authorizations Steps -http://help.sap.com/saphelp_nw2004s/helpdata/en/be/076f3b6c980c3be10000000a11402f/content.htm
    Example http://help.sap.com/saphelp_nw04/helpdata/en/41/05453caff4f703e10000000a114084/frameset.htm
    Authorizations - Reporting
    Assign points if this helps.
    Regards,
    Anil

Maybe you are looking for

  • Single invoice for multiple deliveries

    hi friends, its a case of multiple deliveries in single inoice. split analysis shows split due to defferent header data , number of foreign trade data . As far as I know every delivery is bound to have a unique foreign trade data. How can I combine d

  • What plug in do I need to open files in virtual pc xp mode on windows 7?

    I am unable to open CS 2 In Design files in virtual pc xp mode on windows 7 - even tho it says I should be able to. It says under 'content manager' check for the right plug ins or upgrade to the latest version of in design. What plug in do I need? Or

  • How do I connect a guitar?

    I just ordered a macbook online and am very interested in using garageband. I was just wondering how I connect my guitar to my macbook. Can I just use any guitar cord, or do I need to buy something extra? Also, if I do need to buy something extra, wh

  • What plug in or setting is required to edit 4k atomos files on Sony A7S?

    Hi, Testing out the atomos shogun on my A7S that just came in. When I drag the file to my desktop I can view the video file via Quicktime perfectly, but I am wondering what plug in or software update is required for me to drag the file to premiere an

  • Importing from my ipod to my pc

    Have bought a new pc and want to import the tunes from my ipod mini onto the computer and have just bought a nano and want to transfer the music. how do I do it? tried the obvious, plugged in mini and clicked import but no joy. any help would be appr