GET_CHANGES SAP Method Return changes
Below is documentation, parameters and attributes of ABAP Method GET_CHANGES within SAP class /BOBF/IF_FRW_CHANGE. 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 /BOBF/IF_FRW_CHANGE 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 GET_CHANGES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_CHANGES
.| Name | Type | Data Type | Description | Default Value |
| IS_CHANGE_MODE | Importing | TYPE /BOBF/S_CONFRO_CHG_MODE | Change Modes | |
| IV_CHANGE_MODE | Importing | TYPE /BOBF/CONF_CHANGE_MODE | ||
| IV_FAILED | Importing | TYPE BOOLE_D | Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IV_NODE_KEY | Importing | TYPE /BOBF/OBM_NODE_KEY | ||
| ET_CHANGE | Exporting | TYPE /BOBF/T_FRW_CHANGE | Node Table | |
| ET_CHANGED_KEY | Exporting | TYPE /BOBF/T_FRW_KEY | Key Table | |
| ET_CHANGED_NODE | Exporting | TYPE /BOBF/T_FRW_NODE | Node Table |
Exceptions of Method GET_CHANGES
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOBF/IF_FRW_CHANGE.
DATA: lv_ET_CHANGE TYPE /BOBF/T_FRW_CHANGE,
lv_ET_CHANGED_KEY TYPE /BOBF/T_FRW_KEY,
lv_ET_CHANGED_NODE TYPE /BOBF/T_FRW_NODE,
lv_IS_CHANGE_MODE TYPE /BOBF/S_CONFRO_CHG_MODE,
lv_IV_CHANGE_MODE TYPE /BOBF/CONF_CHANGE_MODE,
lv_IV_FAILED TYPE BOOLE_D,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_other TYPE c.
CALL METHOD lo_class=>GET_CHANGES(
EXPORTING
IS_CHANGE_MODE = lv_IS_CHANGE_MODE
IV_CHANGE_MODE = lv_IV_CHANGE_MODE
IV_FAILED = lv_IV_FAILED
IV_NODE_KEY = lv_IV_NODE_KEY
IMPORTING
ET_CHANGE = lv_ET_CHANGE
ET_CHANGED_KEY = lv_ET_CHANGED_KEY
ET_CHANGED_NODE = lv_ET_CHANGED_NODE ).
Links to Related Class(s)
/BOBF/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects