OUTBOUND_PROCESSING SAP Method of class IF_SHP_SE_CUSTRETSDELIVIDQR









Below is documentation, parameters and attributes of ABAP Method OUTBOUND_PROCESSING within SAP class IF_SHP_SE_CUSTRETSDELIVIDQR. 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_SHP_SE_CUSTRETSDELIVIDQR 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 OUTBOUND_PROCESSING can also be found below:

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


Parameters of Method OUTBOUND_PROCESSING

.

NameTypeData TypeDescriptionDefault Value
IT_DLV_HDRImportingTYPE
BAPIDLVHDR_T
Table: BAPI Structure Delivery Header Same LIKP
IT_DLV_HDR_PARTNERImportingTYPE
BAPIDLVPARTNERS_T
Table: BAPI Structure Partner for a Delivery Same VBPA
IT_DLV_HDR_STSImportingTYPE
BAPIDLVHDRSTS_T
Table: BAPI Structure Delivery Header Status Same VBUK
IT_DLV_ITMImportingTYPE
BAPIDLVITEM_T
Table: BAPI Structure Delivery Item Same LIPS
IT_DLV_ITM_SERNOSImportingTYPE
BAPIDLVITMSERNO_T
IT_DLV_ITM_STSImportingTYPE
BAPIDLVITEMSTS_T
Table: BAPI Structure Delivery Item Status Same VBUP
IV_LANGUImportingTYPE
SYLANGU
Language Key of Current Text Environment
IV_VBELNImportingTYPE
VBELN_VL
Delivery
CS_PROXY_DATAChangingTYPE
SHP_CUSTRETSDELIVERPBYIDRSP
Proxy Structure (generated)
CT_RETURNChangingTYPE
BAPIRETTAB
Table with BAPI Return Information



Exceptions of Method OUTBOUND_PROCESSING

CX_PROXY_BADI_PROCESSING -

Example ABAP coding


DATA: lo_class TYPE REF TO IF_SHP_SE_CUSTRETSDELIVIDQR.
DATA: lv_CS_PROXY_DATA TYPE SHP_CUSTRETSDELIVERPBYIDRSP,
lv_CT_RETURN TYPE BAPIRETTAB,
lv_IT_DLV_HDR TYPE BAPIDLVHDR_T,
lv_IT_DLV_HDR_PARTNER TYPE BAPIDLVPARTNERS_T,
lv_IT_DLV_HDR_STS TYPE BAPIDLVHDRSTS_T,
lv_IT_DLV_ITM TYPE BAPIDLVITEM_T,
lv_IT_DLV_ITM_SERNOS TYPE BAPIDLVITMSERNO_T,
lv_IT_DLV_ITM_STS TYPE BAPIDLVITEMSTS_T,
lv_IV_LANGU TYPE SYLANGU,
lv_IV_VBELN TYPE VBELN_VL,
lv_other TYPE c.

CALL METHOD lo_class=>OUTBOUND_PROCESSING(
EXPORTING
IT_DLV_HDR = lv_IT_DLV_HDR
IT_DLV_HDR_PARTNER = lv_IT_DLV_HDR_PARTNER
IT_DLV_HDR_STS = lv_IT_DLV_HDR_STS
IT_DLV_ITM = lv_IT_DLV_ITM
IT_DLV_ITM_SERNOS = lv_IT_DLV_ITM_SERNOS
IT_DLV_ITM_STS = lv_IT_DLV_ITM_STS
IV_LANGU = lv_IV_LANGU
IV_VBELN = lv_IV_VBELN
CHANGING
CS_PROXY_DATA = lv_CS_PROXY_DATA
CT_RETURN = lv_CT_RETURN ).

Links to Related Class(s)

IF_SHP_S...
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!