DEV_EX_SAM_COV 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_SAM_COV into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
DEV_EXTRACTORS
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'DEV_EX_SAM_COV' "DEV Reporting: Extractor for SAM Coverage Data
* EXPORTING
* is_dps_header = " drp_header_s Admin-Daten der letzten Extraktion
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_sam_cov_all_s DPS Extraktion: CheckMan AKH gesamt
* es_dps_exception = " bapiret2 Returnparameter
. " DEV_EX_SAM_COV
The ABAP code below is a full code listing to execute function module DEV_EX_SAM_COV 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_SAM_COV_ALL_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_SAM_COV_ALL_S , |
| wa_es_dps_data | LIKE LINE OF it_es_dps_data, |
| ld_ev_extractor_version | TYPE DRP_HEADER_S-VERSION , |
| 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_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_SAM_COV or its description.
DEV_EX_SAM_COV - DEV Reporting: Extractor for SAM Coverage Data DEV_EX_RZ20 - DEV Reporting: Extractor for RZ20 Data DEV_EX_Q_STANDARD - DEV Reporting: Extractor for Q-Standards DEV_EX_Q_PHASE_ID - DEV Reporting: Extractor for Q-Phase DEV_EX_PA_COV - DEV Reporting: Extractor for PA Coverage Data DEV_EX_ORGSYS4CHECKMAN - DEV Reporting: Extractor for Checkman System Data