‎2007 Jul 03 3:23 PM
I wanted to get all the SAP users based on the parameter i pass. Im using BAPI BAPI_USER_GETLIST, but the problem with this BAPI, does not return the Name (First Name & Last name).
Can anyone tell me how can i get the User ID, First name & Last name from SAP?
BM
‎2007 Jul 03 3:25 PM
‎2007 Jul 03 3:25 PM
‎2007 Jul 03 3:31 PM
But I want to get the list of User ID..For example, If I pass the Last Name then i need to get the list of all USER ID, so BAPI_USER_GET_DETAIL will not help me.
BM
‎2007 Jul 03 3:34 PM
‎2007 Jul 03 3:52 PM
simply use V_USR_NAME Database view
select single * from v_usr_name into v_usr_name
where NAME_LAST = ''.
Thanks
Seshu