Filing an Email from Outlook to lead Entity (Communication)

1 minute read time.

Hi All,

Here I am demonstrating a little workaround for filing an email from Outlook to Lead (communication) in CRM using CRM Outlook plugin with the following steps.

First change the Lead Field type in the Administration --> Customisation --> Communication --> Fields --> from integer type to Search Select Advance field and add the correct field values as shown on the screen below.

1. Communication Fields --> Lead (comm_leadid) --> Save the changes.

2. Go to Screens tabs (communication --> Screens), Open the Comm Web picker screen and add Lead Id field (Comm_leadid) and save the screen.

3. Go to Outlook, log off from the CRM Outlook plugin if you are already logged in and log back in again to the CRM Outlook plugin.

Select an email in Outlook --> Inbox --> click on File E-mail option in the CRM Outlook plugin tool bar.

4. Select lead from the Lead Search Select Advance field on the email filing screen.

5. Click on the File E-mail option.

6. Go the Lead --> Communication --> and verify that the email appears under the lead communication tab.

Note: Its highly recommend to first test this functionality on the test environment before doing this on production environment in case the Lead field does not appear on the email filing screen. Try again with Metadata refresh.

Cheers

Awais

Parents
  • Hi Shauna, If you dont see the comm_leadid in the communication fields then you have to make this field as not a system field in the custom_edits table otherwise you wont see this in the fields list as this by default a hidden field.Run this query on the database and you will see that the colp_system=Y ..(Select colp_system, * from custom_edits where colp_colname='comm_leadid') . update this field under the custom_edit table by setting it to null and refresh CRM meta data.(update custom_edits set colp_system=null where colp_colname='comm_leadid') then It will appear on the communication entity field list the under the CRM UI.

Comment
  • Hi Shauna, If you dont see the comm_leadid in the communication fields then you have to make this field as not a system field in the custom_edits table otherwise you wont see this in the fields list as this by default a hidden field.Run this query on the database and you will see that the colp_system=Y ..(Select colp_system, * from custom_edits where colp_colname='comm_leadid') . update this field under the custom_edit table by setting it to null and refresh CRM meta data.(update custom_edits set colp_system=null where colp_colname='comm_leadid') then It will appear on the communication entity field list the under the CRM UI.

Children
No Data