SAP RSD_IOBJ_MULTI_COMPLETE_DEP Function Module for Completes a List of InfoObjects with Dependent InfoObjects









RSD_IOBJ_MULTI_COMPLETE_DEP is a standard rsd iobj multi complete dep SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Completes a List of InfoObjects with Dependent InfoObjects 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 rsd iobj multi complete dep FM, simply by entering the name RSD_IOBJ_MULTI_COMPLETE_DEP into the relevant SAP transaction such as SE37 or SE38.

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



Function RSD_IOBJ_MULTI_COMPLETE_DEP 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 'RSD_IOBJ_MULTI_COMPLETE_DEP'"Completes a List of InfoObjects with Dependent InfoObjects
EXPORTING
* I_OBJVERS = RS_C_OBJVERS-ACTIVE "Object Version (A or D) --> Long Text
* I_APPEND_ALL = RS_C_FALSE "='X': Include All Dependent Objects
* I_FILTER_BCT_COMP = RS_C_FALSE "= 'X': Filter Objects of Inactive BCT Components

IMPORTING
E_T_MSG = "Messages

CHANGING
* C_T_VIOBJ = "InfoObjects - Dependent IOs Are Appended
* C_T_IOBJ_CMP = "Compounding
* C_T_ATR = "Attributes
* C_T_ATR_NAV = "Navigation Attributes
* C_T_IOBJT = "Additional InfoObject Texts
* C_T_ATRNAVT = "Additional Navigation Attribute Texts

EXCEPTIONS
ILLEGAL_INPUT = 1
.



IMPORTING Parameters details for RSD_IOBJ_MULTI_COMPLETE_DEP

I_OBJVERS - Object Version (A or D) --> Long Text

Data type: RS_OBJVERS
Default: RS_C_OBJVERS-ACTIVE
Optional: Yes
Call by Reference: Yes

I_APPEND_ALL - ='X': Include All Dependent Objects

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

I_FILTER_BCT_COMP - = 'X': Filter Objects of Inactive BCT Components

Data type: RS_BOOL
Default: RS_C_FALSE
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for RSD_IOBJ_MULTI_COMPLETE_DEP

E_T_MSG - Messages

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

CHANGING Parameters details for RSD_IOBJ_MULTI_COMPLETE_DEP

C_T_VIOBJ - InfoObjects - Dependent IOs Are Appended

Data type: RSD_T_VIOBJ
Optional: Yes
Call by Reference: Yes

C_T_IOBJ_CMP - Compounding

Data type: RSD_T_IOBJ_CMP
Optional: Yes
Call by Reference: Yes

C_T_ATR - Attributes

Data type: RSD_T_ATR
Optional: Yes
Call by Reference: Yes

C_T_ATR_NAV - Navigation Attributes

Data type: RSD_T_ATR_NAV
Optional: Yes
Call by Reference: Yes

C_T_IOBJT - Additional InfoObject Texts

Data type: RSD_T_IOBJT
Optional: Yes
Call by Reference: Yes

C_T_ATRNAVT - Additional Navigation Attribute Texts

Data type: RSD_T_ATRNAVT
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

ILLEGAL_INPUT - Object Version Unequal to A / D

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

Copy and paste ABAP code example for RSD_IOBJ_MULTI_COMPLETE_DEP 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_e_t_msg  TYPE RS_T_MSG, "   
lv_c_t_viobj  TYPE RSD_T_VIOBJ, "   
lv_i_objvers  TYPE RS_OBJVERS, "   RS_C_OBJVERS-ACTIVE
lv_illegal_input  TYPE RS_OBJVERS, "   
lv_c_t_iobj_cmp  TYPE RSD_T_IOBJ_CMP, "   
lv_i_append_all  TYPE RS_BOOL, "   RS_C_FALSE
lv_c_t_atr  TYPE RSD_T_ATR, "   
lv_i_filter_bct_comp  TYPE RS_BOOL, "   RS_C_FALSE
lv_c_t_atr_nav  TYPE RSD_T_ATR_NAV, "   
lv_c_t_iobjt  TYPE RSD_T_IOBJT, "   
lv_c_t_atrnavt  TYPE RSD_T_ATRNAVT. "   

  CALL FUNCTION 'RSD_IOBJ_MULTI_COMPLETE_DEP'  "Completes a List of InfoObjects with Dependent InfoObjects
    EXPORTING
         I_OBJVERS = lv_i_objvers
         I_APPEND_ALL = lv_i_append_all
         I_FILTER_BCT_COMP = lv_i_filter_bct_comp
    IMPORTING
         E_T_MSG = lv_e_t_msg
    CHANGING
         C_T_VIOBJ = lv_c_t_viobj
         C_T_IOBJ_CMP = lv_c_t_iobj_cmp
         C_T_ATR = lv_c_t_atr
         C_T_ATR_NAV = lv_c_t_atr_nav
         C_T_IOBJT = lv_c_t_iobjt
         C_T_ATRNAVT = lv_c_t_atrnavt
    EXCEPTIONS
        ILLEGAL_INPUT = 1
. " RSD_IOBJ_MULTI_COMPLETE_DEP




ABAP code using 7.40 inline data declarations to call FM RSD_IOBJ_MULTI_COMPLETE_DEP

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_append_all) = RS_C_FALSE.
 
 
DATA(ld_i_filter_bct_comp) = 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!