CHECK_ADDR_DET SAP Method Checks Address determination usage
Below is documentation, parameters and attributes of ABAP Method CHECK_ADDR_DET within SAP class /SCMTMS/CL_BUPA_ADAPTER. 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 /SCMTMS/CL_BUPA_ADAPTER 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_ADDR_DET can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHECK_ADDR_DET
.| Name | Type | Data Type | Description | Default Value |
| IV_ADDRESS_GUID | Importing | TYPE BU_ADDRESS_GUID_BAPI | GUID of a BP Address in CHAR 32 Format for BAPIs | |
| IV_OPERATION | Importing | TYPE BU_OPERATION | Transaction for BP Address Determination | |
| IV_PARTNER | Importing | TYPE BU_PARTNER | Business Partner Number | |
| EV_ADDR_DET_PROC_REL | Exporting | TYPE /BOFU/ADDR_DET_PRC_REL_CD | AddressDeterminationProcesseRelevanceCode (GDT) | |
| EV_STD_ADR_CHECK | Exporting | TYPE BU_XDFADR | Indicator: Address is standard address |
Exceptions of Method CHECK_ADDR_DET
/SCMTMS/CX_BUPA_ADAPTER - Business Partner Master Data Adapter ErrorsExample 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: lo_class TYPE REF TO /SCMTMS/CL_BUPA_ADAPTER.
DATA: lv_EV_ADDR_DET_PROC_REL TYPE /BOFU/ADDR_DET_PRC_REL_CD,
lv_EV_STD_ADR_CHECK TYPE BU_XDFADR,
lv_IV_ADDRESS_GUID TYPE BU_ADDRESS_GUID_BAPI,
lv_IV_OPERATION TYPE BU_OPERATION,
lv_IV_PARTNER TYPE BU_PARTNER,
lv_other TYPE c.
CALL METHOD lo_class=>CHECK_ADDR_DET(
EXPORTING
IV_ADDRESS_GUID = lv_IV_ADDRESS_GUID
IV_OPERATION = lv_IV_OPERATION
IV_PARTNER = lv_IV_PARTNER
IMPORTING
EV_ADDR_DET_PROC_REL = lv_EV_ADDR_DET_PROC_REL
EV_STD_ADR_CHECK = lv_EV_STD_ADR_CHECK ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects