Need to find employees reporting to a manager

Hi All,
I am new to HR module.
Basically, i need to develop a report which would list out all the employees reporting to a given manager ID. I am trying to understanding how this org unit, positions and users are tied to each other and what set of tables or function modules are involved in knowing all the employees reporting to a manager.
If my question is unclear, please let me know.
Thanks,
SKJ

SKJ,
Hope this helps.
1. I had to pass 002 (Reports (line) to ) Instead of 008 to RELAT to get all those positions reporting to manager position fould in step1. Is this correct?
Ans : 002 Relation is the Reporting Relation and 008 is Holder Relationship.
002 will help you to identify the relation ie, which position reports to which position. but if you want to know who is holding the position, you will need 008 relation.
In your case both relation may be required.
2. Does your steps work in any system? I mean, no matter how the data is set up in HRP1001?
Ans : This is the standard System behavior. Unless there is specific changes.
3. Can you also let me know how to start deriving this at company code level? I also have company code termed as Line of Business on my selection. User may enter only company code and i will have to extract everything.
Ans : If you have setup account assignmnet setting for the OU, then you should be able to do that.

Similar Messages

  • SAP-HR : How to view list of all employees reporting to a manager

    Hi friends,
    I need to get the list of all the employee reporting to a particular manager. How do i do that?
    Please help!!

    go to the org assignment of the manager pernr and look at lla EE's reporting to him
    else go to PPOSE and have a look at the same.
    reward points if issue resolved

  • Need a Vulnerability Severity Report for Patch Management

    In the standalone version of patch management (v6.4) there was a dashboard feature on the server home page called Vulnerability Severity. It was a graphic chart that displayed the percentage of un-remediated applicable vulnerabilities vs applicable vulnerabilities grouped by vulnerability severity. This feature is not available in the BusinessObject Enterprise InfoView. It looks like the only way I have of getting this feature is to create a report, but I am not an expert at using InfoView. I was wondering if anyone had any tips on creating such a report?
    The only predefined report that even comes close is the Vulnerability Analysis report, but it's hundreds of pages long. I need something on a single page, like a chart, showing the percentages grouped by vulnerability severity (critical, recommended, optional).

    mdstewar,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Need to find standard reports

    Hi all,
        Where can I find the standard reports in FI module, how can I activate those? Where can i get the documentation regarding those reports?
    Thank you in advance,
    Chandra.

    Hi
    Please goto SE81 and click on FI.
    You will get the standard packages for FI with the programs available
    Please check out this link
    http://www.sap-img.com/financial/useful-reports-tcode-in-sap-financial-accounting.htm
    Message was edited by: Dominic  Pappaly

  • Need to find excel template for project manager to track a project

    need an informationon excel templates for tracking projects

    You just need to install Traditional DAQ language support for Visual Basic, and you'll get the header files. I've attached it below for your convenience. (had to rename it to a txt file to be able to attach it here).
    Joe
    Attachments:
    wdaq_vb.txt ‏19 KB

  • Needs assistance finding SAP report that will list subsequent notifications

    Hello, I am looking for a report in SAP that will list Subsequent Notifications by Work Centre. Currenty, customized SAP transaction ZPMR05 will list Subsequent Notifications by functional location but not Work Centre.
    Please help.

    hi
    can you elaborate your query ,you can use IW28 ,specify the work center and execute .you can get the list of notification for the work center.
    regards
    thyagarajan

  • Return the managers and Employees that reports to a manager

    Hello Everyone,
    I need your help in the following query using connect by:
    I have 2 tabels
    Tabel_1
    Department hierarchy
    department_id parent_department_id has_manager
    1 NULL X
    2 1
    3 1 X
    4 2 X
    5 4
    tabel_2
    emp_id department_id is_manager
    1 1 X
    2 1
    3 1
    4 2
    5 2
    6 4 X
    7 4
    8 4
    9 3 X
    10 5 X
    now in my company the concept of direct employees is as follow:
    my direct employees are: the employees in my department + only the manager in the department below me in the hierarchy.
    if the department bellow me has no manager then also these employees in that department reports to me
    then we check the lower department and so on untill we find a manger then this manager reports to me but his employees reports to him so they are not my direct employees
    for the above example should be as follows
    if i want to get the direct employees of emp_id= 1
    then result is
    2
    3
    4
    5
    6
    9
    Best regards
    Ibrahim

    Hi, Ibrahim,
    Welcome to the forum!
    Whenever you have a question, please post CREATE TABLE and INSERT statements for your sample data. Since this is your first post, I'll do it for you:
    CREATE TABLE     department
    (       department_id          NUMBER     PRIMARY KEY
    ,     parent_department_id     NUMBER
    ,     has_manager          VARCHAR2 (1)
    INSERT INTO department (department_id, parent_department_id, has_manager)
                         VALUES (1,            NULL,               'X');
    INSERT INTO department (department_id, parent_department_id, has_manager)
                         VALUES (2,            1,               NULL);
    INSERT INTO department (department_id, parent_department_id, has_manager)
                         VALUES (3,            1,               'X');
    INSERT INTO department (department_id, parent_department_id, has_manager)
                         VALUES (4,            2,               'X');
    INSERT INTO department (department_id, parent_department_id, has_manager)
                         VALUES (5,            4,               NULL);
    CREATE TABLE     emp
    (       emp_id          NUMBER     PRIMARY KEY
    ,     department_id     NUMBER
    ,     is_manager     VARCHAR2 (1)
    INSERT INTO emp (emp_id, department_id, is_manager)
                 VALUES (1,       1,                 'X');
    INSERT INTO emp (emp_id, department_id, is_manager)
             VALUES (2,       1,                 NULL);
    INSERT INTO emp (emp_id, department_id, is_manager)
             VALUES (3,       1,                 NULL);
    INSERT INTO emp (emp_id, department_id, is_manager)
             VALUES (4,       2,                 NULL);
    INSERT INTO emp (emp_id, department_id, is_manager)
             VALUES (5,       2,                 NULL);
    INSERT INTO emp (emp_id, department_id, is_manager)
            VALUES (6,       4,                 'X');
    INSERT INTO emp (emp_id, department_id, is_manager)
             VALUES (7,       4,                 NULL);
    INSERT INTO emp (emp_id, department_id, is_manager)
             VALUES (8,       4,                 NULL);
    INSERT INTO emp (emp_id, department_id, is_manager)
             VALUES (9,       3,                 'X');
    INSERT INTO emp (emp_id, department_id, is_manager)
            VALUES (10,      5,                 'X');
    913209 wrote:if the department bellow me has no manager then also these employees in that department reports to me
    then we check the lower department and so on untill we find a manger then this manager reports to me but his employees reports to him so they are not my direct employeesWhat if a department directly below that has no manager? For example, if we add this to the sample data:
    INSERT INTO department (department_id, parent_department_id, has_manager)
                         VALUES (6,            2,               NULL);
    INSERT INTO department (department_id, parent_department_id, has_manager)
                         VALUES (7,            6,               NULL);Would anyone working in departments 6 or 7 (as well as 1 or 2) be included? I assume so. If that's wrong, then you don't need CONNECT BY: a self-join would be enough.
    Here's one way to do that:
    WITH     my_departments     AS
         SELECT     department_id
         ,     LEVEL          AS lvl
         ,     SYS_CONNECT_BY_PATH (has_manager, '/')     AS manager_path
         FROM     department
         START WITH     department_id     = (
                                         SELECT  department_id
                                   FROM    emp
                                   WHERE   emp_id       = 1     -- Parameter
                                   AND     is_manager  = 'X'
         CONNECT BY     parent_department_id     = PRIOR department_id
    SELECT       e.emp_id
    FROM       my_departments     d
    JOIN       emp               e  ON   d.department_id  = e.department_id
    WHERE       (    REGEXP_LIKE ( d.manager_path
                            , '^/X/*$'
           AND  e.emp_id        != 1          -- Parameter
    OR       (    REGEXP_LIKE ( d.manager_path
                           , '^/X/*X$'
           AND  e.is_manager     = 'X'
    ORDER BY  e.emp_id
    ;Another thing you should do in every thread is say which version of Oracle you're using. The query above will work in Oracle 10.1 and higher.
    The tricky part of thsi query is that we really want to use this CONNECT BY clause:
    ...     CONNECT BY     parent_department_id     = PRIOR department_id
              AND     has_manager          IS NULLbut to go one more level, that is, find not only the nodes above, but also their immediate children. I can't think of a good way to do that which is not more complicated (and probably less efficient) than what I posted above.

  • Need to customized report in solution manager but duno which table to pull

    Dear Gurus,
    I need to create a customized report in solution manager to get the following fields:
    1) Message number
    2) Transport number link to the message number
    3) Target client the transport go to
    4) Date/Time of status change to "Consolidate"
    5) Date/Time of transport imported
    6) Date/Time of Email Sent through message when requesting for transport
    Pls, help find the relation tables for the above objects, I'm a developer without any functional help and with no knowleadge of solution manager. Pls, help ASAP!
    Desperate,
    Belinda

    Hi Belinda,
    open the service message application in the Solman.
    Open a service message, focus the needed fields and press F1 for technical details. Try finding the tables by using the      where-used list.
    Cheers,
    André

  • Need to find out the usage of report

    Hi,
    I have published few reports in infoview. Need to find who all are accessing these reports & when.
    Can somebody help me?
    Thanks

    I would recommend to take a look at the admin guide
    http://help.sap.com/businessobject/product_guides/boexir31SP3/en/xi31_sp3_bip_admin_en.pdf
    Check the Managing auditing and Auditing reports sections.
    Regards,
    Stratos

  • Bank of America requires Firefox 5 on Mac for their CashPro online treasury management. I need to find version FF 5.0 to download and install. Help!

    Bank of America requires Firefox 5 on Mac for their CashPro online treasury management. I need to find version FF 5.0 to download and install. Help! I just need a link to version 5.0 so I can install it. The website throws and error when using 6.0.#. BofA Tech Support said I needed to downgrade and that was the ONLY solution. I hate large corporations. If someone could provide the link I would appreciate it.

    All versions:
    ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/
    BUT keep in mind that the older versions aren't supported any longer and are missing hundreds of security patches that are in the latest versions of Firefox.
    thank you

  • Standard SAP Report to get Manager PERNRs for specified Employee PERNRs

    Hello All,
    Is there any standard report whcih I can use to pass Employee PERNRs in the selection, and get the respective Manager PERNRs as output?
    Thanks,
    NS

    Nakul,
    For you information, PA and OM is be organized in the O-S-P(organization-position-person)  format
    There is no direct relationship between the employee to employee. It is like
    Employee to Employee position
    Then position to position (A002 - Reporting line)
    Then position to employee (Reporting Manager).
    For any coding part Check this link
    Re: Getting reporting data of all pernrs
    Regards,
    Anand babu R

  • Finding employees 'under' manager in org.management in HR

    hi there,
    i have to know which employees are 'under' a person in org.management.
    e.g. i need to know all employees from a specific manager.
    is there any function call and/or method of class which can achive this ?
    best regards, Martin

    ACT_OTYPE                       P                      
    ACT_OBJID                       00078042               
    ACT_WEGID                       O_S_P                  
    ACT_INT_FLAG                                           
    ACT_PLVAR                       01                     
    ACT_BEGDA                       13.05.2008             
    ACT_ENDDA                       13.05.2008             
    ACT_TDEPTH                          0                  
    ACT_TFLAG                       X                      
    ACT_VFLAG                       X                      
    AUTHORITY_CHECK                 X                      
    TEXT_BUFFER_FILL                X                      
    BUFFER_MODE                     X                      
    this is what i pass............... in act_wegid i can put in also other names of eval.path, i got always the message with the agent
    reg, Martin

  • Any FM to find the Reporting Employee

    Hi,
    I want to find the name of the Employee to whom the Employee reports.
    i,e i want to find the name of my boss in the company.
    Is there any FM to find it, by entering the PERNR(Employee ID).
    Pls help me out.
    Thanks & Regards,
    Dhruv Shah

    Use this coding ..
    SELECT SINGLE sobid FROM hrp1001 INTO ls_sobid1
    WHERE otype = 'P'
    and plvar = '01'
    AND objid = pernr
    AND endda >= sy-datum
    AND begda <= sy-datum
    AND rsign = 'B'
    AND relat = '008'.
    IF sy-subrc EQ 0.
    SELECT SINGLE sobid FROM hrp1001 INTO ls_sobid2
    WHERE otype = 'S'
    and plvar = '01'
    AND objid = ls_sobid1
    AND endda >= sy-datum
    AND begda <= sy-datum
    AND rsign = 'A'
    AND relat = '002'.
    IF sy-subrc EQ 0.
    SELECT SINGLE sobid FROM hrp1001 INTO ls_sobid3
    WHERE otype = 'S'
    and plvar = '01'
    AND objid = ls_sobid2
    AND endda >= sy-datum
    AND begda <= sy-datum
    AND rsign = 'A'
    AND relat = '008'.
    IF sy-subrc EQ 0.
    SELECT SINGLE vorna nachn from pa0002 INTO (vorna , nachn)
    WHERE pernr = ls_sobid3
    AND endda >= sy-datum
    AND begda <= sy-datum.
    IF sy-subrc EQ 0.
    Concatenate vorna nachn into name separated by SPACE.
    condense name.
    ENDIF.

  • I no longer have access to system folders that allow me to remove old or incorrect PAGES templates. Need to find out how to do that. The only way I can do it now is to blank the template and replace the bad template with a blank.

    I no longer have access to system folders that allow me to remove old or incorrect PAGES templates. Need to find out how to do that. The only way I can do it now is to blank the template and replace the unwanted template with a blank. It was previously possible to go to MY TEMPLATES and remove the unwanted templates. I don't if this issue is before or since installation of 10.8 (a nightmare in my case, which led to significant failure issues).  And because I haven't tried to remove templates since finally managing to install 10.8 (now at 10.8.4), I don't know if this is typical of the newer OS or a problem. I've been a Mac user for more than 25 years, but I think I'm nearing the end of the road. By the way, I've never needed to do this before because the manuals always offered an answer... they don't seem to do that anymore. In any case, I don't know how this works... I'd prefer an email reply if that's possible. But that would probably be too easy, and I don't know how to get a reply.

    Thanks, I appreciate the help.  I think this is one of the problems Apple is creating by changing the OS so often. I had fomer colleagues at [a major aerospace contractor] who told me that so many original files were ultimately lost because of the deadly change in the "Save As" operation that they are now afraid of every OS update. Apple has badly damaged their support base with that very prominent company (they won't update now until they've fully examined and understand changes in the pre-conditioned nature of OS computer functions), and they are a whole lot less enthaled with Mac-related equipment/software. Can't blame them, I too used orginal files that way (as easy-to-use templates), and lost some important files before I realized what was happening (to late to revert). Companies should not have to retrain employees each time an OS gets an update, it's can be very expensive several different ways. They learned a painful lesson with that one. And because I'm now retired and don't use multiple devices, I need iCloud like I need a hole in the head... but I'm told there's no way to keep Apple out of my computer. Fortunately, because of major problems when initially installing Mountain Lion, one hold-over of the hardware/software damage I experienced was that iCloud can no longer access my computer even though everything else is working fine again. That was the only "good luck" I had as a result of that expensive nightmare.

  • Need object on loans report

    hi experts,
                 i am an abaper working with HR module .i need to prepare a report for object of loans for all employees.all other reports like education birthday dates are avilable i coul'nt find any standard report for loans .Is there any report available or we need to go for devloping reports thru programs?

    Hi
    You can use this report HINCLON1 in se38
    cheers
    durai

Maybe you are looking for