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

CC/BCC in SO_DOCUMENT_SEND_API1

Former Member
0 Likes
3,503

Dear,

When i send mail through the module SO_DOCUMENT_SEND_API1, mail is sent in

To: attribute of a mail.

I also want to send in CC and BCC.

How is it possible.

Regards,

Priya

1 ACCEPTED SOLUTION
Read only

Former Member
1,451

during appending data to reclist

suppose RECLIST is your recevers table

for cc use addtional

RECLIST-COPY = 'X '.

for bcc use

RECLIST-BLIND_COPY = 'X '.

Regards,

Alpesh

Edited by: Alpesh on Mar 7, 2009 11:33 AM

3 REPLIES 3
Read only

Former Member
1,452

during appending data to reclist

suppose RECLIST is your recevers table

for cc use addtional

RECLIST-COPY = 'X '.

for bcc use

RECLIST-BLIND_COPY = 'X '.

Regards,

Alpesh

Edited by: Alpesh on Mar 7, 2009 11:33 AM

Read only

Former Member
0 Likes
1,451

WA_RECEIVERS-RECEIVER = 'xxxyy'.

WA_RECEIVERS-REC_TYPE = 'U'.

WA_RECEIVERS-COM_TYPE = 'INT'.

WA_RECEIVERS-NOTIF_DEL = 'X'.

WA_RECEIVERS-NOTIF_NDEL = 'X'.

WA_RECEIVERS-COPY = 'X'. " For Copy Mark

APPEND WA_RECEIVERS TO IT_RECEIVERS.

CLEAR WA_RECEIVERS

WA_RECEIVERS-RECEIVER = 'xxx'.

WA_RECEIVERS-REC_TYPE = 'U'.

WA_RECEIVERS-COM_TYPE = 'INT'.

WA_RECEIVERS-NOTIF_DEL = 'X'.

WA_RECEIVERS-NOTIF_NDEL = 'X'.

WA_RECEIVERS-BLIND_COPY = 'X'. " For Blind Copy Mark

APPEND WA_RECEIVERS TO IT_RECEIVERS.

CLEAR WA_RECEIVERS

Read only

Former Member
0 Likes
1,451

Hi,

Is it working ???

regards,

Raghunath