Today, I was faced with a really weird issue with a Report developed for CRM Online. The Report worked fine both at BIDS and my test On-Premise instance, but once I’ve tried to upload it to the productive instance I got following error: I’ve downloaded the description file, but the error log didn’t contain any …
Tag: Troubleshooting
Actions, input parameters and “Object reference not set to an instance of an object” exception
While playing with Actions, I wrote a simple .Net code that invoked the execution of an Action:
1 2 3 4 5 6 7 8 |
slick_CustomActionsTestRequest request = new slick_CustomActionsTestRequest() { BoolInArgument = true, DateTimeInArgument = DateTime.Now, DecimalInArgument = decimal.Zero }; slick_CustomActionsTestResponse response = service.Execute(request) as slick_CustomActionsTestResponse; |
During testing, I got a really weird and unclear error – “Object reference not set to an instance of an object.”:
Microsoft Dynamics CRM 2011: Error after applying Update Rollup 12/13
I haven’t updated my VM to latest updates for a long time and I decided to do that today. After Rollup was installed, I saw message that said Rollup was not applied to one or several organizations. I ignored that message and tried to log into CRM. I got following error:
MS CRM 2011: Sql Timeouts during access to views
Yesterday we have deployed solution on productive system and imported data – about 40 millions of records in different entities. During testing “Generic Sql Exception” messages begun appear for some types of records.
MS CRM 2011: Strange error during sending of an email from plugin
I had scenario when my plugin based on some condition had to send an email. I developed plugin, deployed it to server and during the testing I have got quite strange error:
MS CRM 2011: Error during creation of Account record – System.Data.SqlClient.SqlException (0x80131904): Cannot insert duplicate key row in object ‘dbo.EmailSearchBase’ with unique index ‘ndx_for_forward_update’
Today I have got this issue during creation of account. I have googled and found the same issue at CRM Development forum.