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

email program: my emails asking for conformation.

Former Member
0 Likes
753

Hai all,

I wrote an email program using abap code ECC 6. i used the class cl_document_bcs. The emails asking the receipent to give conformation that he received the mail. This is a big problem for us. Please help me to avoid that conformation code.

Thanks in advance,

K.Srinivas.

Hai all,

I wrote an email program using abap code ECC 6. i used the class cl_document_bcs. The emails asking the receipent to give conformation that he received the mail. This is a big problem for us. Please help me to avoid that conformation code.

Thanks in advance,

K.Srinivas.

4 REPLIES 4
Read only

BH2408
Active Contributor
0 Likes
717

Hi ,

Could you please put your mail triggering code.....

Refer the programs BCS_EXAMPLE* ...

Thanks and Regards,

Bharani.

Edited by: SeethaRamaiah Bharani on Dec 9, 2010 10:46 AM

Read only

Former Member
0 Likes
717

dear sitaramayya,

I used cl_cam_address_bcs class to send the eamils. my code is

mailto = wa_t_receivers-receiver .

recipient = cl_cam_address_bcs=>create_internet_address( mailto ).

send_request->add_recipient( recipient ).

  • ---------- send document ---------------------------------------

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

regards,

k.srinivas

Read only

BH2408
Active Contributor
0 Likes
717

Hi ,

Use these classes for sender and recipient,

DATA: sender TYPE REF TO cl_sapuser_bcs.

DATA: recipient TYPE REF TO if_recipient_bcs.

CALL METHOD send_request->add_recipient

EXPORTING

i_recipient = recipient

i_express = 'X'.

Thanks and Regards,

Bharani

Edited by: SeethaRamaiah Bharani on Dec 9, 2010 11:07 AM

Read only

Former Member
0 Likes
717

Hi Srinivas,

I think this is because of a setting.

Go to transaction SCOT

In the menu choose Settings --> Confirmation of receipt

Choose "SAP connect does not expect receipt confirm"

Try this out

Regards