DEV_EX_ST03_NEU is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name DEV_EX_ST03_NEU into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
DEV_EXTRACTOR
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'DEV_EX_ST03_NEU' "DEV Reporting: Extractor for ST03 Data
* EXPORTING
* is_dps_header = " drp_header_s DPS Extraktion: Kopfdaten
* is_rfcdest_hrorg = " drp_rfcdisplay Anzeigestruktur fuer RFCDES-Pflege
* iv_rfcdest_hrorg = " drp_rfcdisplay-rfcdest logische Destination (Wird bei Funktionsaufruf angegeben)
IMPORTING
es_dps_header = " drp_header_s DPS Extraktion: Kopfdaten
ev_extractor_version = " drp_header_s-version Version des Funktionsbausteins
ev_records = " drp_data_s-counter Anzahl der Meldungen
ev_basis_release = " drp_header_s-basis_release R/3 Release
ev_last_version = " drp_header_s-version Version der Ergebnisse
* TABLES
* es_dps_data = " drp_st03_data_neu_s DPS Extraktion: ST03 ORG gesamt
* es_dps_exception = " bapiret2 Returnparameter
. " DEV_EX_ST03_NEU
The ABAP code below is a full code listing to execute function module DEV_EX_ST03_NEU including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_es_dps_header | TYPE DRP_HEADER_S , |
| ld_ev_extractor_version | TYPE DRP_HEADER_S-VERSION , |
| ld_ev_records | TYPE DRP_DATA_S-COUNTER , |
| ld_ev_basis_release | TYPE DRP_HEADER_S-BASIS_RELEASE , |
| ld_ev_last_version | TYPE DRP_HEADER_S-VERSION , |
| it_es_dps_data | TYPE STANDARD TABLE OF DRP_ST03_DATA_NEU_S,"TABLES PARAM |
| wa_es_dps_data | LIKE LINE OF it_es_dps_data , |
| it_es_dps_exception | TYPE STANDARD TABLE OF BAPIRET2,"TABLES PARAM |
| wa_es_dps_exception | LIKE LINE OF it_es_dps_exception . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_es_dps_header | TYPE DRP_HEADER_S , |
| ld_is_dps_header | TYPE DRP_HEADER_S , |
| it_es_dps_data | TYPE STANDARD TABLE OF DRP_ST03_DATA_NEU_S , |
| wa_es_dps_data | LIKE LINE OF it_es_dps_data, |
| ld_ev_extractor_version | TYPE DRP_HEADER_S-VERSION , |
| ld_is_rfcdest_hrorg | TYPE DRP_RFCDISPLAY , |
| it_es_dps_exception | TYPE STANDARD TABLE OF BAPIRET2 , |
| wa_es_dps_exception | LIKE LINE OF it_es_dps_exception, |
| ld_ev_records | TYPE DRP_DATA_S-COUNTER , |
| ld_iv_rfcdest_hrorg | TYPE DRP_RFCDISPLAY-RFCDEST , |
| ld_ev_basis_release | TYPE DRP_HEADER_S-BASIS_RELEASE , |
| ld_ev_last_version | TYPE DRP_HEADER_S-VERSION . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name DEV_EX_ST03_NEU or its description.
DEV_EX_ST03_NEU - DEV Reporting: Extractor for ST03 Data DEV_EX_SI_COV - DEV Reporting: Extractor for SI Coverage Data DEV_EX_SFW_BF - DEV Reporting: Extraktor for Transaction Data DEV_EX_SE28_DEVC - DEV Reporting: Extractor for SE28 Data DEV_EX_SCOV_DEVC - DEV Reporting: Extractor for SCOV Data DEV_EX_SAM_COV - DEV Reporting: Extractor for SAM Coverage Data