SEARCH_LINK SAP Method Evaluation of Document Data; Delivers Direct Links









Below is documentation, parameters and attributes of ABAP Method SEARCH_LINK within SAP class /SCMB/CL_DF_DOCFLOW. 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_DOCFLOW 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 SEARCH_LINK can also be found below:

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


Parameters of Method SEARCH_LINK

.

NameTypeData TypeDescriptionDefault Value
IS_NOT_REQUESTEDImportingTYPE
/SCMB/DF_REQUEST_GET_LINK
Document Flow: Parameters Not Requested
IT_DOCUMENT_CRITERIAImportingTYPE
/SCMB/DF_DOCUMENT_CRITERIA_TBL
Document Flow: Criteria for Document Selection
IT_RELATION_TYPEImportingTYPE
/SCMB/DF_RELATION_TYPE_TBL
Document Flow: Link Category
IV_CATEGORYImportingTYPE
/SCMB/DF_CATEGORY
Document Flow: Document Category
IV_DIRECTIONImportingTYPE
/SCMB/DF_DIRECTION
Document Flow: Evaluation Direction
IV_MAXIMAL_CHAINImportingTYPE
/SCMB/DF_NET_CHAIN
Document Flow: Maximum Chain
IV_NET_LIMITImportingTYPE
/SCMB/DF_NET_LIMIT
Document Flow: Number of Networks
IV_RELATION_TYPEImportingTYPE
OBLRELTYPE
Link Category
ET_ATTRIBUTEExportingTYPE
/SCMB/DF_ATTRIBUTE_TBL
Document Flow: Additional Data
ET_ATTRIBUTEXExportingTYPE
/SCMB/DF_ATTRIBUTEX_TBL
Document Flow: Additional Data
ET_DOCUMENTExportingTYPE
/SCMB/DF_DOCUMENT_TBL
Document Flow: Document
ET_DOCUMENTXExportingTYPE
/SCMB/DF_DOCUMENTX_TBL
Document Flow: Document
ET_RELATIONExportingTYPE
/SCMB/DF_RELATION_TBL
Document Flow: Link



Exceptions of Method SEARCH_LINK

/SCMB/CX_DF_RELATION - Document Flow: Link Error

Example ABAP coding


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_RELATION TYPE /SCMB/DF_RELATION_TBL,
lv_IS_NOT_REQUESTED TYPE /SCMB/DF_REQUEST_GET_LINK,
lv_IT_DOCUMENT_CRITERIA TYPE /SCMB/DF_DOCUMENT_CRITERIA_TBL,
lv_IT_RELATION_TYPE TYPE /SCMB/DF_RELATION_TYPE_TBL,
lv_IV_CATEGORY TYPE /SCMB/DF_CATEGORY,
lv_IV_DIRECTION TYPE /SCMB/DF_DIRECTION,
lv_IV_MAXIMAL_CHAIN TYPE /SCMB/DF_NET_CHAIN,
lv_IV_NET_LIMIT TYPE /SCMB/DF_NET_LIMIT,
lv_IV_RELATION_TYPE TYPE OBLRELTYPE,
lv_other TYPE c.

CALL METHOD /SCMB/CL_DF_DOCFLOW=>SEARCH_LINK(
EXPORTING
IS_NOT_REQUESTED = lv_IS_NOT_REQUESTED
IT_DOCUMENT_CRITERIA = lv_IT_DOCUMENT_CRITERIA
IT_RELATION_TYPE = lv_IT_RELATION_TYPE
IV_CATEGORY = lv_IV_CATEGORY
IV_DIRECTION = lv_IV_DIRECTION
IV_MAXIMAL_CHAIN = lv_IV_MAXIMAL_CHAIN
IV_NET_LIMIT = lv_IV_NET_LIMIT
IV_RELATION_TYPE = lv_IV_RELATION_TYPE
IMPORTING
ET_ATTRIBUTE = lv_ET_ATTRIBUTE
ET_ATTRIBUTEX = lv_ET_ATTRIBUTEX
ET_DOCUMENT = lv_ET_DOCUMENT
ET_DOCUMENTX = lv_ET_DOCUMENTX
ET_RELATION = lv_ET_RELATION ).

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!