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

Remove email send acknowledgements

Former Member
0 Likes
892

When sending electronic messages via Microsoft Outlook via SAP:

  • create the document

document = cl_document_bcs=>create_document(

  • i_type = 'ALI'

i_type = 'OTF'

i_subject = title_tex

  • i_hex = contents_hex ).

i_text = contents_bin ).

  • add document to send request

call method send_request->set_document( document ).

  • create recipient and add to send request

recipient = cl_cam_address_bcs=>create_internet_address(

I_ADDRESS_STRING = send_to-addr ).

send_request->add_recipient( i_recipient = recipient ).

*--set send immediately flag

send_request->set_send_immediately( 'X' ).

  • send

sent_to_all = send_request->send( i_with_error_screen = 'X' ).

in OUtlook, I as the sender get the system administrator message plus a read acknowledgement in my inbox. How do I disable getting these messages?

thx,

Mike DeGuire

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
630

Hi Mike,

In TCODE SCOT under Settings --> Confirmation of Receipt

select the radio button "SAP Connect does not expect receipt confirm for Internet mail"

Try this and let me know if it works

Regards

1 REPLY 1
Read only

Former Member
0 Likes
631

Hi Mike,

In TCODE SCOT under Settings --> Confirmation of Receipt

select the radio button "SAP Connect does not expect receipt confirm for Internet mail"

Try this and let me know if it works

Regards