DELETE_MW_RELOAD_QUEUE SAP Method Delete reload data queue on MW
Below is documentation, parameters and attributes of ABAP Method DELETE_MW_RELOAD_QUEUE 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 DELETE_MW_RELOAD_QUEUE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DELETE_MW_RELOAD_QUEUE
.| Name | Type | Data Type | Description | Default Value |
| I_TOURID | Importing | TYPE /DSD/ME_TOURID | DSD Connecter: Tour ID | |
| E_DELETION_FAILED | Exporting | TYPE CHAR1 | =X if deletion failed | |
| E_SUBRC | Exporting | TYPE SY-SUBRC | Return value, return value after ABAP statements | |
| CT_RETURN | Changing | TYPE BAPIRET2_T | Return parameter table |
Exceptions of Method DELETE_MW_RELOAD_QUEUE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /DSD/IF_EX_SV_RELOAD.
DATA: lv_CT_RETURN TYPE BAPIRET2_T,
lv_E_DELETION_FAILED TYPE CHAR1,
lv_E_SUBRC TYPE SY-SUBRC,
lv_I_TOURID TYPE /DSD/ME_TOURID,
lv_other TYPE c.
CALL METHOD lo_class=>DELETE_MW_RELOAD_QUEUE(
EXPORTING
I_TOURID = lv_I_TOURID
IMPORTING
E_DELETION_FAILED = lv_E_DELETION_FAILED
E_SUBRC = lv_E_SUBRC
CHANGING
CT_RETURN = lv_CT_RETURN ).
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