GET_NETWORK_BY_DOCOBJ SAP Method Get Network of Document Objects
Below is documentation, parameters and attributes of ABAP Method GET_NETWORK_BY_DOCOBJ within SAP class /SCMB/CL_DF_DOCFLOW2. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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_DOCFLOW2 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_NETWORK_BY_DOCOBJ can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_NETWORK_BY_DOCOBJ
.| Name | Type | Data Type | Description | Default Value |
| IS_NOT_REQUESTED | Importing | TYPE /SCMB/DF_REQUEST_GET_LINK | Document Flow: Parameters Not Requested | |
| IT_DOC_OBJ_IDX | Importing | TYPE /SCMB/CL_DF_CORE=>TYP_T_DOC_OBJ_IDX | Document Object by Index Table | |
| IT_RELATION_TYPE | Importing | TYPE /SCMB/DF_RELATION_TYPE_TBL | Document Flow: Link Category | |
| IV_COMPLETENESS | Importing | TYPE /SCMB/DF_COMPLETENESS | Document Flow: Completeness | |
| IV_HANDLE_INCONSISTENCY | Importing | TYPE /SCMB/DF_ERROR | DocFlow error code | |
| IV_MAXIMAL_CHAIN | Importing | TYPE /SCMB/DF_NET_CHAIN | Document Flow: Maximum Chain | |
| IV_RELATION_BACKWARD | Importing | TYPE /SCMB/DF_RELATION_CNT | Document Flow: Number of Links | |
| IV_RELATION_FORWARD | Importing | TYPE /SCMB/DF_RELATION_CNT | Document Flow: Number of Links | |
| ET_ATTRIBUTE | Exporting | TYPE /SCMB/DF_ATTRIBUTE_TBL | Document Flow: Additional Data | |
| ET_ATTRIBUTEX | Exporting | TYPE /SCMB/DF_ATTRIBUTEX_TBL | Document Flow: Additional Data (xstring) | |
| ET_DOCUMENT | Exporting | TYPE /SCMB/DF_DOCUMENT_TBL | Document Flow: Document | |
| ET_DOCUMENTX | Exporting | TYPE /SCMB/DF_DOCUMENTX_TBL | Document Flow: Document (xstring) | |
| ET_INCONSISTENT | Exporting | TYPE /SCMB/DF_DOCUMENT_TBL | Document Flow: Document | |
| ET_INCONSISTENTX | Exporting | TYPE /SCMB/DF_DOCUMENTX_TBL | Document Flow: Document (xstring) | |
| ET_RELATION | Exporting | TYPE /SCMB/DF_RELATION_TBL | Document Flow: Link | |
| ET_RELATION_PARTIAL | Exporting | TYPE /SCMB/DF_RELATION_PARTIAL_TBL | Document Flow: Link, By Document |
Exceptions of Method GET_NETWORK_BY_DOCOBJ
/SCMB/CX_DF_RELATION -Example ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lv_ET_ATTRIBUTE TYPE /SCMB/DF_ATTRIBUTE_TBL,
lv_ET_ATTRIBUTEX TYPE /SCMB/DF_ATTRIBUTEX_TBL,
lv_ET_DOCUMENT TYPE /SCMB/DF_DOCUMENT_TBL,
lv_ET_DOCUMENTX TYPE /SCMB/DF_DOCUMENTX_TBL,
lv_ET_INCONSISTENT TYPE /SCMB/DF_DOCUMENT_TBL,
lv_ET_INCONSISTENTX TYPE /SCMB/DF_DOCUMENTX_TBL,
lv_ET_RELATION TYPE /SCMB/DF_RELATION_TBL,
lv_ET_RELATION_PARTIAL TYPE /SCMB/DF_RELATION_PARTIAL_TBL,
lv_IS_NOT_REQUESTED TYPE /SCMB/DF_REQUEST_GET_LINK,
lv_IT_DOC_OBJ_IDX TYPE /SCMB/CL_DF_CORE=>TYP_T_DOC_OBJ_IDX,
lv_IT_RELATION_TYPE TYPE /SCMB/DF_RELATION_TYPE_TBL,
lv_IV_COMPLETENESS TYPE /SCMB/DF_COMPLETENESS,
lv_IV_HANDLE_INCONSISTENCY TYPE /SCMB/DF_ERROR,
lv_IV_MAXIMAL_CHAIN TYPE /SCMB/DF_NET_CHAIN,
lv_IV_RELATION_BACKWARD TYPE /SCMB/DF_RELATION_CNT,
lv_IV_RELATION_FORWARD TYPE /SCMB/DF_RELATION_CNT,
lv_other TYPE c.
CALL METHOD /SCMB/CL_DF_DOCFLOW2=>GET_NETWORK_BY_DOCOBJ(
EXPORTING
IS_NOT_REQUESTED = lv_IS_NOT_REQUESTED
IT_DOC_OBJ_IDX = lv_IT_DOC_OBJ_IDX
IT_RELATION_TYPE = lv_IT_RELATION_TYPE
IV_COMPLETENESS = lv_IV_COMPLETENESS
IV_HANDLE_INCONSISTENCY = lv_IV_HANDLE_INCONSISTENCY
IV_MAXIMAL_CHAIN = lv_IV_MAXIMAL_CHAIN
IV_RELATION_BACKWARD = lv_IV_RELATION_BACKWARD
IV_RELATION_FORWARD = lv_IV_RELATION_FORWARD
IMPORTING
ET_ATTRIBUTE = lv_ET_ATTRIBUTE
ET_ATTRIBUTEX = lv_ET_ATTRIBUTEX
ET_DOCUMENT = lv_ET_DOCUMENT
ET_DOCUMENTX = lv_ET_DOCUMENTX
ET_INCONSISTENT = lv_ET_INCONSISTENT
ET_INCONSISTENTX = lv_ET_INCONSISTENTX
ET_RELATION = lv_ET_RELATION
ET_RELATION_PARTIAL = lv_ET_RELATION_PARTIAL ).
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