Recently, while accessing a D365 organization on Windows tablet, we were getting the error message "Sorry, something went wrong. Please try again, or restart the app". There was no additional error details given. To get the root cause of the issue, we enabled tracing on the device. Refer this post for enabling tracing. After enabling … Continue reading Sorry, something went wrong. Please try again, or restart the app.
Month: August 2017
Enable tracing for Dynamics 365 on Windows tablets
When we encounter issues while using D365 on tablets, enabling tracing on the device helps us to diagnose the issues. The information recorded can be analyzed to identify the source of the issue. Follow the below mentioned steps to enable tracing on the device: Go to Event Viewer(Run --> Type "eventvwr") Expand Application and Services … Continue reading Enable tracing for Dynamics 365 on Windows tablets
Value can not be null : Error while creating plugin using D365 dev toolkit
Recently, from Visual Studio, after connecting to CRM organization using D365 DEV toolkit, we tried to create a plugin for Contact entity. While creating, we got error message: Value can not be null, Parameter name : path. To fix this issue, we updated the path of D365 plugin registration tool and bin folder as mentioned … Continue reading Value can not be null : Error while creating plugin using D365 dev toolkit
Create Email activity with Zip file attachment Dynamics 365
We had a requirement to create email activity with zip file as attachment. Using other file type e.g. xlsx, docx as attachment are simple. However, using zip file as attachment is a bit different. Here's the code to create email activity with zip file as attachment: Hope it helps.
Load external library in javascript Dynamics 365
Instead of putting the entire code of an external API in a javascript web resource and later referring it to call one of it's method to perform some action, we can also hit the API URL directly and refer it's methods. It can save us from adding one extra web resource for API code only. … Continue reading Load external library in javascript Dynamics 365