How to attachment pdf and send mail in sap abap

To attach a PDF file and send an email in SAP ABAP, you can use the following steps:

Step 1: Create a PDF file

You can create a PDF file using the cl_bcs class in ABAP. Here's an example:

DATA: lo_pdf TYPE REF TO cl_bcs,
      lv_pdf TYPE string.

lo_pdf = cl_bcs=>create_persistent( ).
lv_pdf = lo_pdf->create_pdf( ).

Step 2: Add content to the PDF file

You can add content to the PDF file using the add_text method:

lo_pdf->add_text( 'Hello World!' ).

Step 3: Save the PDF file

Save the PDF file to a temporary location:

lo_pdf->save( 'C:\Temp\example.pdf' ).

Step 4: Create an email

Create an email using the cl_bcs class:

DATA: lo_email TYPE REF TO cl_bcs,
      lv_subject TYPE bcs_subject,
      lv_text    TYPE bcs_text.

lv_subject = 'Test Email'.
lv_text = 'This is a test email'.

lo_email = cl_bcs=>create_persistent( ).
lo_email->set_subject( lv_subject ).
lo_email->set_text( lv_text ).

Step 5: Attach the PDF file to the email

Attach the PDF file to the email using the add_attachment method:

lo_email->add_attachment(
  EXPORTING
    attachment = lo_pdf
    filename   = 'example.pdf'
  EXCEPTIONS
    OTHERS     = 1
).

Step 6: Send the email

Send the email using the send method:

lo_email->send( ).

Here's the complete code:

REPORT zsend_email_with_pdf.

DATA: lo_pdf TYPE REF TO cl_bcs,
      lv_pdf TYPE string,
      lo_email TYPE REF TO cl_bcs,
      lv_subject TYPE bcs_subject,
      lv_text    TYPE bcs_text.

lo_pdf = cl_bcs=>create_persistent( ).
lv_pdf = lo_pdf->create_pdf( ).

lo_pdf->add_text( 'Hello World!' ).
lo_pdf->save( 'C:\Temp\example.pdf' ).

lv_subject = 'Test Email'.
lv_text = 'This is a test email'.

lo_email = cl_bcs=>create_persistent( ).
lo_email->set_subject( lv_subject ).
lo_email->set_text( lv_text ).

lo_email->add_attachment(
  EXPORTING
    attachment = lo_pdf
    filename   = 'example.pdf'
  EXCEPTIONS
    OTHERS     = 1
).

lo_email->send( ).

Note: Make sure to replace C:\Temp\example.pdf with the actual path and filename where you want to save the PDF file. Also, ensure that the email server is configured correctly in your SAP system.