SAP SD_PDF_SEND_DATA Function Module for NOTRANSL: Versenden der Daten per Fax oder E-Mail









SD_PDF_SEND_DATA is a standard sd pdf send data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Versenden der Daten per Fax oder E-Mail processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for sd pdf send data FM, simply by entering the name SD_PDF_SEND_DATA into the relevant SAP transaction such as SE37 or SE38.

Function Group: SD_PDF
Program Name: SAPLSD_PDF
Main Program: SAPLSD_PDF
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function SD_PDF_SEND_DATA pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'SD_PDF_SEND_DATA'"NOTRANSL: Versenden der Daten per Fax oder E-Mail
EXPORTING
IV_DEVICE = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IV_EMAIL_SUBJECT = "Short Description of Contents
* IT_EMAIL_TEXT = "Text Table
IS_MAIN_DATA = "Form Output (PDF, PDL)
* IV_LANGUAGE = SY-LANGU "Language Key of Current Text Environment
IS_ADDRESS = "Structure with E-Mail Address Data

IMPORTING
EV_SEND_TO_ALL = "Boolean

EXCEPTIONS
EXC_DOCUMENT = 1 EXC_SEND_REQUEST = 2 EXC_ADDRESS = 3
.



IMPORTING Parameters details for SD_PDF_SEND_DATA

IV_DEVICE - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: OUTPUT_DEVICE
Optional: No
Call by Reference: Yes

IV_EMAIL_SUBJECT - Short Description of Contents

Data type: SO_OBJ_DES
Optional: Yes
Call by Reference: Yes

IT_EMAIL_TEXT - Text Table

Data type: BCSY_TEXT
Optional: Yes
Call by Reference: Yes

IS_MAIN_DATA - Form Output (PDF, PDL)

Data type: FPFORMOUTPUT
Optional: No
Call by Reference: Yes

IV_LANGUAGE - Language Key of Current Text Environment

Data type: SYLANGU
Default: SY-LANGU
Optional: No
Call by Reference: Yes

IS_ADDRESS - Structure with E-Mail Address Data

Data type: SDPRT_ADDR_S
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for SD_PDF_SEND_DATA

EV_SEND_TO_ALL - Boolean

Data type: OS_BOOLEAN
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

EXC_DOCUMENT - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

EXC_SEND_REQUEST - Error when sending

Data type:
Optional: No
Call by Reference: Yes

EXC_ADDRESS - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for SD_PDF_SEND_DATA Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_iv_device  TYPE OUTPUT_DEVICE, "   
lv_exc_document  TYPE OUTPUT_DEVICE, "   
lv_ev_send_to_all  TYPE OS_BOOLEAN, "   
lv_exc_send_request  TYPE OS_BOOLEAN, "   
lv_iv_email_subject  TYPE SO_OBJ_DES, "   
lv_exc_address  TYPE SO_OBJ_DES, "   
lv_it_email_text  TYPE BCSY_TEXT, "   
lv_is_main_data  TYPE FPFORMOUTPUT, "   
lv_iv_language  TYPE SYLANGU, "   SY-LANGU
lv_is_address  TYPE SDPRT_ADDR_S. "   

  CALL FUNCTION 'SD_PDF_SEND_DATA'  "NOTRANSL: Versenden der Daten per Fax oder E-Mail
    EXPORTING
         IV_DEVICE = lv_iv_device
         IV_EMAIL_SUBJECT = lv_iv_email_subject
         IT_EMAIL_TEXT = lv_it_email_text
         IS_MAIN_DATA = lv_is_main_data
         IV_LANGUAGE = lv_iv_language
         IS_ADDRESS = lv_is_address
    IMPORTING
         EV_SEND_TO_ALL = lv_ev_send_to_all
    EXCEPTIONS
        EXC_DOCUMENT = 1
        EXC_SEND_REQUEST = 2
        EXC_ADDRESS = 3
. " SD_PDF_SEND_DATA




ABAP code using 7.40 inline data declarations to call FM SD_PDF_SEND_DATA

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 
DATA(ld_iv_language) = SY-LANGU.
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!