READ_PARK_TABLE SAP Method Read Entries from Park Table









Below is documentation, parameters and attributes of ABAP Method READ_PARK_TABLE 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 - Static

This is a Static Method so you can call it directly

The following technical details of method READ_PARK_TABLE can also be found below:

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


Parameters of Method READ_PARK_TABLE

.

NameTypeData TypeDescriptionDefault Value
I_DOC_FILENAMEImportingTYPE
TEXT_30
Text with 30 characters
I_DOC_FORMATImportingTYPE
EDX_DOC_FORMAT
Text with 30 characters
I_DOC_TYPEImportingTYPE
EDX_DOC_TYPE_IN
Incoming Document Class
I_PID_REFImportingTYPE
EDX_PID_REF
EDX
I_SRTF2ImportingTYPE
SYBIN4
BIN4 data element for SYST
I_STATUSImportingTYPE
EDX_STATUS
EDX
E_LT_EDX_PARKExportingTYPE
LT_EDX_PARK



Exceptions of Method READ_PARK_TABLE

ENTRY_NOT_FOUND - No entry in park table found

Example ABAP coding


DATA: lv_E_LT_EDX_PARK TYPE LT_EDX_PARK,
lv_I_DOC_FILENAME TYPE TEXT_30,
lv_I_DOC_FORMAT TYPE EDX_DOC_FORMAT,
lv_I_DOC_TYPE TYPE EDX_DOC_TYPE_IN,
lv_I_PID_REF TYPE EDX_PID_REF,
lv_I_SRTF2 TYPE SYBIN4,
lv_I_STATUS TYPE EDX_STATUS,
lv_other TYPE c.

CALL METHOD EDX_PROCESS_DOCSET=>READ_PARK_TABLE(
EXPORTING
I_DOC_FILENAME = lv_I_DOC_FILENAME
I_DOC_FORMAT = lv_I_DOC_FORMAT
I_DOC_TYPE = lv_I_DOC_TYPE
I_PID_REF = lv_I_PID_REF
I_SRTF2 = lv_I_SRTF2
I_STATUS = lv_I_STATUS
IMPORTING
E_LT_EDX_PARK = lv_E_LT_EDX_PARK ).

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!