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

SAP Mail Function: From address Change

Former Member
0 Likes
366

Hi,

When using the function SO_NEW_DOCUMENT_ATT_SEND_API1, can I change "from address"? Users (on SU01) don't want to appear on an e-mail address.

Best Regards.

Edited by: ahmet sevil on Aug 31, 2010 9:59 AM

1 ACCEPTED SOLUTION
Read only

JoffyJohn
Active Contributor
0 Likes
333

CALL FUNCTION 'SO_DOCUMENT_SEND_API1'

EXPORTING

SENDER_ADDRESS = SPACE " you can pass your value

or else DEFAULT SY-UNAME will be taken as sender

2 REPLIES 2
Read only

JoffyJohn
Active Contributor
0 Likes
334

CALL FUNCTION 'SO_DOCUMENT_SEND_API1'

EXPORTING

SENDER_ADDRESS = SPACE " you can pass your value

or else DEFAULT SY-UNAME will be taken as sender

Read only

Former Member
0 Likes
333

Thanks, I'll try.