cancel
Showing results for 
Search instead for 
Did you mean: 

Email-Links in WebUI shall open new Outlook mail

Former Member
0 Kudos

Hello,

we use CRM WebUI but by now we do not use the groupware integration.

It is by now not an requirement to create emails directly in CRM.

Is there a posibility to open only a new empty Outlook email if the user clicks on a mailadress in CRM WebUI? Like mailto-Links in the WWW -> the email adress shall be copied to the new outlook email.

At the moment a new CRM mail opens if the user has the authorization or nothing happens if he do not have the authorization. This is not our desired behaviour.

Thank you

Best regards

Manfred

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Manfred,

This is what I did.

Implement GET_P_XXXX method

Below is the sample code:

CASE iv_property.

WHEN if_bsp_wd_model_setter_getter~fp_fieldtype.

IF IV_DISPLAY_MODE = abap_true.

rv_value = cl_bsp_dlc_view_descriptor=>field_type_link.

ELSE.

rv_value = cl_bsp_dlc_view_descriptor=>field_type_input.

ENDIF.

WHEN if_bsp_wd_model_setter_getter=>fp_onclick.

  • get the current entity

me->collection_wrapper->find( iv_index = iv_index ).

me->collection_wrapper->get_current( ).

  • Get the Email Address

lv_string = me->GET_E_MAILSMT( attribute_path = 'EMAILADDR ).

CONCATENATE 'mailto:' lv_string INTO lv_string.

rv_value = lv_string

ENDCASE.

Regards,

Paparao Undavali