READ_NETWORK SAP Method Delivers the Links of an Application
Below is documentation, parameters and attributes of ABAP Method READ_NETWORK within SAP class /SCMB/IF_DF_IMPORT. 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/IF_DF_IMPORT 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 READ_NETWORK can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method READ_NETWORK
.| Name | Type | Data Type | Description | Default Value |
| IT_DOCUMENT | Importing | TYPE /SCMB/DF_DOCUMENT_TBL | Document Flow: Document | |
| IV_DIRECTION | Importing | TYPE /SCMB/DF_DIRECTION | Document Flow: Evaluation Direction | |
| IV_LAST_CHANGED | Importing | TYPE /SCMB/DF_LAST_CHANGED | Document Flow: Date Last Changed | |
| IV_ONLY_NEXT | Importing | TYPE /SCMB/DF_ONLY_NEXT | Document Flow: Read Direct Links Only | |
| ET_ATTRIBUTE | Exporting | TYPE /SCMB/DF_ATTRIBUTE_TBL | Document Flow: Additional Data | |
| ET_DOCUMENT | Exporting | TYPE /SCMB/DF_DOCUMENT_TBL | Document Flow: Document | |
| ET_RELATION | Exporting | TYPE /SCMB/DF_RELATION_TBL | Document Flow: Link |
Exceptions of Method READ_NETWORK
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_ATTRIBUTE TYPE /SCMB/DF_ATTRIBUTE_TBL,
lv_ET_DOCUMENT TYPE /SCMB/DF_DOCUMENT_TBL,
lv_ET_RELATION TYPE /SCMB/DF_RELATION_TBL,
lv_IT_DOCUMENT TYPE /SCMB/DF_DOCUMENT_TBL,
lv_IV_DIRECTION TYPE /SCMB/DF_DIRECTION,
lv_IV_LAST_CHANGED TYPE /SCMB/DF_LAST_CHANGED,
lv_IV_ONLY_NEXT TYPE /SCMB/DF_ONLY_NEXT,
lv_other TYPE c.
CALL METHOD /SCMB/IF_DF_IMPORT=>READ_NETWORK(
EXPORTING
IT_DOCUMENT = lv_IT_DOCUMENT
IV_DIRECTION = lv_IV_DIRECTION
IV_LAST_CHANGED = lv_IV_LAST_CHANGED
IV_ONLY_NEXT = lv_IV_ONLY_NEXT
IMPORTING
ET_ATTRIBUTE = lv_ET_ATTRIBUTE
ET_DOCUMENT = lv_ET_DOCUMENT
ET_RELATION = lv_ET_RELATION ).
Links to Related Class(s)
/SCMB/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects