DO_RECUR_COLL_CHILD_LEVEL SAP Method obsolete
Below is documentation, parameters and attributes of ABAP Method DO_RECUR_COLL_CHILD_LEVEL within SAP class DTINF_CL_DATA_COLLECTOR. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name DTINF_CL_DATA_COLLECTOR 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 DO_RECUR_COLL_CHILD_LEVEL can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DO_RECUR_COLL_CHILD_LEVEL
.| Name | Type | Data Type | Description | Default Value |
| IT_COLLECTED_RFC_RAW_DATA | Importing | TYPE DTINF_TT_TRANSFER_GSS | aaa | |
| IT_FATHER_DATA | Importing | TYPE DTINF_TT_TRANSFER_GSS | aaa | |
| IT_RFC_TABLES | Importing | TYPE DTINF_TT_GSS_SEARCH_AREA | Table for data reconstruction | |
| IV_CHILD | Importing | TYPE INT4 | Natural number | |
| IV_CHILD_COUNT | Importing | TYPE INT4 | Natural number | |
| IV_CHILD_GUID | Importing | TYPE SYSUUID_C32 | 16 Byte UUID in 32 Characters (Hexadecimal Encoded) | |
| IV_DEPENDENCY_FATHER | Importing | TYPE GSS_DEP_FATHER | GSS: ID of Father | |
| IV_DEPENDENCY_ID | Importing | TYPE GSS_DEP_ID | GSS: Dependency ID | |
| IV_FATHER | Importing | TYPE INT4 | Natural number | |
| IV_FATHER_GUID | Importing | TYPE SYSUUID_C32 | DD: Field List | |
| IV_FIELDS_PER_TABLE | Importing | TYPE I | ||
| IV_HIER_LEVEL | Importing | TYPE INT4 | Natural number | |
| IV_ID | Importing | TYPE INT4 | Natural number | |
| IV_INDEX_RFC_RAW_DATA | Importing | TYPE SYST_TABIX | ABAP System Field: Row Index of Internal Tables | |
| IV_INDEX_RFC_TABLES_CHILD | Importing | TYPE SYST_TABIX | ABAP System Field: Row Index of Internal Tables | |
| IV_TABLE_ENTRIES | Importing | TYPE I | ||
| IV_TC_ID_FATHER | Importing | TYPE DTINF_TC_ID | Table Cluster ID | |
| ET_FOUND_INDEX | Exporting | TYPE DTINF_TT_INDEX |
Exceptions of Method DO_RECUR_COLL_CHILD_LEVEL
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO DTINF_CL_DATA_COLLECTOR.
DATA: lv_ET_FOUND_INDEX TYPE DTINF_TT_INDEX,
lv_IT_COLLECTED_RFC_RAW_DATA TYPE DTINF_TT_TRANSFER_GSS,
lv_IT_FATHER_DATA TYPE DTINF_TT_TRANSFER_GSS,
lv_IT_RFC_TABLES TYPE DTINF_TT_GSS_SEARCH_AREA,
lv_IV_CHILD TYPE INT4,
lv_IV_CHILD_COUNT TYPE INT4,
lv_IV_CHILD_GUID TYPE SYSUUID_C32,
lv_IV_DEPENDENCY_FATHER TYPE GSS_DEP_FATHER,
lv_IV_DEPENDENCY_ID TYPE GSS_DEP_ID,
lv_IV_FATHER TYPE INT4,
lv_IV_FATHER_GUID TYPE SYSUUID_C32,
lv_IV_FIELDS_PER_TABLE TYPE I,
lv_IV_HIER_LEVEL TYPE INT4,
lv_IV_ID TYPE INT4,
lv_IV_INDEX_RFC_RAW_DATA TYPE SYST_TABIX,
lv_IV_INDEX_RFC_TABLES_CHILD TYPE SYST_TABIX,
lv_IV_TABLE_ENTRIES TYPE I,
lv_IV_TC_ID_FATHER TYPE DTINF_TC_ID,
lv_other TYPE c.
CALL METHOD lo_class=>DO_RECUR_COLL_CHILD_LEVEL(
EXPORTING
IT_COLLECTED_RFC_RAW_DATA = lv_IT_COLLECTED_RFC_RAW_DATA
IT_FATHER_DATA = lv_IT_FATHER_DATA
IT_RFC_TABLES = lv_IT_RFC_TABLES
IV_CHILD = lv_IV_CHILD
IV_CHILD_COUNT = lv_IV_CHILD_COUNT
IV_CHILD_GUID = lv_IV_CHILD_GUID
IV_DEPENDENCY_FATHER = lv_IV_DEPENDENCY_FATHER
IV_DEPENDENCY_ID = lv_IV_DEPENDENCY_ID
IV_FATHER = lv_IV_FATHER
IV_FATHER_GUID = lv_IV_FATHER_GUID
IV_FIELDS_PER_TABLE = lv_IV_FIELDS_PER_TABLE
IV_HIER_LEVEL = lv_IV_HIER_LEVEL
IV_ID = lv_IV_ID
IV_INDEX_RFC_RAW_DATA = lv_IV_INDEX_RFC_RAW_DATA
IV_INDEX_RFC_TABLES_CHILD = lv_IV_INDEX_RFC_TABLES_CHILD
IV_TABLE_ENTRIES = lv_IV_TABLE_ENTRIES
IV_TC_ID_FATHER = lv_IV_TC_ID_FATHER
IMPORTING
ET_FOUND_INDEX = lv_ET_FOUND_INDEX ).
Links to Related Class(s)
DTINF_CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects