Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

find which org unit emp manage

Former Member
0 Kudos
109

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

4 REPLIES 4

former_member208856
Active Contributor
0 Kudos
79

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

Former Member
0 Kudos
79

Hi

see the Employee orgn Unit in PA0001 infotype and also

Check the Orgn Management Infotypes

HRP1000, 1001 to 1005 etc

regards

Anji

Former Member
0 Kudos
79

Hi,

If you want use in program, just use FM: HR_GET_EMPLOYEE_DATA.

You will find at PERSONAL_DATA-ORGEH.

Regards,

Former Member
0 Kudos
79

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