MAP_ADDRESS_ADDRX_TO_ADX SAP Method Map Addr1, 2 or 3 to Relevant Tables
Below is documentation, parameters and attributes of ABAP Method MAP_ADDRESS_ADDRX_TO_ADX within SAP class VMD_EI_API_EXTRACT. 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 VMD_EI_API_EXTRACT 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 MAP_ADDRESS_ADDRX_TO_ADX can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MAP_ADDRESS_ADDRX_TO_ADX
.| Name | Type | Data Type | Description | Default Value |
| IS_COMPLEX_ADDR1 | Importing | TYPE SZADR_ADDR1_COMPLETE | ||
| IS_COMPLEX_ADDR2 | Importing | TYPE SZADR_ADDR2_COMPLETE | ||
| IS_COMPLEX_ADDR3 | Importing | TYPE SZADR_ADDR3_COMPLETE | ||
| IS_COMPLEX_ADDR1 | Importing | TYPE SZADR_ADDR1_COMPLETE | ||
| IS_COMPLEX_ADDR2 | Importing | TYPE SZADR_ADDR2_COMPLETE | ||
| IS_COMPLEX_ADDR3 | Importing | TYPE SZADR_ADDR3_COMPLETE | ||
| CS_AD1 | Changing | TYPE ADRC_TAB | VADRC table type | |
| CS_AD2 | Changing | TYPE CVIS_EI_EXTRACT_ADDRESS_DATA_2 | Complex Structure Address Data Type 2 | |
| CS_AD3 | Changing | TYPE CVIS_EI_EXTRACT_ADDRESS_DATA_3 | Complex Structure Address Data Type 3 |
Exceptions of Method MAP_ADDRESS_ADDRX_TO_ADX
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_CS_AD1 TYPE ADRC_TAB,
lv_CS_AD2 TYPE CVIS_EI_EXTRACT_ADDRESS_DATA_2,
lv_CS_AD3 TYPE CVIS_EI_EXTRACT_ADDRESS_DATA_3,
lv_IS_COMPLEX_ADDR1 TYPE SZADR_ADDR1_COMPLETE,
lv_IS_COMPLEX_ADDR2 TYPE SZADR_ADDR2_COMPLETE,
lv_IS_COMPLEX_ADDR3 TYPE SZADR_ADDR3_COMPLETE,
lv_IS_COMPLEX_ADDR1 TYPE SZADR_ADDR1_COMPLETE,
lv_IS_COMPLEX_ADDR2 TYPE SZADR_ADDR2_COMPLETE,
lv_IS_COMPLEX_ADDR3 TYPE SZADR_ADDR3_COMPLETE,
lv_other TYPE c.
CALL METHOD VMD_EI_API_EXTRACT=>MAP_ADDRESS_ADDRX_TO_ADX(
EXPORTING
IS_COMPLEX_ADDR1 = lv_IS_COMPLEX_ADDR1
IS_COMPLEX_ADDR2 = lv_IS_COMPLEX_ADDR2
IS_COMPLEX_ADDR3 = lv_IS_COMPLEX_ADDR3
IS_COMPLEX_ADDR1 = lv_IS_COMPLEX_ADDR1
IS_COMPLEX_ADDR2 = lv_IS_COMPLEX_ADDR2
IS_COMPLEX_ADDR3 = lv_IS_COMPLEX_ADDR3
CHANGING
CS_AD1 = lv_CS_AD1
CS_AD2 = lv_CS_AD2
CS_AD3 = lv_CS_AD3 ).
Links to Related Class(s)
VMD_EI_A...Full list of available SAP object classes
Search for further information about these or an SAP related objects