CHECK_PR_EPA SAP Method Check Whether PReq Item Has EPA Assignment
Below is documentation, parameters and attributes of ABAP Method CHECK_PR_EPA 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_EPA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_PR_EPA
.| Name | Type | Data Type | Description | Default Value |
| I_BANFN | Importing | TYPE BANFN | Purchase Requisition Number | |
| I_BNFPO | Importing | TYPE BNFPO | Item Number of Purchase Requisition | |
| E_EPA_GUID | Exporting | TYPE PVS_GUID | Internal Identification for PVS Objects | |
| E_EPA_PNAME | Exporting | TYPE PVS_PNODE | Name of iPPE Nodes | |
| E_HU_EXID | Exporting | TYPE EXIDV | External Handling Unit Identification |
Exceptions of Method CHECK_PR_EPA
PVS_GUID
PVS_PNODE
EXIDV
Example ABAP coding
DATA: lv_E_EPA_GUID TYPE PVS_GUID,
lv_E_EPA_PNAME TYPE PVS_PNODE,
lv_E_HU_EXID TYPE EXIDV,
lv_I_BANFN TYPE BANFN,
lv_I_BNFPO TYPE BNFPO,
lv_other TYPE c.
CALL METHOD /ISDFPS/CL_EPA_PACK=>CHECK_PR_EPA(
EXPORTING
I_BANFN = lv_I_BANFN
I_BNFPO = lv_I_BNFPO
IMPORTING
E_EPA_GUID = lv_E_EPA_GUID
E_EPA_PNAME = lv_E_EPA_PNAME
E_HU_EXID = lv_E_HU_EXID ).
Links to Related Class(s)
/ISDFPS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects