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

User Name

Former Member
0 Likes
1,002

In our company we use Single Sign On i.e, SSO ID for logon (it is 10 digit number used for logging to system)...

Now i want to find out the USer name for particular SSO ID enter in the report ...

Can anyone findout the FM for that..it should be like...when i enter the SSO ID as input the o/p to be given as the user name..

Thanks in advance

8 REPLIES 8
Read only

Former Member
0 Likes
892

U can read the name from USR03 table.

OR

U can also use the FM SUSR_SHOW_USER_DETAILS

Message was edited by: Anurag Bankley

Read only

0 Likes
892

hi,

or join tables usr21 and ADRP

A.

Read only

0 Likes
892

Actually my problem is..

my field is EKPO-AFNAM..i want to link this field to NAME1 and NAME2..how to do this..

If i enter my number i.e, AFNAM value it should give me NAME1 AND NAME2...

Read only

0 Likes
892

Hi,

From the database view : <b>USER_ADDRS</b> and select field <b>'NAME_TEXT'</b>, you will get complete user name.

Regards

Appana

Read only

0 Likes
892

can u explain in detail

Read only

0 Likes
892

you can use the below to fetch the required.

SELECT name1 name2 into lname1 lname2

from usr03

where bname = ekpo-afnam.

--> Here the variable lname1 and lname2 would have the details.

Regards

Anurag

Read only

0 Likes
892

Hi,

even i use the same concept of SSO,

u can find in view USER_ADDR , fieldname NAME_TEXTC

or u can find the NAME1 and NAME2 in ADRC table

Read only

Former Member
0 Likes
892

you can findout all user related tables with USR*.

Regards

srikanth