GET SAP Method Return All Changes
Below is documentation, parameters and attributes of ABAP Method GET 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 can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET
.| Name | Type | Data Type | Description | Default Value |
| IV_NO_LOAD | Importing | TYPE BOOLE_D | Changed Nodes without Load and Loadkey | |
| IV_SORTED | Importing | TYPE /BOBF/FRW_CHANGE_SORT | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| ET_CHANGE | Exporting | TYPE /BOBF/T_FRW_CHANGE | Changed Nodes | |
| ET_CHANGE_LOAD | Exporting | TYPE /BOBF/T_FRW_CHANGE | Changed Nodes Load only | |
| ET_CHANGE_LOAD_KEY | Exporting | TYPE /BOBF/T_FRW_CHANGE | Changed Nodes Load_key only | |
| ET_CONTENT_CHANGE | Exporting | TYPE /BOBF/T_FRW_CHANGE_CONTENT | Changed Content | |
| EV_RELOAD_DEL | Exporting | TYPE BOOLE_D | Reload_int change exists | |
| EV_RELOAD_INT | Exporting | TYPE BOOLE_D | Reload_delete change exists | |
| EV_SORTED | Exporting | TYPE /BOBF/FRW_CHANGE_SORT | Changes are sorted | |
| ET_ASSOCIATION_SOURCE | Exporting | TYPE TT_ASSOCIATION_SOURCE |
Exceptions of Method GET
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_CHANGE_LOAD TYPE /BOBF/T_FRW_CHANGE,
lv_ET_CHANGE_LOAD_KEY TYPE /BOBF/T_FRW_CHANGE,
lv_ET_CONTENT_CHANGE TYPE /BOBF/T_FRW_CHANGE_CONTENT,
lv_EV_RELOAD_DEL TYPE BOOLE_D,
lv_EV_RELOAD_INT TYPE BOOLE_D,
lv_EV_SORTED TYPE /BOBF/FRW_CHANGE_SORT,
lv_IV_NO_LOAD TYPE BOOLE_D,
lv_IV_SORTED TYPE /BOBF/FRW_CHANGE_SORT,
lv_ET_ASSOCIATION_SOURCE TYPE TT_ASSOCIATION_SOURCE,
lv_other TYPE c.
CALL METHOD lo_class=>GET(
EXPORTING
IV_NO_LOAD = lv_IV_NO_LOAD
IV_SORTED = lv_IV_SORTED
IMPORTING
ET_CHANGE = lv_ET_CHANGE
ET_CHANGE_LOAD = lv_ET_CHANGE_LOAD
ET_CHANGE_LOAD_KEY = lv_ET_CHANGE_LOAD_KEY
ET_CONTENT_CHANGE = lv_ET_CONTENT_CHANGE
EV_RELOAD_DEL = lv_EV_RELOAD_DEL
EV_RELOAD_INT = lv_EV_RELOAD_INT
EV_SORTED = lv_EV_SORTED
ET_ASSOCIATION_SOURCE = lv_ET_ASSOCIATION_SOURCE ).
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