GET_META_NODE_CATEGORY SAP Method returns node cat key of a meta-node given by a param (xor)









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

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


Parameters of Method GET_META_NODE_CATEGORY

.

NameTypeData TypeDescriptionDefault Value
IV_ACT_CATImportingTYPE
/BOBF/ACT_CAT
Action Category
IV_ASSOC_CATImportingTYPE
/BOBF/OBM_ASSOC_CAT
Association Category
IV_DERIV_CATImportingTYPE
/BOBF/OBM_DERIVATOR_CAT
Status Derivator Category
IV_NODE_TYPEImportingTYPE
/BOBF/OBM_NODE_TYPE
Node Type
IV_QUERY_CATImportingTYPE
/BOBF/OBM_QUERY_CAT
Query Category
IV_VAL_CATImportingTYPE
/BOBF/VAL_CAT
Validation Category
EV_NODE_CAT_KEYExportingTYPE
/BOBF/OBM_NODE_CAT_KEY
Node Category



Exceptions of Method GET_META_NODE_CATEGORY

This method does not have any exceptions

Example ABAP coding


DATA: lv_EV_NODE_CAT_KEY TYPE /BOBF/OBM_NODE_CAT_KEY,
lv_IV_ACT_CAT TYPE /BOBF/ACT_CAT,
lv_IV_ASSOC_CAT TYPE /BOBF/OBM_ASSOC_CAT,
lv_IV_DERIV_CAT TYPE /BOBF/OBM_DERIVATOR_CAT,
lv_IV_NODE_TYPE TYPE /BOBF/OBM_NODE_TYPE,
lv_IV_QUERY_CAT TYPE /BOBF/OBM_QUERY_CAT,
lv_IV_VAL_CAT TYPE /BOBF/VAL_CAT,
lv_other TYPE c.

CALL METHOD /BOBF/CL_CONF_H_SEMANTIC_MODEL=>GET_META_NODE_CATEGORY(
EXPORTING
IV_ACT_CAT = lv_IV_ACT_CAT
IV_ASSOC_CAT = lv_IV_ASSOC_CAT
IV_DERIV_CAT = lv_IV_DERIV_CAT
IV_NODE_TYPE = lv_IV_NODE_TYPE
IV_QUERY_CAT = lv_IV_QUERY_CAT
IV_VAL_CAT = lv_IV_VAL_CAT
IMPORTING
EV_NODE_CAT_KEY = lv_EV_NODE_CAT_KEY ).

Links to Related Class(s)

/BOBF/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!