The records were not updated because the following Microsoft Dynamics CRM fields were not found during Import in CRM 2015.


Hi,
Was getting the below error while trying to import few records

The reason being there were two field in the entity having same Display Name. Renaming one of the fields fixed the issue and import ran successfully.

Hope it helps ..

Add Find Columns to Lookup View in CRM.


Hi,

Recently we had a requirement to search based on a particular attribute within the lookup view. The initial thought was to add a Find Columns to the lookup view. But then realized we do not have option of adding Find Columns to the lookup view.

The next thought was if I add that particular field to the list of Find Columns in Quick Find view will it work in Lookup View also? And it worked, basically adding any fields in the Find Column will make it Searchable.

The search works properly in the Lookup View as well as Lookup Inline View.

Hope it helps..

Sample Fetch XML Report using Multivalued Parameter (in Operator) in CRM


Hi,

Sharing a sample report which shows the usage of Multi Value parameter in filter.

Replace the Condition generated in the Fetch xml query using Advanced Find

As following

Create another DataSet to provide value for @gendercodevalue parameter.

Set @gendercodevalue parameter as following ( internal – if we do not want user to select or specify value for it in report)

Preview:

Hope it helps..

Advertisements

Missing New button in Quote Line entity for creating new views in CRM 2015.


Hi,

We found the New button was missing in Quote Line when we tried to creating the new views.

The work around is to use “Save As” and crate new view.

Hope it helps..

Fixed: Not able to add Existing Product and Write-in Product columns in Quote Product view in CRM 2015.


Hi,

We faced this issue where we were not able to add the Existing Product and Write In Product in View in Quote Line opportunity.

After raising the product support ticket, we followed the below steps to fix it

  • Created a small unmanaged solution
  • Added the impacted entity to the solution
  • We didn’t include any other components except the affected entity
  • Exported the solution
  • Extracted the zip file
  • Edited the customizations.xml file to show the required two columns: Existing Product and Write-in Product
  • Zipped the files again
  • Uploaded the unmanaged solution to the affected CRM Online environment
  • Published all customizations
  • Checked the outcome: the view was now displaying the required columns

Hope it helps..

Fixed – “The server is busy and the request was not completed. Try again later” or “usersettings with Id = ‘’ does not exist” in Plugin in CRM 2013\2015.


Hi,

Our plugin was failing repeatedly with the below error message.

After some analysis we realized that it was because of using ExecuteMultipleRequest in the plugin and as we had multiple ExecuteMultipleRequest running at the same time. And as mentioned in the MSDN

https://msdn.microsoft.com/en-in/library/jj863631.aspx

We refactored the code to execute one request at a time and it fixed the issue.

Hope it helps..