CHECK_ADDRESS_COMPATIBLE SAP Method Check whether an address is compatible with its father
Below is documentation, parameters and attributes of ABAP Method CHECK_ADDRESS_COMPATIBLE within SAP class IF_EX_BADI_FMHIE_NODE_INS_CHCK. 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 IF_EX_BADI_FMHIE_NODE_INS_CHCK 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 CHECK_ADDRESS_COMPATIBLE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_ADDRESS_COMPATIBLE
.| Name | Type | Data Type | Description | Default Value |
| IM_ADDRESS | Importing | TYPE FMKU_S_DIMPART | FM account assignment | |
| IM_APPL_LOG | Importing | TYPE REF TO CL_BUBAS_APPL_LOG_CTX | Application log with context | |
| IM_HEADER | Importing | TYPE FMHIE_S_HIE_ID_KEY | Keys for Hierarchy ID | |
| IM_OLD_PARENT | Importing | TYPE FMKU_S_DIMPART | Old Parent of the address im_address | |
| IM_PARENT | Importing | TYPE FMKU_S_DIMPART | Parent of the address im_address | |
| C_FLG_ERRORS_FOUND | Changing | TYPE BOOLE_D | Do not clear in the implementation!! only set |
Exceptions of Method CHECK_ADDRESS_COMPATIBLE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_FMHIE_NODE_INS_CHCK.
DATA: lv_C_FLG_ERRORS_FOUND TYPE BOOLE_D,
lv_IM_ADDRESS TYPE FMKU_S_DIMPART,
lv_IM_APPL_LOG TYPE CL_BUBAS_APPL_LOG_CTX,
lv_IM_HEADER TYPE FMHIE_S_HIE_ID_KEY,
lv_IM_OLD_PARENT TYPE FMKU_S_DIMPART,
lv_IM_PARENT TYPE FMKU_S_DIMPART,
lv_other TYPE c.
CALL METHOD lo_class=>CHECK_ADDRESS_COMPATIBLE(
EXPORTING
IM_ADDRESS = lv_IM_ADDRESS
IM_APPL_LOG = lv_IM_APPL_LOG
IM_HEADER = lv_IM_HEADER
IM_OLD_PARENT = lv_IM_OLD_PARENT
IM_PARENT = lv_IM_PARENT
CHANGING
C_FLG_ERRORS_FOUND = lv_C_FLG_ERRORS_FOUND ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects