CHECK_NODE_DDIC_GEN_NEEDED SAP Method Is DDIC generation for node needed?
Below is documentation, parameters and attributes of ABAP Method CHECK_NODE_DDIC_GEN_NEEDED within SAP class /BOBF/CL_CONF_MODEL_API_REUSE. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.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_API_REUSE 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 CHECK_NODE_DDIC_GEN_NEEDED can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_NODE_DDIC_GEN_NEEDED
.| Name | Type | Data Type | Description | Default Value |
| IS_NODE | Importing | TYPE /BOBF/S_CONF_MODEL_API_NODE | Configuration Model API: Node Details | |
| IT_ACTIVE_ALTKEY | Importing | TYPE /BOBF/T_CONF_ALTKEY | Alternative Key | |
| IT_ACTIVE_NODE | Importing | TYPE /BOBF/T_CONF_MODEL_API_NODE | Configuration Model API: Node Details | |
| IT_ALTKEY | Importing | TYPE /BOBF/T_CONF_ALTKEY | Alternative Key | |
| EV_ONLY_ALTKEY_DIFFERS | Exporting | TYPE ABAP_BOOL | ||
| RV_NODE_DDIC_GEN_NEEDED | Returning | TYPE ABAP_BOOL |
Exceptions of Method CHECK_NODE_DDIC_GEN_NEEDED
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lv_EV_ONLY_ALTKEY_DIFFERS TYPE ABAP_BOOL,
lv_IS_NODE TYPE /BOBF/S_CONF_MODEL_API_NODE,
lv_IT_ACTIVE_ALTKEY TYPE /BOBF/T_CONF_ALTKEY,
lv_IT_ACTIVE_NODE TYPE /BOBF/T_CONF_MODEL_API_NODE,
lv_IT_ALTKEY TYPE /BOBF/T_CONF_ALTKEY,
lv_RV_NODE_DDIC_GEN_NEEDED TYPE ABAP_BOOL,
lv_other TYPE c.
CALL METHOD /BOBF/CL_CONF_MODEL_API_REUSE=>CHECK_NODE_DDIC_GEN_NEEDED(
EXPORTING
IS_NODE = lv_IS_NODE
IT_ACTIVE_ALTKEY = lv_IT_ACTIVE_ALTKEY
IT_ACTIVE_NODE = lv_IT_ACTIVE_NODE
IT_ALTKEY = lv_IT_ALTKEY
IMPORTING
EV_ONLY_ALTKEY_DIFFERS = lv_EV_ONLY_ALTKEY_DIFFERS
RECEIVING
RV_NODE_DDIC_GEN_NEEDED = lv_RV_NODE_DDIC_GEN_NEEDED )
"Alternate coding for Method Call with returning parameter
lv_RV_NODE_DDIC_GEN_NEEDED = /BOBF/CL_CONF_MODEL_API_REUSE=>CHECK_NODE_DDIC_GEN_NEEDED(
EXPORTING
IS_NODE = lv_IS_NODE
IT_ACTIVE_ALTKEY = lv_IT_ACTIVE_ALTKEY
IT_ACTIVE_NODE = lv_IT_ACTIVE_NODE
IT_ALTKEY = lv_IT_ALTKEY
IMPORTING
EV_ONLY_ALTKEY_DIFFERS = lv_EV_ONLY_ALTKEY_DIFFERS ).
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