MAP_PHONE SAP Method DD Map communication proxy structure
Below is documentation, parameters and attributes of ABAP Method MAP_PHONE within SAP class /SCMTMS/CL_CMN_HELPER_SERVICE. 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 /SCMTMS/CL_CMN_HELPER_SERVICE 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_PHONE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MAP_PHONE
.| Name | Type | Data Type | Description | Default Value |
| IT_PHONE_PRX | Importing | TYPE /SCMTMS/CPX_T_ADDR_TELEPHONE | Telephone | |
| IV_MOBILE_PHONE | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| IV_PARENT_KEY | Importing | TYPE /BOBF/CONF_KEY | NodeID | |
| IV_BO_ROOT_KEY | Importing | TYPE /BOBF/CONF_KEY | NodeID | |
| ET_PHONE | Exporting | TYPE /BOFU/T_ADDR_TELEPHONEK | Telephone | |
| ET_PHONE_NOTE | Exporting | TYPE /BOFU/T_ADDR_TELEPHONE_NOTEK | TelephoneNote | |
| ES_DFLT_PHONE | Exporting | TYPE /BOFU/S_ADDR_TELEPHONEK | Node structure for telephone data (ADDRP_S_TELEPHONE_EL) |
Exceptions of Method MAP_PHONE
/SCMTMS/CX_CMN_SERVICE - Exception Class for common service helperExample ABAP coding
DATA: lv_ET_PHONE TYPE /BOFU/T_ADDR_TELEPHONEK,
lv_ET_PHONE_NOTE TYPE /BOFU/T_ADDR_TELEPHONE_NOTEK,
lv_IT_PHONE_PRX TYPE /SCMTMS/CPX_T_ADDR_TELEPHONE,
lv_IV_MOBILE_PHONE TYPE BOOLE_D,
lv_IV_PARENT_KEY TYPE /BOBF/CONF_KEY,
lv_ES_DFLT_PHONE TYPE /BOFU/S_ADDR_TELEPHONEK,
lv_IV_BO_ROOT_KEY TYPE /BOBF/CONF_KEY,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_CMN_HELPER_SERVICE=>MAP_PHONE(
EXPORTING
IT_PHONE_PRX = lv_IT_PHONE_PRX
IV_MOBILE_PHONE = lv_IV_MOBILE_PHONE
IV_PARENT_KEY = lv_IV_PARENT_KEY
IV_BO_ROOT_KEY = lv_IV_BO_ROOT_KEY
IMPORTING
ET_PHONE = lv_ET_PHONE
ET_PHONE_NOTE = lv_ET_PHONE_NOTE
ES_DFLT_PHONE = lv_ES_DFLT_PHONE ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects