CREATE_LINK SAP Method Create Links









Below is documentation, parameters and attributes of ABAP Method CREATE_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 CREATE_LINK can also be found below:

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


Parameters of Method CREATE_LINK

.

NameTypeData TypeDescriptionDefault Value
IS_ATTRIBUTEImportingTYPE
/SCMB/DF_ATTRIBUTE
Document Flow: Additional Data
IS_ATTRIBUTEXImportingTYPE
/SCMB/DF_ATTRIBUTEX
Document Flow: Additional Data (xstring)
IS_DOCUMENTX_FROMImportingTYPE
/SCMB/DF_DOCUMENTX
Document Flow: Field Catalog Document (xstring)
IS_DOCUMENTX_TOImportingTYPE
/SCMB/DF_DOCUMENTX
Document Flow: Document Identification (xstring)
IS_DOCUMENT_FROMImportingTYPE
/SCMB/DF_DOCUMENT
Document Flow: Field Catalog Document
IS_DOCUMENT_TOImportingTYPE
/SCMB/DF_DOCUMENT
Document Flow: Document Identification
IT_ATTRIBUTEImportingTYPE
/SCMB/DF_ATTRIBUTE_TBL
Document Flow: Additional Data
IT_ATTRIBUTEXImportingTYPE
/SCMB/DF_ATTRIBUTEX_TBL
Document Flow: Additional Data (xstring)
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_RELATION_TYPEImportingTYPE
OBLRELTYPE
Link Category



Exceptions of Method CREATE_LINK

/SCMB/CX_DF_RELATION - Document Flow: Link Error

Example ABAP coding


DATA: lv_IS_ATTRIBUTE TYPE /SCMB/DF_ATTRIBUTE,
lv_IS_ATTRIBUTEX TYPE /SCMB/DF_ATTRIBUTEX,
lv_IS_DOCUMENTX_FROM TYPE /SCMB/DF_DOCUMENTX,
lv_IS_DOCUMENTX_TO TYPE /SCMB/DF_DOCUMENTX,
lv_IS_DOCUMENT_FROM TYPE /SCMB/DF_DOCUMENT,
lv_IS_DOCUMENT_TO TYPE /SCMB/DF_DOCUMENT,
lv_IT_ATTRIBUTE TYPE /SCMB/DF_ATTRIBUTE_TBL,
lv_IT_ATTRIBUTEX TYPE /SCMB/DF_ATTRIBUTEX_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_RELATION_TYPE TYPE OBLRELTYPE,
lv_other TYPE c.

CALL METHOD /SCMB/CL_DF_DOCFLOW=>CREATE_LINK(
EXPORTING
IS_ATTRIBUTE = lv_IS_ATTRIBUTE
IS_ATTRIBUTEX = lv_IS_ATTRIBUTEX
IS_DOCUMENTX_FROM = lv_IS_DOCUMENTX_FROM
IS_DOCUMENTX_TO = lv_IS_DOCUMENTX_TO
IS_DOCUMENT_FROM = lv_IS_DOCUMENT_FROM
IS_DOCUMENT_TO = lv_IS_DOCUMENT_TO
IT_ATTRIBUTE = lv_IT_ATTRIBUTE
IT_ATTRIBUTEX = lv_IT_ATTRIBUTEX
IT_DOCUMENT = lv_IT_DOCUMENT
IT_DOCUMENTX = lv_IT_DOCUMENTX
IT_RELATION = lv_IT_RELATION
IV_RELATION_TYPE = lv_IV_RELATION_TYPE ).

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!