SAP RSPLFD_PLST_F4_DYNP_UPDATE Function Module for F4 for InfoCubes with Screen Update
RSPLFD_PLST_F4_DYNP_UPDATE is a standard rsplfd plst f4 dynp update SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for F4 for InfoCubes with Screen Update 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 rsplfd plst f4 dynp update FM, simply by entering the name RSPLFD_PLST_F4_DYNP_UPDATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSPLFD_PLST
Program Name: SAPLRSPLFD_PLST
Main Program: SAPLRSPLFD_PLST
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSPLFD_PLST_F4_DYNP_UPDATE 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 'RSPLFD_PLST_F4_DYNP_UPDATE'"F4 for InfoCubes with Screen Update.
EXPORTING
I_REPID = "Program Name (Dynpro)
I_DYNNR = "Screen Number
I_FNAME = "Field Name
* I_FNAME_TXT = "Field Name (Text Field)
* I_FNAME_ICON = "Field Name (Icon)
* I_OBJVERS = RS_C_OBJVERS-ACTIVE "Version
* I_DISPLAY = RS_C_FALSE "Flag: Display Only
IMPORTING
E_SRVTYPENM = "Name of Function Type
E_TXTLG = "Description
IMPORTING Parameters details for RSPLFD_PLST_F4_DYNP_UPDATE
I_REPID - Program Name (Dynpro)
Data type: SYREPIDOptional: No
Call by Reference: No ( called with pass by value option)
I_DYNNR - Screen Number
Data type: SYDYNNROptional: No
Call by Reference: No ( called with pass by value option)
I_FNAME - Field Name
Data type: DYNFNAMOptional: No
Call by Reference: No ( called with pass by value option)
I_FNAME_TXT - Field Name (Text Field)
Data type: DYNFNAMOptional: Yes
Call by Reference: No ( called with pass by value option)
I_FNAME_ICON - Field Name (Icon)
Data type: DYNFNAMOptional: Yes
Call by Reference: No ( called with pass by value option)
I_OBJVERS - Version
Data type: RS_OBJVERSDefault: RS_C_OBJVERS-ACTIVE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_DISPLAY - Flag: Display Only
Data type: RS_BOOLDefault: RS_C_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for RSPLFD_PLST_F4_DYNP_UPDATE
E_SRVTYPENM - Name of Function Type
Data type: RSPLF_SRVTYPENMOptional: No
Call by Reference: Yes
E_TXTLG - Description
Data type: RS_TXTLGOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RSPLFD_PLST_F4_DYNP_UPDATE 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_i_repid | TYPE SYREPID, " | |||
| lv_e_srvtypenm | TYPE RSPLF_SRVTYPENM, " | |||
| lv_e_txtlg | TYPE RS_TXTLG, " | |||
| lv_i_dynnr | TYPE SYDYNNR, " | |||
| lv_i_fname | TYPE DYNFNAM, " | |||
| lv_i_fname_txt | TYPE DYNFNAM, " | |||
| lv_i_fname_icon | TYPE DYNFNAM, " | |||
| lv_i_objvers | TYPE RS_OBJVERS, " RS_C_OBJVERS-ACTIVE | |||
| lv_i_display | TYPE RS_BOOL. " RS_C_FALSE |
|   CALL FUNCTION 'RSPLFD_PLST_F4_DYNP_UPDATE' "F4 for InfoCubes with Screen Update |
| EXPORTING | ||
| I_REPID | = lv_i_repid | |
| I_DYNNR | = lv_i_dynnr | |
| I_FNAME | = lv_i_fname | |
| I_FNAME_TXT | = lv_i_fname_txt | |
| I_FNAME_ICON | = lv_i_fname_icon | |
| I_OBJVERS | = lv_i_objvers | |
| I_DISPLAY | = lv_i_display | |
| IMPORTING | ||
| E_SRVTYPENM | = lv_e_srvtypenm | |
| E_TXTLG | = lv_e_txtlg | |
| . " RSPLFD_PLST_F4_DYNP_UPDATE | ||
ABAP code using 7.40 inline data declarations to call FM RSPLFD_PLST_F4_DYNP_UPDATE
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.| DATA(ld_i_objvers) | = RS_C_OBJVERS-ACTIVE. | |||
| DATA(ld_i_display) | = RS_C_FALSE. | |||
Search for further information about these or an SAP related objects