FINALIZE_NODES SAP Method finalize business object nodes
Below is documentation, parameters and attributes of ABAP Method FINALIZE_NODES within SAP class /BOBF/CL_CONF_MODEL_API_ADT. 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 /BOBF/CL_CONF_MODEL_API_ADT 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 FINALIZE_NODES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FINALIZE_NODES
.| Name | Type | Data Type | Description | Default Value |
| IT_IDX_CREATE_NEW | Importing | TYPE /BOBF/CL_CONF_MODEL_ADT_COMP=>GTT_INDEX | ||
| IT_IDX_DELETE_CURRENT | Importing | TYPE /BOBF/CL_CONF_MODEL_ADT_COMP=>GTT_INDEX | ||
| IT_IDX_UPDATE_NEW | Importing | TYPE /BOBF/CL_CONF_MODEL_ADT_COMP=>GTT_INDEX | ||
| IT_NODE_CURRENT | Importing | TYPE /BOBF/T_CONF_MODEL_ADT_NODE | ADT Node Table Type | |
| IT_NODE_NEW | Importing | TYPE /BOBF/T_CONF_MODEL_ADT_NODE | ADT Node Table Type | |
| IV_BO_KEY | Importing | TYPE /BOBF/OBM_BO_KEY | Business Object | |
| IV_VERSION_KEY | Importing | TYPE /BOBF/OBM_OBJ_KEY | Business Object Version | |
| ET_MODIFICATION | Exporting | TYPE /BOBF/T_FRW_MODIFICATION | Changes | |
| EV_SUCCESS | Exporting | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| EO_MESSAGE | Exporting | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object |
Exceptions of Method FINALIZE_NODES
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 /BOBF/CL_CONF_MODEL_API_ADT.
DATA: lv_ET_MODIFICATION TYPE /BOBF/T_FRW_MODIFICATION,
lv_EV_SUCCESS TYPE BOOLE_D,
lv_IT_IDX_CREATE_NEW TYPE /BOBF/CL_CONF_MODEL_ADT_COMP=>GTT_INDEX,
lv_IT_IDX_DELETE_CURRENT TYPE /BOBF/CL_CONF_MODEL_ADT_COMP=>GTT_INDEX,
lv_IT_IDX_UPDATE_NEW TYPE /BOBF/CL_CONF_MODEL_ADT_COMP=>GTT_INDEX,
lv_IT_NODE_CURRENT TYPE /BOBF/T_CONF_MODEL_ADT_NODE,
lv_IT_NODE_NEW TYPE /BOBF/T_CONF_MODEL_ADT_NODE,
lv_IV_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IV_VERSION_KEY TYPE /BOBF/OBM_OBJ_KEY,
lv_EO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_other TYPE c.
CALL METHOD lo_class=>FINALIZE_NODES(
EXPORTING
IT_IDX_CREATE_NEW = lv_IT_IDX_CREATE_NEW
IT_IDX_DELETE_CURRENT = lv_IT_IDX_DELETE_CURRENT
IT_IDX_UPDATE_NEW = lv_IT_IDX_UPDATE_NEW
IT_NODE_CURRENT = lv_IT_NODE_CURRENT
IT_NODE_NEW = lv_IT_NODE_NEW
IV_BO_KEY = lv_IV_BO_KEY
IV_VERSION_KEY = lv_IV_VERSION_KEY
IMPORTING
ET_MODIFICATION = lv_ET_MODIFICATION
EV_SUCCESS = lv_EV_SUCCESS
EO_MESSAGE = lv_EO_MESSAGE ).
Links to Related Class(s)
/BOBF/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects