GET_CHANGE SAP Method Return Empty Instance of Change Object
Below is documentation, parameters and attributes of ABAP Method GET_CHANGE within SAP class /BOBF/CL_FRW_FACTORY. 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/CL_FRW_FACTORY into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method GET_CHANGE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_CHANGE
.| Name | Type | Data Type | Description | Default Value |
| IV_EXTERNAL | Importing | TYPE BOOLE_D | external change flag | |
| EO_CHANGE | Returning | TYPE REF TO /BOBF/IF_FRW_CHANGE | Interface for Change Class |
Exceptions of Method GET_CHANGE
This method does not have any exceptionsExample ABAP coding
DATA: lv_EO_CHANGE TYPE /BOBF/IF_FRW_CHANGE,
lv_IV_EXTERNAL TYPE BOOLE_D,
lv_other TYPE c.
CALL METHOD /BOBF/CL_FRW_FACTORY=>GET_CHANGE(
EXPORTING
IV_EXTERNAL = lv_IV_EXTERNAL
RECEIVING
EO_CHANGE = lv_EO_CHANGE )
"Alternate coding for Method Call with returning parameter
lv_EO_CHANGE = /BOBF/CL_FRW_FACTORY=>GET_CHANGE(
EXPORTING
IV_EXTERNAL = lv_IV_EXTERNAL ).
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