GET_VALUES_FROM_IDOC_DESADV SAP Method Get values from the IDoc desadv









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

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


Parameters of Method GET_VALUES_FROM_IDOC_DESADV

.

NameTypeData TypeDescriptionDefault Value
I_DOCNUMImportingTYPE
EDI_DOCNUM
IDoc Number
E_BELNRExportingTYPE
EDX_BELNR
EDX
E_BPIDExportingTYPE
EDX_SENDER_PID
EDX
E_BP_NRExportingTYPE
PARTNER
Partner Number
E_BP_TYPEExportingTYPE
EDX_BP_TYPE
EDX: Type of Business Partner
E_ORDER_DATEExportingTYPE
EDIDAT8
IDOC: Date
E_PO_NUMBERExportingTYPE
EDX_BELNR
EDX: Record Number
E_TRXREFExportingTYPE
EDX_PID_REF
EDX



Exceptions of Method GET_VALUES_FROM_IDOC_DESADV

E_BELNRExportingTYPE
EDX_BELNREDXE_BPIDExportingTYPE
EDX_SENDER_PIDEDXE_BP_NRExportingTYPE
PARTNERPartner NumberE_BP_TYPEExportingTYPE
EDX_BP_TYPEEDX: Type of Business PartnerE_ORDER_DATEExportingTYPE
EDIDAT8IDOC: DateE_PO_NUMBERExportingTYPE
EDX_BELNREDX: Record NumberE_TRXREFExportingTYPE
EDX_PID_REFEDXNO_IDOC - IDoc No. not Available

Example ABAP coding


DATA: lo_class TYPE REF TO EDX_PROCESS_DOCSET.
DATA: lv_E_BELNR TYPE EDX_BELNR,
lv_E_BPID TYPE EDX_SENDER_PID,
lv_E_BP_NR TYPE PARTNER,
lv_E_BP_TYPE TYPE EDX_BP_TYPE,
lv_E_ORDER_DATE TYPE EDIDAT8,
lv_E_PO_NUMBER TYPE EDX_BELNR,
lv_E_TRXREF TYPE EDX_PID_REF,
lv_I_DOCNUM TYPE EDI_DOCNUM,
lv_other TYPE c.

CALL METHOD lo_class=>GET_VALUES_FROM_IDOC_DESADV(
EXPORTING
I_DOCNUM = lv_I_DOCNUM
IMPORTING
E_BELNR = lv_E_BELNR
E_BPID = lv_E_BPID
E_BP_NR = lv_E_BP_NR
E_BP_TYPE = lv_E_BP_TYPE
E_ORDER_DATE = lv_E_ORDER_DATE
E_PO_NUMBER = lv_E_PO_NUMBER
E_TRXREF = lv_E_TRXREF ).

Links to Related Class(s)

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