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

hide read reciept?

Former Member
0 Likes
983

hi

i m using 'BBP_OUTPUT_PO_DOC_SEND_ADB' this fm to send adobe attachment tthrough mail

i want to hide read reciept ?

   try.
                send_request = cl_bcs=>create_persistent( ).

   lo_send_document = cl_document_bcs=>create_document(
                          i_type    = lv_mail_format
                          i_text    = lt_mailbody
                          i_length  = lv_mailbody_size
                          i_subject = lv_doc_subject_50 ).



*     add document to send request
                CALL METHOD send_request->set_document( lo_send_document ).
*
                send_request->set_status_attributes( i_requested_status = 'E'  ). "Block Read Receipts
*     ---------- send document ---------------------------------------
                CALL METHOD send_request->send(
                  EXPORTING
                    i_with_error_screen = 'X'
                  RECEIVING
                    result              = sent_to_all ).
                IF sent_to_all = 'X'.
                ENDIF.

can u please suggest ?

7 REPLIES 7
Read only

Jelena_Perfiljeva
Active Contributor
0 Likes
940

Here is what I use: 


* Don't need a Return Status E-mail

 

CALL METHOD send_request->set_status_attributes

EXPORTING

i_requested_status = 'E'

i_status_mail = 'E'.

Pretty sure I found it on SCN somewhere.

Read only

0 Likes
940

hi jelena

thanks for ur response

the solution provided by you didnt wrk for me

i am sending mial via external communication

it got solved by changing setting in tcode scott

anyways thank u

regards

sonam

Read only

0 Likes
940

Hi Sonam,

Very recently I have done same kind of object. Can you please tell me where and what are the setting you done for hiding read reciept. I did not find SCOTT tcode.

Thanks,

Vijay

Read only

0 Likes
940

hi vijaykrishna

in scott setting - confirmation of receipt

click the second radio button - disable read receipt

Read only

0 Likes
940

Yeah, Thank you.

And Tcode is not SCOTT, it's SCOT .

Regards,

Vijay

Read only

0 Likes
940

ok .

Read only

Jelena_Perfiljeva
Active Contributor
0 Likes
940

Glad to see this has been resolved. Kindly close the discussion - see this blog.