DEFINE_TRIGGER_LOAD_NODE SAP Method BO Val: Define node to be loaded for processing a trigger
Below is documentation, parameters and attributes of ABAP Method DEFINE_TRIGGER_LOAD_NODE within SAP class /SCMTMS/CL_V_BO_SUPER. 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_V_BO_SUPER 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 DEFINE_TRIGGER_LOAD_NODE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DEFINE_TRIGGER_LOAD_NODE
.| Name | Type | Data Type | Description | Default Value |
| IV_ASSOC_KEY | Importing | TYPE /BOBF/OBM_ASSOC_KEY | Association (use only if special assoc needs to be used) | |
| IV_BEFORE_IMAGE | Importing | TYPE ABAP_BOOL | Load bef. & curr. image (MT_ | |
| IV_BO_KEY | Importing | TYPE /BOBF/OBM_BO_KEY | Business Object from which data needs to be loaded | |
| IV_CLASS_TAB_DATA | Importing | TYPE TABNAME | MT_ | |
| IV_CLASS_TAB_LINK | Importing | TYPE TABNAME | MT_ | |
| IV_NODE_KEY | Importing | TYPE /BOBF/OBM_NODE_KEY | Node of IV_BO_KEY from which data needs to be loaded | |
| IV_SRC_BO_KEY | Importing | TYPE /BOBF/OBM_BO_KEY | XBO Source Business Object (if IV_BO_KEY ne IV_VAL_BO_KEY) | |
| IV_SRC_XBONODE_KEY | Importing | TYPE /BOBF/OBM_NODE_KEY | BO Representation Node on XBO Source Business Object | |
| IV_TRIGGER_ID | Importing | TYPE /SCMTMS/VAL_TRIGGER_ID | Validation Trigger ID | |
| IV_VAL_BO_KEY | Importing | TYPE /BOBF/OBM_BO_KEY | Business Object to which this Validation belongs to |
Exceptions of Method DEFINE_TRIGGER_LOAD_NODE
This method does not have any exceptionsExample ABAP coding
DATA: lv_IV_ASSOC_KEY TYPE /BOBF/OBM_ASSOC_KEY,
lv_IV_BEFORE_IMAGE TYPE ABAP_BOOL,
lv_IV_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IV_CLASS_TAB_DATA TYPE TABNAME,
lv_IV_CLASS_TAB_LINK TYPE TABNAME,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_IV_SRC_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IV_SRC_XBONODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_IV_TRIGGER_ID TYPE /SCMTMS/VAL_TRIGGER_ID,
lv_IV_VAL_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_V_BO_SUPER=>DEFINE_TRIGGER_LOAD_NODE(
EXPORTING
IV_ASSOC_KEY = lv_IV_ASSOC_KEY
IV_BEFORE_IMAGE = lv_IV_BEFORE_IMAGE
IV_BO_KEY = lv_IV_BO_KEY
IV_CLASS_TAB_DATA = lv_IV_CLASS_TAB_DATA
IV_CLASS_TAB_LINK = lv_IV_CLASS_TAB_LINK
IV_NODE_KEY = lv_IV_NODE_KEY
IV_SRC_BO_KEY = lv_IV_SRC_BO_KEY
IV_SRC_XBONODE_KEY = lv_IV_SRC_XBONODE_KEY
IV_TRIGGER_ID = lv_IV_TRIGGER_ID
IV_VAL_BO_KEY = lv_IV_VAL_BO_KEY ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects