CHECK_PR_ON_EPA_ITEMS SAP Method Compares PReq Items Using EPA Definition
Below is documentation, parameters and attributes of ABAP Method CHECK_PR_ON_EPA_ITEMS within SAP class /ISDFPS/CL_EPA_PACK. 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 /ISDFPS/CL_EPA_PACK 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 CHECK_PR_ON_EPA_ITEMS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_PR_ON_EPA_ITEMS
.| Name | Type | Data Type | Description | Default Value |
| IT_EBAN | Importing | TYPE MEREQ_T_EBAN | Purchase Requisition | |
| E_EPA_HU_PREQ | Exporting | TYPE XFELD | PReq and EPA Do Not Agree | |
| CT_RETURN | Changing | TYPE BAPIRET2_T | Return Table |
Exceptions of Method CHECK_PR_ON_EPA_ITEMS
This method does not have any exceptionsExample ABAP coding
DATA: lv_CT_RETURN TYPE BAPIRET2_T,
lv_E_EPA_HU_PREQ TYPE XFELD,
lv_IT_EBAN TYPE MEREQ_T_EBAN,
lv_other TYPE c.
CALL METHOD /ISDFPS/CL_EPA_PACK=>CHECK_PR_ON_EPA_ITEMS(
EXPORTING
IT_EBAN = lv_IT_EBAN
IMPORTING
E_EPA_HU_PREQ = lv_E_EPA_HU_PREQ
CHANGING
CT_RETURN = lv_CT_RETURN ).
Links to Related Class(s)
/ISDFPS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects