INPUT_EDATU SAP Method of class IF_BADI_SD_MV45AFFE_FELDAUSWAH
Below is documentation, parameters and attributes of ABAP Method INPUT_EDATU within SAP class IF_BADI_SD_MV45AFFE_FELDAUSWAH. 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 IF_BADI_SD_MV45AFFE_FELDAUSWAH 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 INPUT_EDATU can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method INPUT_EDATU
.| Name | Type | Data Type | Description | Default Value |
| IS_VBAK | Importing | TYPE VBAK | Sales Document: Header Data | |
| IS_VBAP | Importing | TYPE VBAP | Sales Document: Item Data | |
| IS_VBEP | Importing | TYPE VBEPD | Schedule Lines: Dynamic Division | |
| IS_VBUPVB | Importing | TYPE VBUPVB | Reference Structure for XVBUP/YVBUP | |
| CV_CHANGE_ALLOWED | Changing | TYPE XFELD | Checkbox |
Exceptions of Method INPUT_EDATU
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_SD_MV45AFFE_FELDAUSWAH.
DATA: lv_CV_CHANGE_ALLOWED TYPE XFELD,
lv_IS_VBAK TYPE VBAK,
lv_IS_VBAP TYPE VBAP,
lv_IS_VBEP TYPE VBEPD,
lv_IS_VBUPVB TYPE VBUPVB,
lv_other TYPE c.
CALL METHOD lo_class=>INPUT_EDATU(
EXPORTING
IS_VBAK = lv_IS_VBAK
IS_VBAP = lv_IS_VBAP
IS_VBEP = lv_IS_VBEP
IS_VBUPVB = lv_IS_VBUPVB
CHANGING
CV_CHANGE_ALLOWED = lv_CV_CHANGE_ALLOWED ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects