PROCESS_CHANGES SAP Method Process Changes
Below is documentation, parameters and attributes of ABAP Method PROCESS_CHANGES within SAP class IF_BADI_INV_BEL_CHANGE_DOC. 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 IF_BADI_INV_BEL_CHANGE_DOC 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 PROCESS_CHANGES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PROCESS_CHANGES
.| Name | Type | Data Type | Description | Default Value |
| IT_NEW_ISEG | Importing | TYPE TY_T_ISEG | Physical Inventory Document Items | |
| IT_OLD_ISEG | Importing | TYPE TY_T_ISEG | Physical Inventory Document Items | |
| I_NEW_IKPF | Importing | TYPE IKPF | Header: Physical Inventory Document | |
| I_OLD_IKPF | Importing | TYPE IKPF | Header: Physical Inventory Document | |
| I_TRTYPE | Importing | TYPE TRTYP | Transaction Type | |
| I_XAEBL | Importing | TYPE XAEBL | Change Document in Physical Inventory |
Exceptions of Method PROCESS_CHANGES
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_INV_BEL_CHANGE_DOC.
DATA: lv_IT_NEW_ISEG TYPE TY_T_ISEG,
lv_IT_OLD_ISEG TYPE TY_T_ISEG,
lv_I_NEW_IKPF TYPE IKPF,
lv_I_OLD_IKPF TYPE IKPF,
lv_I_TRTYPE TYPE TRTYP,
lv_I_XAEBL TYPE XAEBL,
lv_other TYPE c.
CALL METHOD lo_class=>PROCESS_CHANGES(
EXPORTING
IT_NEW_ISEG = lv_IT_NEW_ISEG
IT_OLD_ISEG = lv_IT_OLD_ISEG
I_NEW_IKPF = lv_I_NEW_IKPF
I_OLD_IKPF = lv_I_OLD_IKPF
I_TRTYPE = lv_I_TRTYPE
I_XAEBL = lv_I_XAEBL ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects