GET_VERIFYLOG_FROM_ARCHIVE SAP Method Read VerifyLog from the Archive









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

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


Parameters of Method GET_VERIFYLOG_FROM_ARCHIVE

.

NameTypeData TypeDescriptionDefault Value
I_BELNRImportingTYPE
EDX_BELNR
EDX: Document Number
I_BUKRSImportingTYPE
BUKRS
Company Code
I_DOC_TYPEImportingTYPE
EDX_DOC_TYPE_IN
EDX: Incoming Document Class
I_IDOC_NUMBERImportingTYPE
EDI_DOCNUM
IDoc Number
I_ORD_CHG_NOImportingTYPE
C
E_XDATAExportingTYPE
XSTRING
VerifyLog String



Exceptions of Method GET_VERIFYLOG_FROM_ARCHIVE

E_XDATAExportingTYPE
XSTRINGVerifyLog StringNO_IN_CONFIG_FOUND - No IN Configuration Found

Example ABAP coding


DATA: lv_E_XDATA TYPE XSTRING,
lv_I_BELNR TYPE EDX_BELNR,
lv_I_BUKRS TYPE BUKRS,
lv_I_DOC_TYPE TYPE EDX_DOC_TYPE_IN,
lv_I_IDOC_NUMBER TYPE EDI_DOCNUM,
lv_I_ORD_CHG_NO TYPE C,
lv_other TYPE c.

CALL METHOD EDX_UTIL=>GET_VERIFYLOG_FROM_ARCHIVE(
EXPORTING
I_BELNR = lv_I_BELNR
I_BUKRS = lv_I_BUKRS
I_DOC_TYPE = lv_I_DOC_TYPE
I_IDOC_NUMBER = lv_I_IDOC_NUMBER
I_ORD_CHG_NO = lv_I_ORD_CHG_NO
IMPORTING
E_XDATA = lv_E_XDATA ).

Links to Related Class(s)

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