2014 Jul 08 6:27 AM
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 ?
2014 Jul 08 9:19 PM
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.
2014 Jul 09 4:18 AM
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
2014 Jul 09 5:19 AM
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
2014 Jul 09 5:22 AM
hi vijaykrishna
in scott setting - confirmation of receipt
click the second radio button - disable read receipt
2014 Jul 09 5:30 AM
Yeah, Thank you.
And Tcode is not SCOTT, it's SCOT .
Regards,
Vijay
2014 Jul 09 5:46 AM
2014 Jul 09 4:52 PM
Glad to see this has been resolved. Kindly close the discussion - see this blog.