‎2006 Aug 23 10:34 AM
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
‎2006 Aug 23 10:37 AM
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
‎2006 Aug 23 10:41 AM
‎2006 Aug 23 12:02 PM
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...
‎2006 Aug 23 12:11 PM
Hi,
From the database view : <b>USER_ADDRS</b> and select field <b>'NAME_TEXT'</b>, you will get complete user name.
Regards
Appana
‎2006 Aug 23 12:48 PM
‎2006 Aug 23 1:07 PM
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
‎2006 Aug 23 1:10 PM
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
‎2006 Aug 23 10:41 AM
you can findout all user related tables with USR*.
Regards
srikanth