SAP RSDC_IOBC_F4_DYNP_UPDATE Function Module for F4 for InfoObject Catalogs with screen update









RSDC_IOBC_F4_DYNP_UPDATE is a standard rsdc iobc 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 InfoObject Catalogs 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 rsdc iobc f4 dynp update FM, simply by entering the name RSDC_IOBC_F4_DYNP_UPDATE into the relevant SAP transaction such as SE37 or SE38.

Function Group: RSDC
Program Name: SAPLRSDC
Main Program: SAPLRSDC
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RSDC_IOBC_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 'RSDC_IOBC_F4_DYNP_UPDATE'"F4 for InfoObject Catalogs 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_IOBJTP = "Field Name (Type)
* I_FNAME_RAD_CHA = "field name (radio button: Characteristic)
* I_FNAME_RAD_KYF = "Field name (Radio Button: key figure)
* I_OBJVERS = RS_C_OBJVERS-ACTIVE "Version
* I_DISPLAY = RS_C_FALSE "Flag: Display Only

IMPORTING
E_INFOOBJCAT = "InfoObject Catalog (selected value)
E_TXTLG = "Description
E_IOBJTP = "InfoObject Type
.



IMPORTING Parameters details for RSDC_IOBC_F4_DYNP_UPDATE

I_REPID - Program Name (Dynpro)

Data type: SYREPID
Optional: No
Call by Reference: No ( called with pass by value option)

I_DYNNR - Screen Number

Data type: SYDYNNR
Optional: No
Call by Reference: No ( called with pass by value option)

I_FNAME - Field Name

Data type: DYNFNAM
Optional: No
Call by Reference: No ( called with pass by value option)

I_FNAME_TXT - Field Name (Text Field)

Data type: DYNFNAM
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FNAME_IOBJTP - Field Name (Type)

Data type: DYNFNAM
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FNAME_RAD_CHA - field name (radio button: Characteristic)

Data type: DYNFNAM
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FNAME_RAD_KYF - Field name (Radio Button: key figure)

Data type: DYNFNAM
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_OBJVERS - Version

Data type: RS_OBJVERS
Default: RS_C_OBJVERS-ACTIVE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_DISPLAY - Flag: Display Only

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for RSDC_IOBC_F4_DYNP_UPDATE

E_INFOOBJCAT - InfoObject Catalog (selected value)

Data type: RSD_INFOOBJCAT
Optional: No
Call by Reference: Yes

E_TXTLG - Description

Data type: RS_TXTLG
Optional: No
Call by Reference: Yes

E_IOBJTP - InfoObject Type

Data type: RSD_IOBJTP
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for RSDC_IOBC_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_infoobjcat  TYPE RSD_INFOOBJCAT, "   
lv_e_txtlg  TYPE RS_TXTLG, "   
lv_i_dynnr  TYPE SYDYNNR, "   
lv_i_fname  TYPE DYNFNAM, "   
lv_e_iobjtp  TYPE RSD_IOBJTP, "   
lv_i_fname_txt  TYPE DYNFNAM, "   
lv_i_fname_iobjtp  TYPE DYNFNAM, "   
lv_i_fname_rad_cha  TYPE DYNFNAM, "   
lv_i_fname_rad_kyf  TYPE DYNFNAM, "   
lv_i_objvers  TYPE RS_OBJVERS, "   RS_C_OBJVERS-ACTIVE
lv_i_display  TYPE RS_BOOL. "   RS_C_FALSE

  CALL FUNCTION 'RSDC_IOBC_F4_DYNP_UPDATE'  "F4 for InfoObject Catalogs 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_IOBJTP = lv_i_fname_iobjtp
         I_FNAME_RAD_CHA = lv_i_fname_rad_cha
         I_FNAME_RAD_KYF = lv_i_fname_rad_kyf
         I_OBJVERS = lv_i_objvers
         I_DISPLAY = lv_i_display
    IMPORTING
         E_INFOOBJCAT = lv_e_infoobjcat
         E_TXTLG = lv_e_txtlg
         E_IOBJTP = lv_e_iobjtp
. " RSDC_IOBC_F4_DYNP_UPDATE




ABAP code using 7.40 inline data declarations to call FM RSDC_IOBC_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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!