2007 Sep 24 8:42 AM
hallow
how i couled see which org.unit emp is mange.
meaning put emp num and find which org emp is manage today
i now that emp couled mange more than one org.unit .
Regards
2007 Sep 24 8:47 AM
Hi,
select ORGEH
from PA0001 table
where pernr in so_pernr
and endda eq '31129999'.
Check from table PA0001, put the pernr entry and in Endda put 31.12.9999.
Select ORGEH (org. Unit)
Sandeep Kaushik
2007 Sep 24 8:48 AM
Hi
see the Employee orgn Unit in PA0001 infotype and also
Check the Orgn Management Infotypes
HRP1000, 1001 to 1005 etc
regards
Anji
2007 Sep 24 8:50 AM
Hi,
If you want use in program, just use FM: HR_GET_EMPLOYEE_DATA.
You will find at PERSONAL_DATA-ORGEH.
Regards,
2007 Sep 24 9:13 AM
With the organizational unit number the manager of which you are looking for, go to HRP1001 table and select with the following criteria:
RSIGN = '012'
RELAT = 'B'
ENDDA = '99991231'
SCLAS= 'S'
The returning SOBID gives the position of the unit's manager.
To find the personnel number, again go to HRP1001 with the following criteria:
RSIGN = '008
RELAT = 'A'
ENDDA = '99991231'
SCLAS= 'P'
The returning SOBID gives the personnel number of the unit's manager.
(Reward if the answer is useful)
Regards,
Dilek