Dynamics 365
.
.
.
.
Example procedure part 1: Create a custom solution In this exercise, you’ll create a new solution and add a simple customization to it. This will provide a simple custom solution that you can use to export and and transfer to a new environment later in this topic. If you already have a custom solution to…
Dynamics 365 includes a native SharePoint integration from Microsoft. It is widely used by businesses because it is relatively easy to set up and has a lot of advantages. 1. SharePoint Integration with D365 Follow the steps to get it done smoothly. 2. Open Settings and click on Document Management 3. Click on Enable Server-Based SharePoint Integration 4. Select Online and…
Restore Database Backup Reimport your Org resources 1- https://www.cobalt.net/how-to-back-up-and-restore-a-database-in-a-crm-organization 2- https://learn.microsoft.com/en-us/dynamics365/customerengagement/on-premises/deploy/back-up-the-microsoft-dynamics-365-system?view=op-9-1
FilterExpression filter = new FilterExpression(LogicalOperator.Or); FilterExpression filter1 = new FilterExpression(LogicalOperator.And); filter1.Conditions.Add(new ConditionExpression(“A_LogicalName”, ConditionOperator.Equal, id1)); filter1.Conditions.Add(new ConditionExpression(“B_LogicalName”, ConditionOperator.Equal, id2)); FilterExpression filter2 = new FilterExpression(LogicalOperator.And); filter2.Conditions.Add(new ConditionExpression(“B_LogicalName”, ConditionOperator.Equal, id2)); filter2.Conditions.Add(new ConditionExpression(“C_LogicalName”, ConditionOperator.Equal, id3)); filter.AddFilter(filter1); filter.AddFilter(filter2); query.Criteria = filter; OR
Applying CU 13 updates yields No Internet Connections Available Recently while trying to apply an update one of our AX 2012 R3 environment, I ran across a “No internet available” when running the AxUpdate installer. The internet connection was most certainly available on this server. I verified this by running a browser and pinging outside sources…