TOUR_ADDITIONAL_HANDLING_PRE SAP Method BAdI definition for Tour (Pre)
Below is documentation, parameters and attributes of ABAP Method TOUR_ADDITIONAL_HANDLING_PRE within SAP class /DSD/IF_EX_ME_BAPI. 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_ME_BAPI 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 TOUR_ADDITIONAL_HANDLING_PRE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method TOUR_ADDITIONAL_HANDLING_PRE
.| Name | Type | Data Type | Description | Default Value |
| BADI_PROCESS_FLAG | Importing | TYPE /DSD/ME_BADI_FLAG | DSD Connector: Flag for BAdI | |
| MAXCNT | Importing | TYPE RSEXPOBUF-REC_CNT | Number of entries | |
| MEMBLID | Importing | TYPE /DSD/ME_MBLID | DSD Connector: Mobile Engine Mobile ID | |
| MEUSER | Importing | TYPE /DSD/ME_MEUSER | DSD Connector: Mobile Engine User ID | |
| SORT | Importing | TYPE /DSD/ME_ENHANCEMENT-DATATYPE | Data type in ABAP Dictionary | |
| TOURID | Importing | TYPE /DSD/ME_TOURID | DSD Connecter: Tour ID | |
| ENHANCEMENT_001 | Changing | TYPE /DSD/ME_ENHANCEMENT_T | DSD Connector: Enhancement (table type) | |
| ENHANCEMENT_002 | Changing | TYPE /DSD/ME_ENHANCEMENT_T | DSD Connector: Enhancement (table type) | |
| NO_FOLLOWING_PROCESS | Changing | TYPE C | 'X': Exit further logic | |
| TOUR_HEADER | Changing | TYPE /DSD/ME_TOUR_HEADER_T | DSD Connector: Tour header (table type) |
Exceptions of Method TOUR_ADDITIONAL_HANDLING_PRE
This method does not have any exceptionsExample ABAP coding
DATA: lv_BADI_PROCESS_FLAG TYPE /DSD/ME_BADI_FLAG,
lv_ENHANCEMENT_001 TYPE /DSD/ME_ENHANCEMENT_T,
lv_ENHANCEMENT_002 TYPE /DSD/ME_ENHANCEMENT_T,
lv_MAXCNT TYPE RSEXPOBUF-REC_CNT,
lv_MEMBLID TYPE /DSD/ME_MBLID,
lv_MEUSER TYPE /DSD/ME_MEUSER,
lv_NO_FOLLOWING_PROCESS TYPE C,
lv_SORT TYPE /DSD/ME_ENHANCEMENT-DATATYPE,
lv_TOURID TYPE /DSD/ME_TOURID,
lv_TOUR_HEADER TYPE /DSD/ME_TOUR_HEADER_T,
lv_other TYPE c.
CALL METHOD /DSD/IF_EX_ME_BAPI=>TOUR_ADDITIONAL_HANDLING_PRE(
EXPORTING
BADI_PROCESS_FLAG = lv_BADI_PROCESS_FLAG
MAXCNT = lv_MAXCNT
MEMBLID = lv_MEMBLID
MEUSER = lv_MEUSER
SORT = lv_SORT
TOURID = lv_TOURID
CHANGING
ENHANCEMENT_001 = lv_ENHANCEMENT_001
ENHANCEMENT_002 = lv_ENHANCEMENT_002
NO_FOLLOWING_PROCESS = lv_NO_FOLLOWING_PROCESS
TOUR_HEADER = lv_TOUR_HEADER ).
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