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

table name - urgent

Former Member
0 Likes
916

hi all..

can any one tell me where the users email address is stored .. i mean which table holds the value..

thnx

6 REPLIES 6
Read only

Former Member
0 Likes
886

check the table <b>ADR6</b>

Read only

Former Member
0 Likes
886

<b>ADR6 - E-Mail Addresses (Business Address Services)</b>

Regards,

Pavan

Read only

Former Member
0 Likes
886

<b>Hiii

Users Email address are stored in ADR6

Donot forgot to reward points if helpful

Regards

hitesh</b>

Read only

Former Member
0 Likes
886

try the below code.

SELECT persnumber addrnumber

INTO (w_persnumber, w_addrnumber) UP TO 1 ROWS

FROM usr21 WHERE bname EQ sy-uname.

ENDSELECT.

IF sy-subrc EQ 0.

SELECT smtp_addr FROM adr6

INTO w_adr6

UP TO 1 ROWS

WHERE addrnumber = w_addrnumber

AND persnumber = w_persnumber.

ENDSELECT.

Read only

Former Member
0 Likes
886

Hi,

Check the following mail threads.

1.

Reward points if useful.

- Irudayaraj Peter

Read only

graghavendra_sharma
Contributor
0 Likes
886

Best way to find out user's Email is using the following FM

EFG_GET_USER_EMAIL