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

Created by Jerry Wang on Feb 15, 2014

the signature of CL_DOCUMENT_BCS~ADD_ATTACHMENT:

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:

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.

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


你可能感兴趣的:(如何使用ABAP发送带有PDF格式附件的电子邮件)