Sending email with attachment in SAP ABAP详解编程语言

Step1:Requirement Send email with attachment in SAP ABAP Normal 

In real time most of the applications using emails need to send data as a attachment, in the below tutorial you will learn how to send email with attachment.

Before going into the full details, please go through the tutorial 
Sending email using SAP ABAP .

Email is a concept of sending binary data to a mail server (SMTP), the mail server recieves the data and send it to the respective recipient.

To send attachment, we need to convert data into binary format.

To send data in an internal table (data) we need to convert internal table data into binary format.

Requirement: Send the list of materials with basic details to the specified email id as attachment for a material type.
Requirement analysis:
 Get the list of materials for a material type(MTART) from MARA table and send the material details to the specified email id.

Resources used for sending email with attachment in SAP

CL_BCS (class_ To send email using SAP ABAP
HR_KR_STRING_TO_XSTRING (Function Module) Used to convert string to xstring
SCMS_XSTRING_TO_BINARY (Function Module) Used to convert xstring into binary data

Step2:Design selection-screen for email id and material type input Normal 

Go to SE38, provide a program name ZSAPN_SEND_EMAIL, create, provide short text and save it in a local object.

Design selection-screen for material type, email id, subject, send immediately flag inputs.

PARAMETERS P_MTART TYPE MARA-MTART. "material type input 
PARAMETERS : P_EMAIL TYPE ADR6-SMTP_ADDR. "Email input 
PARAMETERS: P_SUB TYPE CHAR50. "email subject 
PARAMETERS : P_SEND AS CHECKBOX. "send immediately flag

Send email wil attachment in SAP ABAP

Step3:Set email document for class CL_BCS Important 

Declare CL_BCS class and create object for the class Cl_BCS.

*Prepare Mail Object 
DATA:  LO_SEND_REQUEST TYPE REF TO CL_BCS VALUE IS INITIAL. 
CLASS CL_BCS DEFINITION LOAD. 
LO_SEND_REQUEST = CL_BCS=>CREATE_PERSISTENT( ). 

Technically email is a binary document, we need to add document to the email object.Document contains parameters like email type (HTM, TXT etc), email subject, email body.

EMAIL BODY: We can send email body of 255 characters per line, email body might be more than 255 characters, so we need to pass it in the form of lines in an internal table (see example below).

Limitation: While using CL_BCS class to send email, we can set maximum 50 character subject only.
* Message body and subject 
DATA: LO_DOCUMENT TYPE REF TO CL_DOCUMENT_BCS VALUE IS INITIAL. "document object 
DATA : I_TEXT TYPE BCSY_TEXT. "Table for body 
DATA : W_TEXT LIKE LINE OF I_TEXT. "work area for message body 
*Set body 
W_TEXT-LINE = 'This is the first tutorial of sending email using SAP ABAP programming by SAPNuts.com'. 
APPEND W_TEXT TO I_TEXT. 
CLEAR W_TEXT. 
W_TEXT-LINE = 'SAPNuts.com is the best SAP ABAP learning portal'. 
APPEND W_TEXT TO I_TEXT. 
CLEAR W_TEXT. 
*Create Email document 
LO_DOCUMENT = CL_DOCUMENT_BCS=>CREATE_DOCUMENT( "create document 
I_TYPE = 'TXT' "Type of document HTM, TXT etc 
I_TEXT =  I_TEXT "email body internal table 
I_SUBJECT = P_SUB ). "email subject here p_sub input parameter 

Pass the email document with subject, body and type to send request.

* Pass the document to send request 
  LO_SEND_REQUEST->SET_DOCUMENT( LO_DOCUMENT ). 

Step4:Convert data to binary and create attachment Important 

Declare internal table and work area for MARA, add logic to get data from MARA.

DATA : IT_MARA TYPE TABLE OF MARA, "internal table for MARA 
       WA_MARA TYPE MARA. "work area for MARA 
**Get data from MARA 
  SELECT * FROM MARA INTO TABLE IT_MARA UP TO 50 ROWS 
    WHERE MTART = P_MTART. 

Declare strings, convert internal table data into string with horizantal tab (tab) and new line.

DATA : LV_STRING TYPE STRING, "declare string 
       LV_DATA_STRING TYPE STRING, "declare string 
LOOP AT IT_MARA INTO WA_MARA. 
    CONCATENATE WA_MARA-MATNR WA_MARA-MTART WA_MARA-MEINS WA_MARA-MBRSH WA_MARA-MATKL INTO LV_STRING SEPARATED BY CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB. 
    CONCATENATE LV_DATA_STRING LV_STRING INTO LV_DATA_STRING SEPARATED BY CL_ABAP_CHAR_UTILITIES=>NEWLINE. 
    CLEAR: WA_MARA, LV_STRING. 
  ENDLOOP. 

Convert string data into xstring using function module HR_KR_STRING_TO_XSTRING.

DATA LV_XSTRING TYPE XSTRING . 
**Convert string to xstring 
  CALL FUNCTION 'HR_KR_STRING_TO_XSTRING' 
    EXPORTING 
*     codepage_to      = '8300' 
      UNICODE_STRING   = LV_DATA_STRING 
*     OUT_LEN          = 
    IMPORTING 
      XSTRING_STREAM   = LV_XSTRING 
    EXCEPTIONS 
      INVALID_CODEPAGE = 1 
      INVALID_STRING   = 2 
      OTHERS           = 3. 
  IF SY-SUBRC <> 0. 
    IF SY-SUBRC = 1 . 
 
    ELSEIF SY-SUBRC = 2 . 
      WRITE:/ 'invalid string ' . 
    ENDIF. 
  ENDIF. 

Convert xstring data to binary data using function module SCMS_XSTRING_TO_BINARY .

  DATA: LIT_BINARY_CONTENT TYPE SOLIX_TAB. 
***Xstring to binary 
  CALL FUNCTION 'SCMS_XSTRING_TO_BINARY' 
    EXPORTING 
      BUFFER     = LV_XSTRING 
    TABLES 
      BINARY_TAB = LIT_BINARY_CONTENT. 

Create attachment with attachment name, attachment type (ex: XLS, TXT etc) and attachment data .

DATA  L_ATTSUBJECT   TYPE SOOD-OBJDES. 
**add attachment name 
  CLEAR L_ATTSUBJECT . 
  CONCATENATE 'Material Master Report' SY-DATUM INTO L_ATTSUBJECT. 
* Create Attachment  
  TRY. 
    LO_DOCUMENT->ADD_ATTACHMENT( EXPORTING 
                                    I_ATTACHMENT_TYPE = 'XLS' 
                                    I_ATTACHMENT_SUBJECT = L_ATTSUBJECT 
                                    I_ATT_CONTENT_HEX = LIT_BINARY_CONTENT  ). 
*          CATCH cx_document_bcs INTO lx_document_bcs. 
 
  ENDTRY. 

Step5:Set Sender and Recipient to send request Important 

For every email, there is a sender and reciever (recipient), set sender and recipient for send request.

TRY...ENDTRY 
is used for exception handleing in Object Oriented programming.

*Set Sender 
DATA: LO_SENDER TYPE REF TO IF_SENDER_BCS VALUE IS INITIAL. 
TRY. 
  LO_SENDER = CL_SAPUSER_BCS=>CREATE( SY-UNAME ). "sender is the logged in user 
* Set sender to send request 
  LO_SEND_REQUEST->SET_SENDER( 
  EXPORTING 
  I_SENDER = LO_SENDER ). 
*    CATCH CX_ADDRESS_BCS. 
****Catch exception here 
ENDTRY. 

Set recipient for the send request

**Set recipient 
DATA: LO_RECIPIENT TYPE REF TO IF_RECIPIENT_BCS VALUE IS INITIAL. 
LO_RECIPIENT = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS( P_EMAIL ). "Here Recipient is email input p_email 
TRY. 
  LO_SEND_REQUEST->ADD_RECIPIENT( 
      EXPORTING 
      I_RECIPIENT = LO_RECIPIENT 
      I_EXPRESS = 'X' ). 
*  CATCH CX_SEND_REQ_BCS INTO BCS_EXCEPTION . 
**Catch exception here 
ENDTRY. 

Step6:Set send email for send request Important 

In some servers network management team (BASIS) set mail sending frequency to reduce server load in SMTP(Simple Mail Transfer Protocol) configuration, in such cases the mails will be sent based on server load (may be some time later depends on server load)…In such cases we can set send immediately for the send request.

*Set immediate sending 
TRY. 
  CALL METHOD LO_SEND_REQUEST->SET_SEND_IMMEDIATELY 
    EXPORTING 
      I_SEND_IMMEDIATELY = 'X'. 
*    CATCH CX_SEND_REQ_BCS INTO BCS_EXCEPTION . 
**Catch exception here 
ENDTRY. 

Finally send email using send request.

TRY. 
** Send email 
  LO_SEND_REQUEST->SEND( 
  EXPORTING 
  I_WITH_ERROR_SCREEN = 'X' ). 
  COMMIT WORK. 
  IF SY-SUBRC = 0. 
    WRITE :/ 'Mail sent successfully'. 
  ENDIF. 
*    CATCH CX_SEND_REQ_BCS INTO BCS_EXCEPTION . 
*catch exception here 
ENDTRY. 

Step7:Final code to send email in SAP ABAP Normal 

The final code for sending email with attachment in SAP ABAP using CL_BCS class.

Send email with attachment in SAP ABAP

Send email with attachment in SAP ABAP

REPORT ZSAPN_SEND_EMAIL. 
*Prepare Mail Object 
DATA:  LO_SEND_REQUEST TYPE REF TO CL_BCS VALUE IS INITIAL. 
CLASS CL_BCS DEFINITION LOAD. 
DATA: LO_DOCUMENT TYPE REF TO CL_DOCUMENT_BCS VALUE IS INITIAL. "document object 
DATA : I_TEXT TYPE BCSY_TEXT. "Table for body 
DATA : W_TEXT LIKE LINE OF I_TEXT. "work area for message body 
DATA: LO_SENDER TYPE REF TO IF_SENDER_BCS VALUE IS INITIAL. "sender 
DATA: LO_RECIPIENT TYPE REF TO IF_RECIPIENT_BCS VALUE IS INITIAL. "recipient 
**Selection screen 
PARAMETERS P_MTART TYPE MARA-MTART. "material type input 
PARAMETERS : P_EMAIL TYPE ADR6-SMTP_ADDR. "Email input 
PARAMETERS: P_SUB TYPE CHAR50. "email subject 
PARAMETERS : P_SEND AS CHECKBOX. "send immediately flag 
***Attachment data 
DATA : IT_MARA TYPE TABLE OF MARA, 
       WA_MARA TYPE MARA. 
DATA : LV_STRING TYPE STRING, 
       LV_DATA_STRING TYPE STRING, 
       LV_XSTRING TYPE XSTRING. 
  DATA: LIT_BINARY_CONTENT TYPE SOLIX_TAB, 
        L_ATTSUBJECT   TYPE SOOD-OBJDES. 
 
START-OF-SELECTION. 
  LO_SEND_REQUEST = CL_BCS=>CREATE_PERSISTENT( ). 
* Message body and subject 
*Set body 
  W_TEXT-LINE = 'This is the first tutorial of sending email using SAP ABAP programming by SAPNuts.com'. 
  APPEND W_TEXT TO I_TEXT. 
  CLEAR W_TEXT. 
  W_TEXT-LINE = 'SAPNuts.com is the best SAP ABAP learning portal'. 
  APPEND W_TEXT TO I_TEXT. 
  CLEAR W_TEXT. 
  LO_DOCUMENT = CL_DOCUMENT_BCS=>CREATE_DOCUMENT( "create document 
  I_TYPE = 'TXT' "Type of document HTM, TXT etc 
  I_TEXT =  I_TEXT "email body internal table 
  I_SUBJECT = P_SUB ). "email subject here p_sub input parameter 
* Pass the document to send request 
  LO_SEND_REQUEST->SET_DOCUMENT( LO_DOCUMENT ). 
***Set attachment 
  SELECT * FROM MARA INTO TABLE IT_MARA UP TO 50 ROWS 
    WHERE MTART = P_MTART. 
 
  LOOP AT IT_MARA INTO WA_MARA. 
    CONCATENATE WA_MARA-MATNR WA_MARA-MTART WA_MARA-MEINS WA_MARA-MBRSH WA_MARA-MATKL INTO LV_STRING SEPARATED BY CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB. 
    CONCATENATE LV_DATA_STRING LV_STRING INTO LV_DATA_STRING SEPARATED BY CL_ABAP_CHAR_UTILITIES=>NEWLINE. 
  ENDLOOP. 
**Convert string to xstring 
  CALL FUNCTION 'HR_KR_STRING_TO_XSTRING' 
    EXPORTING 
*     codepage_to      = '8300' 
      UNICODE_STRING   = LV_DATA_STRING 
*     OUT_LEN          = 
    IMPORTING 
      XSTRING_STREAM   = LV_XSTRING 
    EXCEPTIONS 
      INVALID_CODEPAGE = 1 
      INVALID_STRING   = 2 
      OTHERS           = 3. 
  IF SY-SUBRC <> 0. 
    IF SY-SUBRC = 1 . 
 
    ELSEIF SY-SUBRC = 2 . 
      WRITE:/ 'invalid string ' . 
    ENDIF. 
  ENDIF. 
 
***Xstring to binary 
  CALL FUNCTION 'SCMS_XSTRING_TO_BINARY' 
    EXPORTING 
      BUFFER     = LV_XSTRING 
    TABLES 
      BINARY_TAB = LIT_BINARY_CONTENT. 
**add attachment 
  CLEAR L_ATTSUBJECT . 
  CONCATENATE 'Material Master Report' SY-DATUM INTO L_ATTSUBJECT. 
* Create Attachment 
  TRY. 
    LO_DOCUMENT->ADD_ATTACHMENT( EXPORTING 
                                    I_ATTACHMENT_TYPE = 'XLS' 
                                    I_ATTACHMENT_SUBJECT = L_ATTSUBJECT 
                                    I_ATT_CONTENT_HEX = LIT_BINARY_CONTENT  ). 
*          CATCH cx_document_bcs INTO lx_document_bcs. 
 
  ENDTRY. 
  TRY. 
    LO_SENDER = CL_SAPUSER_BCS=>CREATE( SY-UNAME ). "sender is the logged in user 
* Set sender to send request 
    LO_SEND_REQUEST->SET_SENDER( 
    EXPORTING 
    I_SENDER = LO_SENDER ). 
*    CATCH CX_ADDRESS_BCS. 
****Catch exception here 
  ENDTRY. 
**Set recipient 
  LO_RECIPIENT = CL_CAM_ADDRESS_BCS=>CREATE_INTERNET_ADDRESS( P_EMAIL ). "Here Recipient is email input p_email 
  TRY. 
    LO_SEND_REQUEST->ADD_RECIPIENT( 
        EXPORTING 
        I_RECIPIENT = LO_RECIPIENT 
        I_EXPRESS = 'X' ). 
*  CATCH CX_SEND_REQ_BCS INTO BCS_EXCEPTION . 
**Catch exception here 
  ENDTRY. 
  TRY. 
    CALL METHOD LO_SEND_REQUEST->SET_SEND_IMMEDIATELY 
      EXPORTING 
        I_SEND_IMMEDIATELY = P_SEND. "here selection screen input p_send 
*    CATCH CX_SEND_REQ_BCS INTO BCS_EXCEPTION . 
**Catch exception here 
  ENDTRY. 
  TRY. 
** Send email 
    LO_SEND_REQUEST->SEND( 
    EXPORTING 
    I_WITH_ERROR_SCREEN = 'X' ). 
    COMMIT WORK. 
    IF SY-SUBRC = 0. "mail sent successfully 
      WRITE :/ 'Mail sent successfully'. 
    ENDIF. 
*    CATCH CX_SEND_REQ_BCS INTO BCS_EXCEPTION . 
*catch exception here 
  ENDTRY.

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/20138.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论