SAP RPM_PP_SAVE_CSF_DB Function Module for RPM : Save CSF data
RPM_PP_SAVE_CSF_DB is a standard rpm pp save csf db SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for RPM : Save CSF data 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 rpm pp save csf db FM, simply by entering the name RPM_PP_SAVE_CSF_DB into the relevant SAP transaction such as SE37 or SE38.
Function Group: RPM_PORTFOLIO
Program Name: SAPLRPM_PORTFOLIO
Main Program: SAPLRPM_PORTFOLIO
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 1

Function RPM_PP_SAVE_CSF_DB 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 'RPM_PP_SAVE_CSF_DB'"RPM : Save CSF data.
EXPORTING
* IT_RPM_CSF_INS = "RPM : Portfolio Prioritization Critical Sucess Factors
* IT_PRIO_CSF_UPD = "RPM: Priority CSF database table type
* IT_PRIO_CSFT_UPD = "RPM : Priority CSF text database table type
* IT_PRIO_PCSF_UPD = "RPM : Priority CSF-Project combo database table type
* IT_RPM_CSF_DEL = "RPM : Portfolio Prioritization Critical Sucess Factors
* IT_RPM_CSF_T_DEL = "RPM: Critical success factors ratings
* IT_RPM_CSF_R_DEL = "RPM: Critical success factors ratings
* IT_PRIO_PCSF_DEL = "RPM : Priority CSF-Project combo database table type
* IT_RPM_CSF_T_INS = "RPM : Critical Success Factor texts
* IT_RPM_CSF_R_INS = "RPM: Critical success factors ratings
* IT_PRIO_CSF_INS = "RPM: Priority CSF database table type
* IT_PRIO_CSFT_INS = "RPM : Priority CSF text database table type
* IT_PRIO_PCSF_INS = "RPM : Priority CSF-Project combo database table type
* IT_RPM_CSF_UPD = "RPM : Portfolio Prioritization Critical Sucess Factors
* IT_RPM_CSF_T_UPD = "RPM : Critical Success Factor texts
* IT_RPM_CSF_R_UPD = "RPM: Critical success factors ratings
IMPORTING Parameters details for RPM_PP_SAVE_CSF_DB
IT_RPM_CSF_INS - RPM : Portfolio Prioritization Critical Sucess Factors
Data type: RPM_PP_TT_CSF_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_PRIO_CSF_UPD - RPM: Priority CSF database table type
Data type: RPM_TT_PP_PRIO_CSF_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_PRIO_CSFT_UPD - RPM : Priority CSF text database table type
Data type: RPM_TT_PP_PRIO_CSFT_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_PRIO_PCSF_UPD - RPM : Priority CSF-Project combo database table type
Data type: RPM_TT_PP_PRIO_PCSF_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_RPM_CSF_DEL - RPM : Portfolio Prioritization Critical Sucess Factors
Data type: RPM_PP_TT_CSF_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_RPM_CSF_T_DEL - RPM: Critical success factors ratings
Data type: RPM_PP_TT_CSF_T_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_RPM_CSF_R_DEL - RPM: Critical success factors ratings
Data type: RPM_PP_TT_CSF_R_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_PRIO_PCSF_DEL - RPM : Priority CSF-Project combo database table type
Data type: RPM_TT_PP_PRIO_PCSF_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_RPM_CSF_T_INS - RPM : Critical Success Factor texts
Data type: RPM_PP_TT_CSF_T_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_RPM_CSF_R_INS - RPM: Critical success factors ratings
Data type: RPM_PP_TT_CSF_R_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_PRIO_CSF_INS - RPM: Priority CSF database table type
Data type: RPM_TT_PP_PRIO_CSF_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_PRIO_CSFT_INS - RPM : Priority CSF text database table type
Data type: RPM_TT_PP_PRIO_CSFT_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_PRIO_PCSF_INS - RPM : Priority CSF-Project combo database table type
Data type: RPM_TT_PP_PRIO_PCSF_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_RPM_CSF_UPD - RPM : Portfolio Prioritization Critical Sucess Factors
Data type: RPM_PP_TT_CSF_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_RPM_CSF_T_UPD - RPM : Critical Success Factor texts
Data type: RPM_PP_TT_CSF_T_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_RPM_CSF_R_UPD - RPM: Critical success factors ratings
Data type: RPM_PP_TT_CSF_R_DBOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RPM_PP_SAVE_CSF_DB 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_it_rpm_csf_ins | TYPE RPM_PP_TT_CSF_DB, " | |||
| lv_it_prio_csf_upd | TYPE RPM_TT_PP_PRIO_CSF_DB, " | |||
| lv_it_prio_csft_upd | TYPE RPM_TT_PP_PRIO_CSFT_DB, " | |||
| lv_it_prio_pcsf_upd | TYPE RPM_TT_PP_PRIO_PCSF_DB, " | |||
| lv_it_rpm_csf_del | TYPE RPM_PP_TT_CSF_DB, " | |||
| lv_it_rpm_csf_t_del | TYPE RPM_PP_TT_CSF_T_DB, " | |||
| lv_it_rpm_csf_r_del | TYPE RPM_PP_TT_CSF_R_DB, " | |||
| lv_it_prio_pcsf_del | TYPE RPM_TT_PP_PRIO_PCSF_DB, " | |||
| lv_it_rpm_csf_t_ins | TYPE RPM_PP_TT_CSF_T_DB, " | |||
| lv_it_rpm_csf_r_ins | TYPE RPM_PP_TT_CSF_R_DB, " | |||
| lv_it_prio_csf_ins | TYPE RPM_TT_PP_PRIO_CSF_DB, " | |||
| lv_it_prio_csft_ins | TYPE RPM_TT_PP_PRIO_CSFT_DB, " | |||
| lv_it_prio_pcsf_ins | TYPE RPM_TT_PP_PRIO_PCSF_DB, " | |||
| lv_it_rpm_csf_upd | TYPE RPM_PP_TT_CSF_DB, " | |||
| lv_it_rpm_csf_t_upd | TYPE RPM_PP_TT_CSF_T_DB, " | |||
| lv_it_rpm_csf_r_upd | TYPE RPM_PP_TT_CSF_R_DB. " |
|   CALL FUNCTION 'RPM_PP_SAVE_CSF_DB' "RPM : Save CSF data |
| EXPORTING | ||
| IT_RPM_CSF_INS | = lv_it_rpm_csf_ins | |
| IT_PRIO_CSF_UPD | = lv_it_prio_csf_upd | |
| IT_PRIO_CSFT_UPD | = lv_it_prio_csft_upd | |
| IT_PRIO_PCSF_UPD | = lv_it_prio_pcsf_upd | |
| IT_RPM_CSF_DEL | = lv_it_rpm_csf_del | |
| IT_RPM_CSF_T_DEL | = lv_it_rpm_csf_t_del | |
| IT_RPM_CSF_R_DEL | = lv_it_rpm_csf_r_del | |
| IT_PRIO_PCSF_DEL | = lv_it_prio_pcsf_del | |
| IT_RPM_CSF_T_INS | = lv_it_rpm_csf_t_ins | |
| IT_RPM_CSF_R_INS | = lv_it_rpm_csf_r_ins | |
| IT_PRIO_CSF_INS | = lv_it_prio_csf_ins | |
| IT_PRIO_CSFT_INS | = lv_it_prio_csft_ins | |
| IT_PRIO_PCSF_INS | = lv_it_prio_pcsf_ins | |
| IT_RPM_CSF_UPD | = lv_it_rpm_csf_upd | |
| IT_RPM_CSF_T_UPD | = lv_it_rpm_csf_t_upd | |
| IT_RPM_CSF_R_UPD | = lv_it_rpm_csf_r_upd | |
| . " RPM_PP_SAVE_CSF_DB | ||
ABAP code using 7.40 inline data declarations to call FM RPM_PP_SAVE_CSF_DB
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.Search for further information about these or an SAP related objects