PPEDBSCMPV_GETLIST_DB 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 PPEDBSCMPV_GETLIST_DB into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
PPEDBSCMPV
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'PPEDBSCMPV_GETLIST_DB' "
* EXPORTING
* r_csid_tab = " ppest_r_csid_tab
* r_value_tab = " ppest_r_value_tab
* r_org_tab = " ppest_r_org_tab
* r_responsible_tab = " ppest_r_responsible_tab
* r_targetdate_tab = " ppest_r_targetdate_tab
* r_klart_tab = " ppest_r_klart_tab
* r_class_tab = " ppest_r_class_tab
* r_pname_tab = " ppscv_r_pname_tab
* r_aennr_tab = " ppscv_r_aennr_tab
* r_pvname_tab = " ppscv_r_pvname_tab
* im_pvguid_tab = " ppscv_pvguid_tab
IMPORTING
ex_ppeevscmpv_cockpit = " ppscv_ppeevscmpv_cockpit
EXCEPTIONS
NO_RESULT = 1 "
SELECTION_ERROR = 2 "
. " PPEDBSCMPV_GETLIST_DB
The ABAP code below is a full code listing to execute function module PPEDBSCMPV_GETLIST_DB 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_ex_ppeevscmpv_cockpit | TYPE PPSCV_PPEEVSCMPV_COCKPIT . |
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_ex_ppeevscmpv_cockpit | TYPE PPSCV_PPEEVSCMPV_COCKPIT , |
| ld_r_csid_tab | TYPE PPEST_R_CSID_TAB , |
| ld_r_value_tab | TYPE PPEST_R_VALUE_TAB , |
| ld_r_org_tab | TYPE PPEST_R_ORG_TAB , |
| ld_r_responsible_tab | TYPE PPEST_R_RESPONSIBLE_TAB , |
| ld_r_targetdate_tab | TYPE PPEST_R_TARGETDATE_TAB , |
| ld_r_klart_tab | TYPE PPEST_R_KLART_TAB , |
| ld_r_class_tab | TYPE PPEST_R_CLASS_TAB , |
| ld_r_pname_tab | TYPE PPSCV_R_PNAME_TAB , |
| ld_r_aennr_tab | TYPE PPSCV_R_AENNR_TAB , |
| ld_r_pvname_tab | TYPE PPSCV_R_PVNAME_TAB , |
| ld_im_pvguid_tab | TYPE PPSCV_PVGUID_TAB . |
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 PPEDBSCMPV_GETLIST_DB or its description.