DELETE_NETWORK SAP Method Delete Document Network









Below is documentation, parameters and attributes of ABAP Method DELETE_NETWORK 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 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 directly

The following technical details of method DELETE_NETWORK can also be found below:

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


Parameters of Method DELETE_NETWORK

.

NameTypeData TypeDescriptionDefault Value
IT_DOCUMENTImportingTYPE
/SCMB/DF_DOCUMENT_TBL
Document Flow: Document
IT_DOCUMENTXImportingTYPE
/SCMB/DF_DOCUMENTX_TBL
Document Flow: Document (xstring)
IT_RELATIONImportingTYPE
/SCMB/DF_RELATION_TBL
Document Flow: Link
IV_DELETE_OPTIONImportingTYPE
/SCMB/DF_DELETE_OPTION
Document Network Deletion Option
ET_RELATION_DELETEDExportingTYPE
/SCMB/DF_RELIDX_TBL
Document Flow: Index of Link
ET_RELATION_NOT_DELETEDExportingTYPE
/SCMB/DF_RELIDX_TBL
Document Flow: Index of Link



Exceptions of Method DELETE_NETWORK

/SCMB/CX_DF_RELATION -

Example ABAP coding


DATA: lv_ET_RELATION_DELETED TYPE /SCMB/DF_RELIDX_TBL,
lv_ET_RELATION_NOT_DELETED TYPE /SCMB/DF_RELIDX_TBL,
lv_IT_DOCUMENT TYPE /SCMB/DF_DOCUMENT_TBL,
lv_IT_DOCUMENTX TYPE /SCMB/DF_DOCUMENTX_TBL,
lv_IT_RELATION TYPE /SCMB/DF_RELATION_TBL,
lv_IV_DELETE_OPTION TYPE /SCMB/DF_DELETE_OPTION,
lv_other TYPE c.

CALL METHOD /SCMB/CL_DF_DOCFLOW2=>DELETE_NETWORK(
EXPORTING
IT_DOCUMENT = lv_IT_DOCUMENT
IT_DOCUMENTX = lv_IT_DOCUMENTX
IT_RELATION = lv_IT_RELATION
IV_DELETE_OPTION = lv_IV_DELETE_OPTION
IMPORTING
ET_RELATION_DELETED = lv_ET_RELATION_DELETED
ET_RELATION_NOT_DELETED = lv_ET_RELATION_NOT_DELETED ).

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



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!