Hello,
We use Dynamics 365. Many of our users track emails in Dynamics 365 using the Outlook addin. The little form that displays on the right side of the screen in Outlook.
The issue is, we added a field to the email table (dropdown list of type of interaction) and want user to update this from Outlook using the addin. Is this possible? Searched online but could not find anything.
If above is not possible - or very difficult - how can we unlock emails in Dynamics 365 after they have been tracked? We wouldn't mind having the users go into Dynamics 365 and updating there - but all email activities display 'Read-only This record’s status: Completed'.
Appreciate any assistance you can provide,
Dan
Hi Partner,
Has the problem been solved? Any updates?
Please click Yes under "Did this answer your question?" to close this thread.
Thanks.
Regards,
Leah Ju
Please mark as verified if the answer is helpful. Welcome to join hot discussions in Dynamics 365 Forums.
Thank you Leah!
Hi partner,
You can't edit the field from outlook using the addin, but you can edit it in dynamics 365 through unlocking field.
1.Business Rules(The simplest way).
Create business rules and recommendations | Microsoft Docs
Go Settings > Customizations > Customize the system > Entities > Email > Business Rules to create one as following screenshot:
2.You can also use js code to unlock the field.
(1)js code:
function unlockField(executionContext) { var formContext = executionContext.getFormContext(); // get the form Context formContext.getControl("new_test").setDisabled(false); }
(2)Add js to web resource.
Go Settings > Customizations > Customize the system > Web Resource.
(3)Add the web resource to email form onload function.
Go Settings > Customizations > Customize the system > Entities > Email > Forms to open one form you need and click 'Form Properties'
3.Test.
Then you can find that optionset field(named test) can be changed with any value as your need.
Before:
After:
Regards,
Leah Ju
Please mark as verified if the answer is helpful. Welcome to join hot discussions in Dynamics 365 Forums.
Hi Dan,
The other entities can be only added into the quick create list but cannot be updated.
At the same time, the completed emails cannot be modified.
But there are still other ways to modify it.
Set the condition as Status = Completed.
Unlock the fields you want, then activate it.
After setting these steps, you can update the fields you set in completed emails.
Here is an example to update its content.
This on-demand workflow can be triggered at the location shown below.
If this helped you, I'd appreciate it if you'd mark this as a Verified Answer, which may in turn help others as well.
Best Regards,
Nya
Hello,
We use Dynamics 365. Many of our users track emails in Dynamics 365 using the Outlook addin. The little form that displays on the right side of the screen in Outlook.
The issue is, we added a field to the email table (dropdown list of type of interaction) and want user to update this from Outlook using the addin. Is this possible? Searched online but could not find anything.
If above is not possible - or very difficult - how can we unlock emails in Dynamics 365 after they have been tracked? We wouldn't mind having the users go into Dynamics 365 and updating there - but all email activities display 'Read-only This record’s status: Completed'.
Appreciate any assistance you can provide,
Dan
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 290,522 Super User 2024 Season 2
Martin Dráb 228,441 Most Valuable Professional
nmaenpaa 101,148