CANCEL_SEQUENCE SAP Method Additional handling by canceling a sequence
Below is documentation, parameters and attributes of ABAP Method CANCEL_SEQUENCE 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 CANCEL_SEQUENCE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CANCEL_SEQUENCE
.| Name | Type | Data Type | Description | Default Value |
| CF_ABORT_CANCEL | Changing | TYPE C | Abort cancelation ('X' = abort cancel; ' ' = cancel) | |
| CT_MESSAGES | Changing | TYPE BAPIRET2_T | Return parameter table | |
| CT_RELOAD_HEADERS | Changing | TYPE /DSD/SV_RLD_HD_TT | DSD SV: Reload Header | |
| CT_RELOAD_ITEMS | Changing | TYPE /DSD/SV_RLD_IT_TT | DSD SV: Reload Item | |
| CT_RELOAD_ORDERS | Changing | TYPE /DSD/SV_ORD_TOUR_TT | DSD SV: Assignment Reload and Unload Orders to Tour |
Exceptions of Method CANCEL_SEQUENCE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /DSD/IF_EX_SV_RELOAD.
DATA: lv_CF_ABORT_CANCEL TYPE C,
lv_CT_MESSAGES TYPE BAPIRET2_T,
lv_CT_RELOAD_HEADERS TYPE /DSD/SV_RLD_HD_TT,
lv_CT_RELOAD_ITEMS TYPE /DSD/SV_RLD_IT_TT,
lv_CT_RELOAD_ORDERS TYPE /DSD/SV_ORD_TOUR_TT,
lv_other TYPE c.
CALL METHOD lo_class=>CANCEL_SEQUENCE(
CHANGING
CF_ABORT_CANCEL = lv_CF_ABORT_CANCEL
CT_MESSAGES = lv_CT_MESSAGES
CT_RELOAD_HEADERS = lv_CT_RELOAD_HEADERS
CT_RELOAD_ITEMS = lv_CT_RELOAD_ITEMS
CT_RELOAD_ORDERS = lv_CT_RELOAD_ORDERS ).
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