SAP ISM_EDD_PROCESS Function Module for
ISM_EDD_PROCESS is a standard ism edd process SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 ism edd process FM, simply by entering the name ISM_EDD_PROCESS into the relevant SAP transaction such as SE37 or SE38.
Function Group: JYEDD_EXTERN
Program Name: SAPLJYEDD_EXTERN
Main Program: SAPLJYEDD_EXTERN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_EDD_PROCESS 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 'ISM_EDD_PROCESS'".
EXPORTING
IS_TJYEDD = "
IS_NAST = "
* IS_ARC_PARAMS = "
* IS_TOA_DARA = "
* IV_SPRAS = SY-LANGU "
* IT_TEXTSYMBOL = "
* IT_OTFDATA = "
* IV_PDFDATA = "
IMPORTING
ET_MAILTEXT = "
EXCEPTIONS
FAIL_OTF_OR_PDF = 1 FAIL_OTF_CONVERT = 2 FAIL_EDD_SEND = 3 FAIL_ARCHIVE = 4
IMPORTING Parameters details for ISM_EDD_PROCESS
IS_TJYEDD -
Data type: TJYEDDOptional: No
Call by Reference: Yes
IS_NAST -
Data type: NASTOptional: No
Call by Reference: Yes
IS_ARC_PARAMS -
Data type: ARC_PARAMSOptional: Yes
Call by Reference: Yes
IS_TOA_DARA -
Data type: TOA_DARAOptional: Yes
Call by Reference: Yes
IV_SPRAS -
Data type: SPRASDefault: SY-LANGU
Optional: Yes
Call by Reference: Yes
IT_TEXTSYMBOL -
Data type: ISM_EDD_TEXTSYMBOLTABOptional: Yes
Call by Reference: Yes
IT_OTFDATA -
Data type: RSPO_OTFTABOptional: Yes
Call by Reference: Yes
IV_PDFDATA -
Data type: XSTRINGOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISM_EDD_PROCESS
ET_MAILTEXT -
Data type: TLINE_TABOptional: No
Call by Reference: Yes
EXCEPTIONS details
FAIL_OTF_OR_PDF -
Data type:Optional: No
Call by Reference: Yes
FAIL_OTF_CONVERT -
Data type:Optional: No
Call by Reference: Yes
FAIL_EDD_SEND -
Data type:Optional: No
Call by Reference: Yes
FAIL_ARCHIVE -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_EDD_PROCESS 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_is_tjyedd | TYPE TJYEDD, " | |||
| lv_et_mailtext | TYPE TLINE_TAB, " | |||
| lv_fail_otf_or_pdf | TYPE TLINE_TAB, " | |||
| lv_is_nast | TYPE NAST, " | |||
| lv_fail_otf_convert | TYPE NAST, " | |||
| lv_fail_edd_send | TYPE NAST, " | |||
| lv_is_arc_params | TYPE ARC_PARAMS, " | |||
| lv_is_toa_dara | TYPE TOA_DARA, " | |||
| lv_fail_archive | TYPE TOA_DARA, " | |||
| lv_iv_spras | TYPE SPRAS, " SY-LANGU | |||
| lv_it_textsymbol | TYPE ISM_EDD_TEXTSYMBOLTAB, " | |||
| lv_it_otfdata | TYPE RSPO_OTFTAB, " | |||
| lv_iv_pdfdata | TYPE XSTRING. " |
|   CALL FUNCTION 'ISM_EDD_PROCESS' " |
| EXPORTING | ||
| IS_TJYEDD | = lv_is_tjyedd | |
| IS_NAST | = lv_is_nast | |
| IS_ARC_PARAMS | = lv_is_arc_params | |
| IS_TOA_DARA | = lv_is_toa_dara | |
| IV_SPRAS | = lv_iv_spras | |
| IT_TEXTSYMBOL | = lv_it_textsymbol | |
| IT_OTFDATA | = lv_it_otfdata | |
| IV_PDFDATA | = lv_iv_pdfdata | |
| IMPORTING | ||
| ET_MAILTEXT | = lv_et_mailtext | |
| EXCEPTIONS | ||
| FAIL_OTF_OR_PDF = 1 | ||
| FAIL_OTF_CONVERT = 2 | ||
| FAIL_EDD_SEND = 3 | ||
| FAIL_ARCHIVE = 4 | ||
| . " ISM_EDD_PROCESS | ||
ABAP code using 7.40 inline data declarations to call FM ISM_EDD_PROCESS
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_spras) | = SY-LANGU. | |||
Search for further information about these or an SAP related objects