Click on the image for more details.
I have seen a few blogs on how to connect to dynamics crm but most of them talks about connect with Odata endpoint. However with dynamics 365, Odata has been deprecated hence you cannot use them and will get error.
Below is the step by step process to connect to dynamics crm 365 online from Excel.
View original post 58 more words
For past few weeks I have been thinking to add my bit to XrmToolBox, the most loved tool by me and the entire Dynamics 365 Community.
Here is my first plugin “User Security Manager”. Which I developed along with Nishant Rana.
This tool will help in efficiently managing User’s security in Microsoft Dynamics 365 Customer Engagement. Below is the list of features it has
View original post 43 more words
Found an interesting article on Dynamics 365 Workflow vs. Microsoft Flow differences. Have a look at it.
Use the below syntax to lock or unlock the business process flow fields in a crm record using javascript,
Lock:
Xrm.Page.getControl(“header_process_FieldSchemaName”).setDisabled(true);
UnLock:
Xrm.Page.getControl(“header_process_FieldSchemaName”).setDisabled(false);