‎2009 May 05 8:23 AM
I am sending a script through FM CONVERT_COMM_TYPE_DATA .My requirement is to send this script to one more person in BCC field.
Is this possible.
Regards.
‎2009 May 05 8:57 AM
FM SO_DOCUMENT_SEND_API1 has TABLES "receivers" and you can assign Blind Copy by appendig data to it like e.g. given below.
t_receivers-receiver = 'some email address'.
t_receivers-rec_type = 'U'.
t_receivers-com_type = 'INT'.
t_receivers-notif_del = 'X'.
t_receivers-notif_ndel = 'X'.
t_receivers-express = 'X'.
t_receivers-blind_copy = 'X'.
APPEND t_receivers.
CLEAR t_receivers.
for FM CONVERT_COMM_TYPE_DATA what data are you passing to PE_MAIL_RECIPIENT?