Application Development 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: 

Sending email via CL_BCS - Supressing read receipt request

Former Member
0 Kudos

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

1 ACCEPTED SOLUTION

Former Member

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.

2 REPLIES 2

Former Member

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.

Former Member
0 Kudos

Thanks Stefan,

Worked beautifully.

Paul