ACGEN_ADDITIONAL_HANDLING_POST SAP Method BAdI definition for Activity Generate (Post)
Below is documentation, parameters and attributes of ABAP Method ACGEN_ADDITIONAL_HANDLING_POST 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 ACGEN_ADDITIONAL_HANDLING_POST can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ACGEN_ADDITIONAL_HANDLING_POST
.| Name | Type | Data Type | Description | Default Value |
| BADI_PROCESS_FLAG | Importing | TYPE /DSD/ME_BADI_FLAG | DSD Connector: Flag for BAdI | |
| CUSTNO | Importing | TYPE /DSD/ME_VIST_HD-CUST_NO | DSD Connector: Customer Number | |
| TOURID | Importing | TYPE /DSD/ME_VIST_HD-TOUR_ID | DSD Connecter: Tour ID | |
| VISITID | Importing | TYPE /DSD/ME_VIST_HD-VISIT_ID | DSD connecter : Visit ID | |
| ACTIVITY | Changing | TYPE /DSD/ME_VIST_ACT_TT | Activities during the Customer Visit |
Exceptions of Method ACGEN_ADDITIONAL_HANDLING_POST
This method does not have any exceptionsExample ABAP coding
DATA: lv_ACTIVITY TYPE /DSD/ME_VIST_ACT_TT,
lv_BADI_PROCESS_FLAG TYPE /DSD/ME_BADI_FLAG,
lv_CUSTNO TYPE /DSD/ME_VIST_HD-CUST_NO,
lv_TOURID TYPE /DSD/ME_VIST_HD-TOUR_ID,
lv_VISITID TYPE /DSD/ME_VIST_HD-VISIT_ID,
lv_other TYPE c.
CALL METHOD /DSD/IF_EX_ME_BAPI=>ACGEN_ADDITIONAL_HANDLING_POST(
EXPORTING
BADI_PROCESS_FLAG = lv_BADI_PROCESS_FLAG
CUSTNO = lv_CUSTNO
TOURID = lv_TOURID
VISITID = lv_VISITID
CHANGING
ACTIVITY = lv_ACTIVITY ).
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