GET_CONFIG_IN_DATA SAP Method Read Entry from Table EDX_CONFIG_IN









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

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


Parameters of Method GET_CONFIG_IN_DATA

.

NameTypeData TypeDescriptionDefault Value
I_AR_OBJECTImportingTYPE
EDX_ARCHIVE_OBJECT
EDX: Document Type in Archive
I_DOC_TYPE_INImportingTYPE
EDX_DOC_TYPE_IN
Incoming Message Type
I_OBJTYPImportingTYPE
EDX_OBJTYP
EDX: Object Type
I_SP_DOC_FILENAMEImportingTYPE
EDX_SP_DOC_FILENAME
EDX: Service Provider Document Filename
I_SP_DOC_FORMATImportingTYPE
EDX_SP_DOC_FORMAT
EDX: Service Provider Document Format
I_SP_DOC_SIGNEDImportingTYPE
EDX_SP_DOC_SIGNED
EDX: Service Provider Document Signed
I_SP_DOC_TYPEImportingTYPE
EDX_SP_DOC_TYPE
EDX: Service Provider Document Class
E_CONFIG_INExportingTYPE
EDX_CONFIG_IN
EDX: Configuration for Incoming Messages



Exceptions of Method GET_CONFIG_IN_DATA

E_CONFIG_INExportingTYPE
EDX_CONFIG_INEDX: Configuration for Incoming MessagesNO_SELECTION_POSSIBLE - No Selection Possible

Example ABAP coding


DATA: lo_class TYPE REF TO EDX_PROCESS_DOCSET.
DATA: lv_E_CONFIG_IN TYPE EDX_CONFIG_IN,
lv_I_AR_OBJECT TYPE EDX_ARCHIVE_OBJECT,
lv_I_DOC_TYPE_IN TYPE EDX_DOC_TYPE_IN,
lv_I_OBJTYP TYPE EDX_OBJTYP,
lv_I_SP_DOC_FILENAME TYPE EDX_SP_DOC_FILENAME,
lv_I_SP_DOC_FORMAT TYPE EDX_SP_DOC_FORMAT,
lv_I_SP_DOC_SIGNED TYPE EDX_SP_DOC_SIGNED,
lv_I_SP_DOC_TYPE TYPE EDX_SP_DOC_TYPE,
lv_other TYPE c.

CALL METHOD lo_class=>GET_CONFIG_IN_DATA(
EXPORTING
I_AR_OBJECT = lv_I_AR_OBJECT
I_DOC_TYPE_IN = lv_I_DOC_TYPE_IN
I_OBJTYP = lv_I_OBJTYP
I_SP_DOC_FILENAME = lv_I_SP_DOC_FILENAME
I_SP_DOC_FORMAT = lv_I_SP_DOC_FORMAT
I_SP_DOC_SIGNED = lv_I_SP_DOC_SIGNED
I_SP_DOC_TYPE = lv_I_SP_DOC_TYPE
IMPORTING
E_CONFIG_IN = lv_E_CONFIG_IN ).

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!