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: 

Sender Name in The Email Functio Module

Former Member
0 Kudos

Hi All,

I have a requirement to change the sender name in the function module SO_NEW_DOCUMENT_SEND_API1 .

By Default this function module takes the name of the sender from the log in id .

Please suggest how I can do it...

Thnks ...

sahil

2 REPLIES 2

Former Member
0 Kudos

Hi,

Use SO_DOCUMENT_SEND_API1 instead as this lets you specify the sender.

Darren

Former Member
0 Kudos

Hi sahiil,

I_OBJTXT = 'Find attached the output of the smartform.'.
APPEND I_OBJTXT.
I_OBJTXT = 'Regards,'.
APPEND I_OBJTXT.
I_OBJTXT = '  '.-----> sender name
APPEND I_OBJTXT.

Regards,

Sravanthi