GET_PDF_FROM_ARCHIVE SAP Method Read PDF from the Archive









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

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


Parameters of Method GET_PDF_FROM_ARCHIVE

.

NameTypeData TypeDescriptionDefault Value
I_BELNRImportingTYPE
EDX_BELNR
EDX: Document Number
I_BUKRSImportingTYPE
BUKRS
Company Code
I_DIRECTIONImportingTYPE
EDX_DIRECTION
EDX: Description for the Message Direction
I_DOC_TYPEImportingTYPE
EDX_DOC_TYPE_IN
PDF of this Document Class
I_LIFNRImportingTYPE
EDX_BP_NR
EDX: Customer/Vendor Number of Business Partner
I_ORD_CHG_NOImportingTYPE
EDX_CHANGE_COUNTER
EDX: Change Counter for a Message
I_REL_DOC_TYPEImportingTYPE
EDX_REL_DOC_TYPE_IN
EDX: Type of Reference Message
E_XDATAExportingTYPE
XSTRING
PDF String



Exceptions of Method GET_PDF_FROM_ARCHIVE

E_XDATAExportingTYPE
XSTRINGPDF StringNO_OUT_CONFIG_FOUND - No OUT Configuration Found

Example ABAP coding


DATA: lv_E_XDATA TYPE XSTRING,
lv_I_BELNR TYPE EDX_BELNR,
lv_I_BUKRS TYPE BUKRS,
lv_I_DIRECTION TYPE EDX_DIRECTION,
lv_I_DOC_TYPE TYPE EDX_DOC_TYPE_IN,
lv_I_LIFNR TYPE EDX_BP_NR,
lv_I_ORD_CHG_NO TYPE EDX_CHANGE_COUNTER,
lv_I_REL_DOC_TYPE TYPE EDX_REL_DOC_TYPE_IN,
lv_other TYPE c.

CALL METHOD EDX_UTIL=>GET_PDF_FROM_ARCHIVE(
EXPORTING
I_BELNR = lv_I_BELNR
I_BUKRS = lv_I_BUKRS
I_DIRECTION = lv_I_DIRECTION
I_DOC_TYPE = lv_I_DOC_TYPE
I_LIFNR = lv_I_LIFNR
I_ORD_CHG_NO = lv_I_ORD_CHG_NO
I_REL_DOC_TYPE = lv_I_REL_DOC_TYPE
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!