COMPARE_NODES_AUTH_CHECK SAP Method compare nodes regarding authorization check enablement
Below is documentation, parameters and attributes of ABAP Method COMPARE_NODES_AUTH_CHECK within SAP class /BOBF/CL_CONF_MODEL_ADT_COMP. 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_MODEL_ADT_COMP into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method COMPARE_NODES_AUTH_CHECK can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method COMPARE_NODES_AUTH_CHECK
.| Name | Type | Data Type | Description | Default Value |
| IT_NODE_CURRENT | Importing | TYPE /BOBF/T_CONF_MODEL_ADT_NODE | ADT Node Table Type | |
| IT_NODE_NEW | Importing | TYPE /BOBF/T_CONF_MODEL_ADT_NODE | ADT Node Table Type | |
| EV_AUTH_CHECK_ACTIVATED | Exporting | TYPE ABAP_BOOL | ||
| EV_AUTH_CHECK_DEACTIVATED | Exporting | TYPE ABAP_BOOL | ||
| EV_AUTH_CHECK_RELEVANT | Exporting | TYPE ABAP_BOOL |
Exceptions of Method COMPARE_NODES_AUTH_CHECK
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOBF/CL_CONF_MODEL_ADT_COMP.
DATA: lv_EV_AUTH_CHECK_ACTIVATED TYPE ABAP_BOOL,
lv_EV_AUTH_CHECK_DEACTIVATED TYPE ABAP_BOOL,
lv_EV_AUTH_CHECK_RELEVANT TYPE ABAP_BOOL,
lv_IT_NODE_CURRENT TYPE /BOBF/T_CONF_MODEL_ADT_NODE,
lv_IT_NODE_NEW TYPE /BOBF/T_CONF_MODEL_ADT_NODE,
lv_other TYPE c.
CALL METHOD lo_class=>COMPARE_NODES_AUTH_CHECK(
EXPORTING
IT_NODE_CURRENT = lv_IT_NODE_CURRENT
IT_NODE_NEW = lv_IT_NODE_NEW
IMPORTING
EV_AUTH_CHECK_ACTIVATED = lv_EV_AUTH_CHECK_ACTIVATED
EV_AUTH_CHECK_DEACTIVATED = lv_EV_AUTH_CHECK_DEACTIVATED
EV_AUTH_CHECK_RELEVANT = lv_EV_AUTH_CHECK_RELEVANT ).
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