SAP ISA_CONTACT_PERSON_FROM_EMAIL Function Module for NOTRANSL: ISA R/3: Ermitteln des Ansprechpartners aus E-Mail-Adresse
ISA_CONTACT_PERSON_FROM_EMAIL is a standard isa contact person from email SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: ISA R/3: Ermitteln des Ansprechpartners aus E-Mail-Adresse processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for isa contact person from email FM, simply by entering the name ISA_CONTACT_PERSON_FROM_EMAIL into the relevant SAP transaction such as SE37 or SE38.
Function Group: ISA_UM_40B
Program Name: SAPLISA_UM_40B
Main Program: SAPLISA_UM_40B
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function ISA_CONTACT_PERSON_FROM_EMAIL pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'ISA_CONTACT_PERSON_FROM_EMAIL'"NOTRANSL: ISA R/3: Ermitteln des Ansprechpartners aus E-Mail-Adresse.
EXPORTING
COMM_TYPE = "Communication Method (Key) (Business Address Services)
SEARCH_STRING = "SAPoffice: external address (variable)
* CASE_SENSITIVE_SMTP = 'X' "Checkbox
* USE_WILDCARDS = ' ' "Checkbox
IMPORTING
RETURN = "Return Parameter
TABLES
COMM_KEYS = "Result table structure of FB ADDR_COMM_FIND_KEY
IMPORTING Parameters details for ISA_CONTACT_PERSON_FROM_EMAIL
COMM_TYPE - Communication Method (Key) (Business Address Services)
Data type: ADRC-DEFLT_COMMOptional: No
Call by Reference: No ( called with pass by value option)
SEARCH_STRING - SAPoffice: external address (variable)
Data type: SOXEA-ADDRESSOptional: No
Call by Reference: No ( called with pass by value option)
CASE_SENSITIVE_SMTP - Checkbox
Data type: SZAD_FIELD-FLAGDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
USE_WILDCARDS - Checkbox
Data type: SZAD_FIELD-FLAGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISA_CONTACT_PERSON_FROM_EMAIL
RETURN - Return Parameter
Data type: BAPIRETURNOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISA_CONTACT_PERSON_FROM_EMAIL
COMM_KEYS - Result table structure of FB ADDR_COMM_FIND_KEY
Data type: ADCOMKEYOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISA_CONTACT_PERSON_FROM_EMAIL Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_return | TYPE BAPIRETURN, " | |||
| lt_comm_keys | TYPE STANDARD TABLE OF ADCOMKEY, " | |||
| lv_comm_type | TYPE ADRC-DEFLT_COMM, " | |||
| lv_search_string | TYPE SOXEA-ADDRESS, " | |||
| lv_case_sensitive_smtp | TYPE SZAD_FIELD-FLAG, " 'X' | |||
| lv_use_wildcards | TYPE SZAD_FIELD-FLAG. " SPACE |
|   CALL FUNCTION 'ISA_CONTACT_PERSON_FROM_EMAIL' "NOTRANSL: ISA R/3: Ermitteln des Ansprechpartners aus E-Mail-Adresse |
| EXPORTING | ||
| COMM_TYPE | = lv_comm_type | |
| SEARCH_STRING | = lv_search_string | |
| CASE_SENSITIVE_SMTP | = lv_case_sensitive_smtp | |
| USE_WILDCARDS | = lv_use_wildcards | |
| IMPORTING | ||
| RETURN | = lv_return | |
| TABLES | ||
| COMM_KEYS | = lt_comm_keys | |
| . " ISA_CONTACT_PERSON_FROM_EMAIL | ||
ABAP code using 7.40 inline data declarations to call FM ISA_CONTACT_PERSON_FROM_EMAIL
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single DEFLT_COMM FROM ADRC INTO @DATA(ld_comm_type). | ||||
| "SELECT single ADDRESS FROM SOXEA INTO @DATA(ld_search_string). | ||||
| "SELECT single FLAG FROM SZAD_FIELD INTO @DATA(ld_case_sensitive_smtp). | ||||
| DATA(ld_case_sensitive_smtp) | = 'X'. | |||
| "SELECT single FLAG FROM SZAD_FIELD INTO @DATA(ld_use_wildcards). | ||||
| DATA(ld_use_wildcards) | = ' '. | |||
Search for further information about these or an SAP related objects