GET_VALUES_FROM_IDOC_ORDRSP SAP Method Get Values from the IDoc Order Response









Below is documentation, parameters and attributes of ABAP Method GET_VALUES_FROM_IDOC_ORDRSP 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_ORDRSP can also be found below:

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


Parameters of Method GET_VALUES_FROM_IDOC_ORDRSP

.

NameTypeData TypeDescriptionDefault Value
I_DOCNUMImportingTYPE
EDI_DOCNUM
IDoc Number
E_BELNRExportingTYPE
EDX_BELNR
EDX
E_BP_NRExportingTYPE
PARTNER
EDX
E_BP_TYPEExportingTYPE
EDX_BP_TYPE
E_CURRENCYExportingTYPE
EDI6345_A
Currency
E_NET_AMOUNTExportingTYPE
EDI_SUMME
Net Value of Totals Segment
E_ORDER_DATEExportingTYPE
EDIDAT8
IDoc: Date
E_ORDRSP_CHANGEExportingTYPE
STRING
E_PO_NUMBERExportingTYPE
EDI_BELNR
EDX: Record Number
E_SENDER_PIDExportingTYPE
EDX_SENDER_PID
E_TOTAL_AMOUNTExportingTYPE
EDI_SUMME
Total value of sum segment
E_TRXREFExportingTYPE
EDX_PID_REF
EDX



Exceptions of Method GET_VALUES_FROM_IDOC_ORDRSP

E_BELNRExportingTYPE
EDX_BELNREDXE_BP_NRExportingTYPE
PARTNEREDXE_BP_TYPEExportingTYPE
EDX_BP_TYPEE_CURRENCYExportingTYPE
EDI6345_ACurrencyE_NET_AMOUNTExportingTYPE
EDI_SUMMENet Value of Totals SegmentE_ORDER_DATEExportingTYPE
EDIDAT8IDoc: DateE_ORDRSP_CHANGEExportingTYPE
STRINGE_PO_NUMBERExportingTYPE
EDI_BELNREDX: Record NumberE_SENDER_PIDExportingTYPE
EDX_SENDER_PIDE_TOTAL_AMOUNTExportingTYPE
EDI_SUMMETotal value of sum segmentE_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_BP_NR TYPE PARTNER,
lv_E_BP_TYPE TYPE EDX_BP_TYPE,
lv_E_CURRENCY TYPE EDI6345_A,
lv_E_NET_AMOUNT TYPE EDI_SUMME,
lv_E_ORDER_DATE TYPE EDIDAT8,
lv_E_ORDRSP_CHANGE TYPE STRING,
lv_E_PO_NUMBER TYPE EDI_BELNR,
lv_E_SENDER_PID TYPE EDX_SENDER_PID,
lv_E_TOTAL_AMOUNT TYPE EDI_SUMME,
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_ORDRSP(
EXPORTING
I_DOCNUM = lv_I_DOCNUM
IMPORTING
E_BELNR = lv_E_BELNR
E_BP_NR = lv_E_BP_NR
E_BP_TYPE = lv_E_BP_TYPE
E_CURRENCY = lv_E_CURRENCY
E_NET_AMOUNT = lv_E_NET_AMOUNT
E_ORDER_DATE = lv_E_ORDER_DATE
E_ORDRSP_CHANGE = lv_E_ORDRSP_CHANGE
E_PO_NUMBER = lv_E_PO_NUMBER
E_SENDER_PID = lv_E_SENDER_PID
E_TOTAL_AMOUNT = lv_E_TOTAL_AMOUNT
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!