SET_CHILDREN SAP Method Registration of Lower-Level Objects for Object
Below is documentation, parameters and attributes of ABAP Method SET_CHILDREN within SAP class IF_BADI_LORD_CHILDREN. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_BADI_LORD_CHILDREN into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method SET_CHILDREN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SET_CHILDREN
.| Name | Type | Data Type | Description | Default Value |
| IF_MULTI_INSTANCE | Importing | TYPE FLAG | General Flag | |
| IF_MULTI_OBJECT | Importing | TYPE FLAG | General Flag | |
| IV_OBJECT_ID | Importing | TYPE TABNAME | Table Name | |
| CT_CHILDREN | Changing | TYPE TDT_CHILDREN | Table Type for Structure TDS_CHILDREN |
Exceptions of Method SET_CHILDREN
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_LORD_CHILDREN.
DATA: lv_CT_CHILDREN TYPE TDT_CHILDREN,
lv_IF_MULTI_INSTANCE TYPE FLAG,
lv_IF_MULTI_OBJECT TYPE FLAG,
lv_IV_OBJECT_ID TYPE TABNAME,
lv_other TYPE c.
CALL METHOD lo_class=>SET_CHILDREN(
EXPORTING
IF_MULTI_INSTANCE = lv_IF_MULTI_INSTANCE
IF_MULTI_OBJECT = lv_IF_MULTI_OBJECT
IV_OBJECT_ID = lv_IV_OBJECT_ID
CHANGING
CT_CHILDREN = lv_CT_CHILDREN ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects