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

mail with CC option

Former Member
0 Likes
758

hi all

i am using function module 'SO_DOCUMENT_SEND_API1'

for mailing with attachment.

for mailing list i am populating "receivers" table.

but i am not getting functionality of <b>CC</b>

any idea about this.

thanks in advance.

Thanks & Regards

sree

hi all

i am using function module 'SO_DOCUMENT_SEND_API1'

for mailing with attachment.

for mailing list i am populating "receivers" table.

but i am not getting functionality of <b>CC</b>

any idea about this.

thanks in advance.

Thanks & Regards

sree

4 REPLIES 4
Read only

suresh_datti
Active Contributor
0 Likes
668

In the recivers table there is a field Copy..

ie

reeivers-rec_id = [email protected].

receivers-copy = 'X'.

append receivers.

~Suresh

Read only

0 Likes
668

hi suresh,

thanks for ur reply..

i nedd one more clarification

for mail TO i am setting the following parameters

t_receivers-receiver = it_mailto-id.

t_receivers-rec_type = 'U'.

t_receivers-com_type = 'INT'.

t_receivers-notif_del = 'X'.

t_receivers-notif_ndel = 'X'.

APPEND t_receivers.

from which parameters i have to keep for Mail CC

t_reeivers-rec_id = [email protected].

t_receivers-copy = 'X'.

append receivers.

please give the advise.

Read only

0 Likes
668

You have to just set the t_receivers-copy = 'X' for all the t_receivers-receiver that have to be CC'd

~Suresh

Read only

kowong
Participant
0 Likes
668

t_receiver-receiver = [email protected]'.

t_receiver-copy = 'X'. '<----


Add this for cc

APPEND t_receiver.