RELOAD_ORDER_CHANGE SAP Method Change items before update the order
Below is documentation, parameters and attributes of ABAP Method RELOAD_ORDER_CHANGE within SAP class /DSD/IF_EX_SV_RELOAD. 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 /DSD/IF_EX_SV_RELOAD 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 RELOAD_ORDER_CHANGE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method RELOAD_ORDER_CHANGE
.| Name | Type | Data Type | Description | Default Value |
| CT_ORDER_ITEMS | Changing | TYPE /DSD/SV_BAPISDITM_TT | Table for BAPISDITM for BADI Parameter | |
| CT_ORDER_ITEMS_X | Changing | TYPE /DSD/SV_BAPISDITMX_TT | Table for BAPISDITMX for BADI Parameter | |
| CT_ORDER_SCHEDULE | Changing | TYPE /DSD/SV_BAPISCHDL_TT | Table for BAPISCHDL for BADI Parameter | |
| CT_ORDER_SCHEDULE_X | Changing | TYPE /DSD/SV_BAPISCHDLX_TT | Table for BAPISCHDLX for BADI Parameter |
Exceptions of Method RELOAD_ORDER_CHANGE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /DSD/IF_EX_SV_RELOAD.
DATA: lv_CT_ORDER_ITEMS TYPE /DSD/SV_BAPISDITM_TT,
lv_CT_ORDER_ITEMS_X TYPE /DSD/SV_BAPISDITMX_TT,
lv_CT_ORDER_SCHEDULE TYPE /DSD/SV_BAPISCHDL_TT,
lv_CT_ORDER_SCHEDULE_X TYPE /DSD/SV_BAPISCHDLX_TT,
lv_other TYPE c.
CALL METHOD lo_class=>RELOAD_ORDER_CHANGE(
CHANGING
CT_ORDER_ITEMS = lv_CT_ORDER_ITEMS
CT_ORDER_ITEMS_X = lv_CT_ORDER_ITEMS_X
CT_ORDER_SCHEDULE = lv_CT_ORDER_SCHEDULE
CT_ORDER_SCHEDULE_X = lv_CT_ORDER_SCHEDULE_X ).
Links to Related Class(s)
/DSD/IF_...Full list of available SAP object classes
Search for further information about these or an SAP related objects