GET_DOCS_BY_ATTR SAP Method Get Documents Based on Attributes
Below is documentation, parameters and attributes of ABAP Method GET_DOCS_BY_ATTR within SAP class /SCMB/CL_DF_CORE. 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 /SCMB/CL_DF_CORE 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 directlyThe following technical details of method GET_DOCS_BY_ATTR can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_DOCS_BY_ATTR
.| Name | Type | Data Type | Description | Default Value |
| IT_DOCUMENT | Importing | TYPE /SCMB/DF_DOCUMENT_TBL | Document Flow: Document | |
| IT_DOCUMENTX | Importing | TYPE /SCMB/DF_DOCUMENTX_TBL | Document Flow: Document (xstring) | |
| ET_DOC_OBJ_IDX | Exporting | TYPE TYP_T_DOC_OBJ_IDX | Document Object by Index Table |
Exceptions of Method GET_DOCS_BY_ATTR
/SCMB/CX_DF_DOCUMENT -Example ABAP coding
DATA: lv_ET_DOC_OBJ_IDX TYPE TYP_T_DOC_OBJ_IDX,
lv_IT_DOCUMENT TYPE /SCMB/DF_DOCUMENT_TBL,
lv_IT_DOCUMENTX TYPE /SCMB/DF_DOCUMENTX_TBL,
lv_other TYPE c.
CALL METHOD /SCMB/CL_DF_CORE=>GET_DOCS_BY_ATTR(
EXPORTING
IT_DOCUMENT = lv_IT_DOCUMENT
IT_DOCUMENTX = lv_IT_DOCUMENTX
IMPORTING
ET_DOC_OBJ_IDX = lv_ET_DOC_OBJ_IDX ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects