CHECK_DELIVERY_EPA SAP Method Check Whether Delivery Item Has EPA Assignment









Below is documentation, parameters and attributes of ABAP Method CHECK_DELIVERY_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 directly

The following technical details of method CHECK_DELIVERY_EPA can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CHECK_DELIVERY_EPA

.

NameTypeData TypeDescriptionDefault Value
I_POSNRImportingTYPE
POSNR_VL
Delivery Item
I_VBELNImportingTYPE
VBELN_VL
Delivery
E_EPA_GUIDExportingTYPE
PVS_GUID
Internal Identification for PVS Objects
E_EPA_PNAMEExportingTYPE
PVS_PNODE
Name of iPPE Nodes
E_HU_EXIDExportingTYPE
EXIDV
External Handling Unit Identification



Exceptions of Method CHECK_DELIVERY_EPA

E_EPA_GUIDExportingTYPE
PVS_GUIDInternal Identification for PVS ObjectsE_EPA_PNAMEExportingTYPE
PVS_PNODEName of iPPE NodesE_HU_EXIDExportingTYPE
EXIDVExternal Handling Unit IdentificationNO_EPA_DLV - Delivery Item Is Not Assigned an EPA

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_POSNR TYPE POSNR_VL,
lv_I_VBELN TYPE VBELN_VL,
lv_other TYPE c.

CALL METHOD /ISDFPS/CL_EPA_PACK=>CHECK_DELIVERY_EPA(
EXPORTING
I_POSNR = lv_I_POSNR
I_VBELN = lv_I_VBELN
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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!