08-11-2008 9:03 AM
I am sending an email from SAP using the CL_BCS class.
When received in OUTLOOK, a read receipt is being requested.
I am not setting a read receipt in SAP using SET_REPLY_TO, is it being generated by default.
Documentation on CL_BCS does not appear to be available, does anyone know how to stop the read receipt being requested.
Thanks
Paul
08-13-2008 1:07 PM
Hi Paul,
you can use the method
DATA: lro_send_request TYPE REF TO cl_bcs.
.
lro_send_request->SET_STATUS_ATTRIBUTES( I_REQUESTED_STATUS = 'E' ).
If you set the I_REQUESTED_STATUS 'E' you will see the sent mail in the transaction SOST.
If you set the I_REQUESTED_STATUS 'N' you won't even see the mail in the SOST.
Both of them suppress the read & delivery receipt request.
Regards Stefan.
08-13-2008 1:07 PM
Hi Paul,
you can use the method
DATA: lro_send_request TYPE REF TO cl_bcs.
.
lro_send_request->SET_STATUS_ATTRIBUTES( I_REQUESTED_STATUS = 'E' ).
If you set the I_REQUESTED_STATUS 'E' you will see the sent mail in the transaction SOST.
If you set the I_REQUESTED_STATUS 'N' you won't even see the mail in the SOST.
Both of them suppress the read & delivery receipt request.
Regards Stefan.
08-13-2008 1:28 PM