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: 

how to read user data for many users at once?

Former Member
0 Kudos

Hi all.

Does smbdy know how is it possible to read user address data (tel., email) for

many users at once. The required data is the same as one returned by function module BAPI_USER_GET_DETAIL, but it works only for one user.

TIA, regards,

Nikolai.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Nilolai,

try by se16 on the following tables :


USR01                          User master record (runtime data)         
USR03                          User address data      
USR06                          Additional Data per User                  

+
ADRC                           Adress data 

Hope this helps,

Erwan

5 REPLIES 5

Former Member
0 Kudos

Hi Nilolai,

try by se16 on the following tables :


USR01                          User master record (runtime data)         
USR03                          User address data      
USR06                          Additional Data per User                  

+
ADRC                           Adress data 

Hope this helps,

Erwan

Former Member
0 Kudos

Get user details for all users from tables

USR01 User master record (runtime data)

USR02 Logon Data (Kernel-Side Use)

USR03 User address data

USR04 User master authorizations

USR05 User Master Parameter ID

USR06 Additional Data per User

USR06SYS System-Specific User Classification (Licen

USR07 Object/values of last authorization check

USR08 Table for user menu entries

USR09 Entries for user menus (work areas)

USR10 User master authorization profiles

USR11 User Master Texts for Profiles (USR10)

USR12 User Master Authorization Values

USR13 Short Texts for Authorizations

USR14 Surchargeable Language Versions per User

USR15 External User Name (Replaced By Table USRA

USR16 Values for Variables for User Authorizatio

Regards

Prax

0 Kudos

thanks, but actually I need a function module, that returns list of users and their address data. May be it already exists?

0 Kudos

still need

0 Kudos

Hi Niko,

I suggest you to enclose your Bapi BAPI_USER_GET_DETAIL in an ABAP and build a list/file.

1- Select your user list from table ( given previously ) into an internal table

2- Loop on the Internal table

3- Call the BAPI

4- Append all the output table

5- close loop.

Hope this helps,

Erwan