READ_DOCFLOW SAP Method Read Document Flow
Below is documentation, parameters and attributes of ABAP Method READ_DOCFLOW within SAP class /SCMB/CL_DOC_FLOW_IF. 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_DOC_FLOW_IF 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 READ_DOCFLOW can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method READ_DOCFLOW
.| Name | Type | Data Type | Description | Default Value |
| IS_READ_DOCFLOW | Importing | TYPE /SCMB/DFIF_S_READ_DOCFLOW | Selection Parameter for Reading of Document Flow | |
| IT_LINK_CATG | Importing | TYPE /SCMB/DF_RELATION_TYPE_TBL | Link Category | |
| IT_READ_DOCFLOW | Importing | TYPE /SCMB/DFIF_T_DOCUMENT | Selection Parameter for Reading of Document Flow | |
| IV_TEST_LOGSYS | Importing | TYPE FLAG | Internal Use: Please Do Not Use! | |
| ET_READ_RESULT | Exporting | TYPE /SCMB/DFIF_T_MODIFY_LINK | Links and Link Attributes | |
| ET_READ_RESULT_EXT | Exporting | TYPE /SCMB/DFIF_T_MODIFY_LINK_EXT | Links with Document Category Description |
Exceptions of Method READ_DOCFLOW
/SCMB/CX_DOC_FLOW_IF - Interface to Document FlowExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/CL_DOC_FLOW_IF.
DATA: lv_ET_READ_RESULT TYPE /SCMB/DFIF_T_MODIFY_LINK,
lv_ET_READ_RESULT_EXT TYPE /SCMB/DFIF_T_MODIFY_LINK_EXT,
lv_IS_READ_DOCFLOW TYPE /SCMB/DFIF_S_READ_DOCFLOW,
lv_IT_LINK_CATG TYPE /SCMB/DF_RELATION_TYPE_TBL,
lv_IT_READ_DOCFLOW TYPE /SCMB/DFIF_T_DOCUMENT,
lv_IV_TEST_LOGSYS TYPE FLAG,
lv_other TYPE c.
CALL METHOD lo_class=>READ_DOCFLOW(
EXPORTING
IS_READ_DOCFLOW = lv_IS_READ_DOCFLOW
IT_LINK_CATG = lv_IT_LINK_CATG
IT_READ_DOCFLOW = lv_IT_READ_DOCFLOW
IV_TEST_LOGSYS = lv_IV_TEST_LOGSYS
IMPORTING
ET_READ_RESULT = lv_ET_READ_RESULT
ET_READ_RESULT_EXT = lv_ET_READ_RESULT_EXT ).
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