GET_IRF_TABLE_LINKS SAP Method Derive IRF Table Links from a BO Meta Data Model









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

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


Parameters of Method GET_IRF_TABLE_LINKS

.

NameTypeData TypeDescriptionDefault Value
IT_OBJECTSImportingTYPE
DTINF_TT_OBJ_DEFINITIONS
Table of Object specific definitions
IV_BO_KEYImportingTYPE
/BOBF/OBM_BO_KEY
Business Object
IV_NO_ILMImportingTYPE
ABAP_BOOL
Do not check for ILM Object?
IV_NO_USR02ImportingTYPE
ABAP_BOOL
Do not add links from table USR02
CT_LINKSChangingTYPE
DTINF_TT_FOUND_LINKS
All found links from the data model database table
CT_LINKS_ALLChangingTYPE
DTINF_TT_MODEL_LINK
Table Type for filling the type of table relationship



Exceptions of Method GET_IRF_TABLE_LINKS

This method does not have any exceptions

Example ABAP coding


DATA: lv_CT_LINKS TYPE DTINF_TT_FOUND_LINKS,
lv_IT_OBJECTS TYPE DTINF_TT_OBJ_DEFINITIONS,
lv_IV_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IV_NO_ILM TYPE ABAP_BOOL,
lv_CT_LINKS_ALL TYPE DTINF_TT_MODEL_LINK,
lv_IV_NO_USR02 TYPE ABAP_BOOL,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_BO_CONFIGURATION=>GET_IRF_TABLE_LINKS(
EXPORTING
IT_OBJECTS = lv_IT_OBJECTS
IV_BO_KEY = lv_IV_BO_KEY
IV_NO_ILM = lv_IV_NO_ILM
IV_NO_USR02 = lv_IV_NO_USR02
CHANGING
CT_LINKS = lv_CT_LINKS
CT_LINKS_ALL = lv_CT_LINKS_ALL ).

Links to Related Class(s)

/SCMTMS/...
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!