2007 Mar 05 9:09 AM
Hi,
im using FM SO_NEW_DOCUMENT_ATT_SEND_API1 to send email and it works fine. my problem is i dont know how to fill the 'CC' field of my email, im using MS Outlook by the way.
thanks for your support!
2007 Mar 05 9:11 AM
try this for CC..
reeivers-rec_id = abc@xyz.com.
receivers-copy = 'X'.
append receivers.
2007 Mar 05 9:11 AM
try this for CC..
reeivers-rec_id = abc@xyz.com.
receivers-copy = 'X'.
append receivers.
2007 Mar 05 9:12 AM
hi Jesus,
do this way ..
You need to give copy = 'X' for the parameter you are passing.
For eg..
i.e,
itab-receiver = 'xyz@yahoo.com'.
itab-express = 'X'.
itab-copy = ''.
itab-rec_type = 'U'. "Internet address
APPEND itab.
itab-receiver = 'abc@yahoo.com'.
itab-express = 'X'.
itab-copy = 'X'.
itab-rec_type = 'U'. "Internet address
APPEND itab.
*itab-copy = 'X'.
*append itab.
call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
...
tables
receivers = itab
....
Message was edited by:
Santosh Kumar Patha
2007 Mar 05 9:12 AM
In the RECEIVERS
table, there is a field COPY. Set that to 'X'.
Regards,
Ravi
2007 Mar 05 9:19 AM