SAP DOWNLOAD_EDI_STATUS_SELECT Function Module for NOTRANSL: Dld.-Status-Sätze werden ausgewählt, um Versendestatatus zu aktu
DOWNLOAD_EDI_STATUS_SELECT is a standard download edi status select 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: Dld.-Status-Sätze werden ausgewählt, um Versendestatatus zu aktu 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 download edi status select FM, simply by entering the name DOWNLOAD_EDI_STATUS_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: WDLD
Program Name: SAPLWDLD
Main Program: SAPLWDLD
Appliation area: W
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DOWNLOAD_EDI_STATUS_SELECT 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 'DOWNLOAD_EDI_STATUS_SELECT'"NOTRANSL: Dld.-Status-Sätze werden ausgewählt, um Versendestatatus zu aktu.
EXPORTING
* PI_DATUM_VON = "Start of determination period
* PI_DATUM_BIS = "End of determination period
* PI_PROTOKOLL = "PI_PROTOKOLL = X => Log files active
* PI_SYSTP = "
* PI_DOCNR = "
TABLES
* PI_SO_STORE = "Plants from ..to
* PE_T_WDLS = "Download status header information
* PE_T_WDLSP = "Download status items
EXCEPTIONS
NO_IDOCS = 1 NO_EDI_STATUS = 2
IMPORTING Parameters details for DOWNLOAD_EDI_STATUS_SELECT
PI_DATUM_VON - Start of determination period
Data type: SY-DATUMOptional: Yes
Call by Reference: No ( called with pass by value option)
PI_DATUM_BIS - End of determination period
Data type: SY-DATUMOptional: Yes
Call by Reference: No ( called with pass by value option)
PI_PROTOKOLL - PI_PROTOKOLL = X => Log files active
Data type: WDLS-DLMODOptional: Yes
Call by Reference: No ( called with pass by value option)
PI_SYSTP -
Data type: WDLS-SYSTPOptional: Yes
Call by Reference: No ( called with pass by value option)
PI_DOCNR -
Data type: EDIDC-DOCNUMOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for DOWNLOAD_EDI_STATUS_SELECT
PI_SO_STORE - Plants from ..to
Data type: WDL_EMPOptional: Yes
Call by Reference: No ( called with pass by value option)
PE_T_WDLS - Download status header information
Data type: WDLSOptional: Yes
Call by Reference: No ( called with pass by value option)
PE_T_WDLSP - Download status items
Data type: WDLSPOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_IDOCS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_EDI_STATUS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DOWNLOAD_EDI_STATUS_SELECT 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_no_idocs | TYPE STRING, " | |||
| lt_pi_so_store | TYPE STANDARD TABLE OF WDL_EMP, " | |||
| lv_pi_datum_von | TYPE SY-DATUM, " | |||
| lt_pe_t_wdls | TYPE STANDARD TABLE OF WDLS, " | |||
| lv_pi_datum_bis | TYPE SY-DATUM, " | |||
| lv_no_edi_status | TYPE SY, " | |||
| lt_pe_t_wdlsp | TYPE STANDARD TABLE OF WDLSP, " | |||
| lv_pi_protokoll | TYPE WDLS-DLMOD, " | |||
| lv_pi_systp | TYPE WDLS-SYSTP, " | |||
| lv_pi_docnr | TYPE EDIDC-DOCNUM. " |
|   CALL FUNCTION 'DOWNLOAD_EDI_STATUS_SELECT' "NOTRANSL: Dld.-Status-Sätze werden ausgewählt, um Versendestatatus zu aktu |
| EXPORTING | ||
| PI_DATUM_VON | = lv_pi_datum_von | |
| PI_DATUM_BIS | = lv_pi_datum_bis | |
| PI_PROTOKOLL | = lv_pi_protokoll | |
| PI_SYSTP | = lv_pi_systp | |
| PI_DOCNR | = lv_pi_docnr | |
| TABLES | ||
| PI_SO_STORE | = lt_pi_so_store | |
| PE_T_WDLS | = lt_pe_t_wdls | |
| PE_T_WDLSP | = lt_pe_t_wdlsp | |
| EXCEPTIONS | ||
| NO_IDOCS = 1 | ||
| NO_EDI_STATUS = 2 | ||
| . " DOWNLOAD_EDI_STATUS_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM DOWNLOAD_EDI_STATUS_SELECT
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.| "SELECT single DATUM FROM SY INTO @DATA(ld_pi_datum_von). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_pi_datum_bis). | ||||
| "SELECT single DLMOD FROM WDLS INTO @DATA(ld_pi_protokoll). | ||||
| "SELECT single SYSTP FROM WDLS INTO @DATA(ld_pi_systp). | ||||
| "SELECT single DOCNUM FROM EDIDC INTO @DATA(ld_pi_docnr). | ||||
Search for further information about these or an SAP related objects