如何使用ABAP发送带有PDF格式附件的电子邮件

Created by Jerry Wang on Feb 15, 2014

the signature of CL_DOCUMENT_BCS~ADD_ATTACHMENT:

如何使用ABAP发送带有PDF格式附件的电子邮件_第1张图片

suppose we already have PDF binary source with type XSTRING, variable iv_pdf_content.
i_attachment_type: value list of attachment type could be found in value table TSOTD:

如何使用ABAP发送带有PDF格式附件的电子邮件_第2张图片

in PDF, we should use BIN
i_attachment_size: could be filled via xstrlen( iv_pdf_content )
i_att_content_hex: cl_document_bcs=>xstring_to_solix( ip_xstring = iv_pdf )
i_attachment_subject: for example test.pdf
finally the PDF attachment could be found in email box.

如何使用ABAP发送带有PDF格式附件的电子邮件_第3张图片

要获取更多Jerry的原创文章,请关注公众号"汪子熙":

你可能感兴趣的:(Jerry,Wang的原创SAP技术文章,CRM,ABAP)