cancel
Showing results for 
Search instead for 
Did you mean: 

email adress

Former Member
0 Kudos

Hi all,

i have an ADR Numberr (of a division) and i need to get the email adress of this number.

wich table can access to get it?

Thx,

Regards

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

chk the table AdR6 or AdRC i am not sure

Answers (2)

Answers (2)

Former Member
0 Kudos

Thanks gyus it's ADR6.

Soufiane

Former Member
0 Kudos

Hi,

have look at Function Module 'SUSR_USER_ADDRESS_READ' which exports Address details of a user if its usefull to you.

DATA:

user_id LIKE ekko-ernam,

w_addr3_val LIKE addr3_val.

call function 'SUSR_USER_ADDRESS_READ'

exporting

user_name = user_id

  • READ_DB_DIRECTLY = ' '

importing

user_address = w_addr3_val

  • USER_USR03 =

exceptions

user_address_not_found = 1

others = 2

.