Application Development and Automation 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: 
Read only

find user-id

former_member184495
Active Contributor
0 Likes
673

hi,

my requirement is i have a personnel number of an employee in P0000 ,

i need to identify the SAP user-id for that PERNR,

how do i get that ?

cheers,

Aditya.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
641

select uname into ws_uname

from PA0000

where pernr EQ given_Pernr.

should return the user name.

hi,

my requirement is i have a personnel number of an employee in P0000 ,

i need to identify the SAP user-id for that PERNR,

how do i get that ?

cheers,

Aditya.

4 REPLIES 4
Read only

Former Member
0 Likes
642

select uname into ws_uname

from PA0000

where pernr EQ given_Pernr.

should return the user name.

Read only

Former Member
0 Likes
641

Hi,

Check tables USR01, USR02,

or see USR* in Se11,

here guve the personel No you will get the SAP User ID

Regards

Sudheer

Read only

Former Member
0 Likes
641

hi,

Check table PA0105

Field names

USRTY - 0001

USRID - User-id for PERNR

Regards

-


Sachin

Read only

former_member184495
Active Contributor
0 Likes
641

answered