Convergence 2007 San Diego

Both the MVP Summit as well as the Convergence are on exactly the same dates. Since I don't have a splitten personality, I'll go to just one of those events. This will be the Convergence! Feel free to contact me to make an appointment.

Join Me at Convergence Connect!

See you in San Diego!



Dutch champion Judo


This is my first post not related to CRM, C# or myself. Instead, this post is about my little sister Iris. We do both practice Judo, there’s just this little difference in the level we do play this. I’m doing it just for recreational purposes and she’s putting all effort in being the best.

And she does a great job! Last week she managed to beat all Dutch competition! Now she’s Dutch Champion for the 2nd time. The first time was back in march 2005. I’m very proud of this achievement and believe me, you’ll see her in the Olympics in just some years!

She has her own webpage on http://www.irislemmen.nl

Well done girl!



Set a lookup to NULL

Quite often I see this question in the newsgroup: How do I set a lookup to a NULL value?

Here is the answer for when you're working in server side code:


Entity.Lookup = new Lookup();
Entity.Lookup.IsNull = true;
Entity.Lookup.IsNullSpecified = true;


this also works for customers:


contact.parentcustomerid = new Customer();
contact.parentcustomerid.IsNull = true;
contact.parentcustomerid.IsNullSpecified = true;


If you're working in a client side javascript, then use this approach:


crmForm.all.lookupschemaname.DataValue = null;


Good luck!



A schema validation error has been detected

More and more MS CRM developers are experiencing this error message:


A schema validation error has been detected at line 21087, position 16.

This error shows up if you want to import a customizations file which has been exported from a system which has the Update Rollup package 1 installed.

There may be multiple reasons for this error to show up, but at least one of them is the existence of one of these lines in your code:

<VisibleToPlatform>0</VisibleToPlatform>
<VisibleToPlatform>1</VisibleToPlatform>

To solve the error message, just remove the line from the code or install the rollup package 1. For information and download of the package go here: http://support.microsoft.com/default.aspx/kb/922815



Callout design issue

Last week I noticed some weird behaviour in MS CRM. For a business requirement I created a callout. The callout would perform some business logic as soon as an appointment gets created. The business logic should only run if the activty gets created by a quick campaign. Don't ask me for the reason, but that was requested.

No problem, I created a pre callout which runs on the appointment's OnCreate event. It checks for the regarding field and if this is a quick campaign, then continue, otherwise stop. Fine, I tested the callout by creating an appointment with the regarding field set to an existing quick campaign. After saving the appointment, it appeared that the callout worked.

Unfortunately the testing people did not agree with that test. They tested the callout as it should be used by creating a quickcampaign which finally creates the appointments. In this case it does not work! After some research I have had contact with the product team and they did confirm this behaviour. The quick campaigns do not use the webservice and therefore it will not fire the OnCreate callout. The way to go is to use the MS CRM 1.2 approach which will work. They have promised to work on this for the Titan release, but no feature is in there for sure until it is in the RTM version. Let's just hope that this does gets fixed.

I have updated the list with possible solutions for a callout which is not working. See the list here: Callout not working



Error while importing via Tools -> Import

Today I got a question regarding importing via the CRM Import tool (Menubar -> Tools -> Import). Only a small number of records would import, all the others would not. Even though the source seemed fine, they did throw this error:


0x80040328: Number of columns does not match the header row


This appears to be related to the source anyway. When you save an file in Excel 2003 as csv, it does the saving correct for the first records. Then after about 15 rows it starts to leave away the last splitter signs if the columns are empty! That does indeed end up in the error as shown above. The solution is to move one of the columns which does have data for all records in there, to the last column. Then again export the file to csv and do the import. You should now be able to import the records as expected.



Multiple Avanade clients win Pinnacle award

The Convergence 2007 Pinnacle Awards recognize, honor, and celebrate customers that have achieved outstanding success with their Microsoft solutions as well as Microsoft partners’ solutions. The three categories are Role Based Customer Awards, Excellence Customer Awards and Industry Leadership Awards.

One of Avanade's clients, Wellmark, has won the Industry Leadership Award for Healthcare. Another client, Haldex, has won the Overall Excellence Award. Especially the Overall Excellence Award is special because it recognizes a customer that demonstrates amazing efforts in multiple Pinnacle Award categories. Customers are not nominated in this category. The Pinnacle Award judging panel will choose the Overall Excellence Award recipient from the nominations received in the other categories.

Congratulations to the Wellmark and Haldex teams as well as to all the other winners of Pinnacle awards: http://www.msconvergence.com/public/pinnacleawards.aspx



Guest star on mscrm team blog

Jim Glass e-mailed me some time ago. This was the content:


Ronald, would you like to be the CRM Team blog guest blogger for February? You can select any work day in February.

Let me know what you think,

JaAG


Obviously Jim is a man of less words, but with these words he did make me a very happy person. I was personally invited to write a blog post for the number 1 blog around MS CRM. And today is the day that my article is published. So go ahead and read the article about the many possibilities of many-to-many relationships in MS Dynamics CRM 3.0!

http://blogs.msdn.com/crm/archive/2007/02/15/many-to-many-relationships-in-ms-dynamics-crm-3-0.aspx



CRM with a SQL Server Named Instance

Today I ran into Kale David's blog. He posted a solution for running CRM on a SQL Server Named instance. The main point is adding a DWORD key to the registery.
Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSCRM\IgnoreChecks
Value: 1

See his blog for the full article.

Thanks Kale!



Territory manager cannot belong to other territory

If you're working with territories by using the SDK, you might get this error message:


0x80043805: Territory manager cannot belong to other territory


This happens if you want to make a specific user manager of two territories. This is possible, but you will have to make sure that the field 'territory' is set to NULL of this user. When you change the manager field of a territory by using the SDK, then the attribute territory of the user is changed as well. If you want to set this user as manager of the second territory, then you'd first need to clear this field.

Once again, I hope this saves you some time!



How to set the parent account via SDK

Last week I've been working on a migration application. One requirement in the application was to set the parent account of child accounts. It could be that a parent account has a parent account itself as well. So in my application I have followed this approach:
- For each account in the source, create an account in CRM 3.0
- For each account in the source, map the parent account to a crm accout and update the account in CRM 3.0

No big deal. This worked for the first thousands of accounts, but then suddenly an error message showed up:


<detail>
<error>
<code>0x80040237</code>
<description>Operation failed due to a SQL integrity violation.</description>
<type>Platform</type>
</error>
</detail>


After a lot of research and discussing with Luis Mazarío we found out in what situation this error occurres. It appeared that in some cases this error was thrown when the account already has subaccounts and I want to set the parent account. After even more research we found out that the source of this error was the code which I used to update the parent account. I was using a code like this:


Lookup lookup = new Lookup();
lookup.type = EntityName.account.ToString();
lookup.Value = gParentId;

account acc = service.Retrieve(EntityName.account.ToString(), gAccountId, new AllColumns());
acc.parentaccountid = lookup;
service.Update(acc);


Although it works most of the times, it is not the right code. This is the correct code:


Lookup lookup = new Lookup();
lookup.Value = id_parent;
lookup.type = EntityName.account.ToString();

account acc = new account();
acc.accountid = new Key();
acc.accountid.Value = id;
acc.parentaccountid = lookup;
service.Update(acc);


We're still digging a bit more on why the error occurred at all, but I hope this helps you!

Ronald



Uploading office 2007 (docx) files to CRM

On the newsgroups I've been talking to some people about uploading Office 2007 files. This appears to be not working as expected. There is a hotfix available for this issue now. Note: this hotfix is not included the rollup 1 package. Look at this page for more information: http://support.microsoft.com/default.aspx/kb/929488