<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-20700981</id><updated>2011-04-21T21:20:10.003+02:00</updated><title type='text'>Microsoft Dynamics CRM</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://robbakkers.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://robbakkers.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Rob Bakkers</name><uri>http://www.blogger.com/profile/14309849884072825330</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-20700981.post-115555795510725415</id><published>2006-08-14T14:01:00.000+02:00</published><updated>2006-09-29T13:52:42.153+02:00</updated><title type='text'>Viewing linked entities in information tab</title><content type='html'>A lot of clients want to view the most important data inside of the first page that pop-ups in a new page.&lt;br /&gt;&lt;br /&gt;For example they want to see all the contacts that are involved in a project. Normally they would have to open the project entity and click on the project members on the left side. Well with an Iframe and some javascript you can do this in a different way.&lt;br /&gt;&lt;br /&gt;The code which is put in the OnLoad event of a form:&lt;br /&gt;-----&lt;br /&gt;var sArea = "[entity1]_[entity2]s";&lt;br /&gt;var sBaseUrl = "http://servername/userdefined/areas.aspx?";&lt;br /&gt;&lt;br /&gt;html = sBaseUrl;&lt;br /&gt;html += "oId=" + crmFormSubmit.crmFormSubmitId.value;&lt;br /&gt;html += "&amp;oType=" + crmFormSubmit.crmFormSubmitObjectType.value;&lt;br /&gt;html += "&amp;security=" + crmFormSubmit.crmFormSubmitSecurity.value;&lt;br /&gt;html += "&amp;tabSet=" + sArea;&lt;br /&gt;document.all.IFrame_Test.src = html;&lt;br /&gt;-----&lt;br /&gt;&lt;br /&gt;the sBaseUrl depends if the relationship is customentity to customentity (http://servername/userdefined/areas.aspx?) or entity to customentity (http://servername/areas.aspx?).&lt;br /&gt;&lt;br /&gt;The sArea name is a combination of the two linked entites. Entity1 is the entity of the form and the second one is the linked entity (don't forget the 's' at the end). If we for example have two entities of which the schema name is new_test1 and a second entity new_test2 the sArea would be: "new_test1_new_test2s".&lt;br /&gt;&lt;br /&gt;The result of this is:&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/6704/2084/1600/example_1.0.png"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/6704/2084/400/example_1.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20700981-115555795510725415?l=robbakkers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://robbakkers.blogspot.com/feeds/115555795510725415/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20700981&amp;postID=115555795510725415' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/115555795510725415'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/115555795510725415'/><link rel='alternate' type='text/html' href='http://robbakkers.blogspot.com/2006/08/viewing-linked-entities-in-information.html' title='Viewing linked entities in information tab'/><author><name>Rob Bakkers</name><uri>http://www.blogger.com/profile/14309849884072825330</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20700981.post-114226547247361125</id><published>2006-03-13T16:54:00.000+01:00</published><updated>2006-03-13T16:57:52.486+01:00</updated><title type='text'>Data validation using regular expressions</title><content type='html'>Client side data validation can be a very powerfull tool within CRM 3.0. The new CRM gives more options to add javascript out-of-the-box.&lt;br /&gt;&lt;br /&gt;The following sample uses a regular expression to check if a field contains a valid dutch postal code. We check it when changing a field and also on the OnSave event of a form.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Onchange:&lt;/b&gt;&lt;br /&gt;var oField = event.srcElement;&lt;br /&gt;&lt;br /&gt;if (typeof(oField) != "undefined" &amp;&amp; oField != null)&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;if(oField.DataValue != "" &amp;&amp; oField.DataValue != null)&lt;br /&gt;{&lt;br /&gt;var reg = /^\d{4} ?[a-z]{2}$/i;&lt;br /&gt;&lt;br /&gt;if (!reg.test(oField.DataValue))&lt;br /&gt;{&lt;br /&gt;alert(“Invalid postal code”);&lt;br /&gt;oField.SetFocus();&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Onsave (change field name):&lt;/b&gt;&lt;br /&gt;var oField = crmForm.all.address1_postalcode;&lt;br /&gt;&lt;br /&gt;if (typeof(oField) != "undefined" &amp;&amp; oField != null)&lt;br /&gt;{&lt;br /&gt;var reg = /^\d{4} ?[a-z]{2}$/i;&lt;br /&gt;&lt;br /&gt;if (!reg.test(oField.DataValue))&lt;br /&gt;{&lt;br /&gt;      alert("Fill in a correct postal code");&lt;br /&gt;&lt;br /&gt;      oField.SetFocus();&lt;br /&gt;&lt;br /&gt;      event.returnValue = false;&lt;br /&gt;      return false;&lt;br /&gt;}&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20700981-114226547247361125?l=robbakkers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://robbakkers.blogspot.com/feeds/114226547247361125/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20700981&amp;postID=114226547247361125' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/114226547247361125'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/114226547247361125'/><link rel='alternate' type='text/html' href='http://robbakkers.blogspot.com/2006/03/data-validation-using-regular.html' title='Data validation using regular expressions'/><author><name>Rob Bakkers</name><uri>http://www.blogger.com/profile/14309849884072825330</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20700981.post-114226510169381634</id><published>2006-03-13T16:47:00.000+01:00</published><updated>2006-03-13T16:51:41.710+01:00</updated><title type='text'>Update header information</title><content type='html'>Sometimes it can be usefull to have some more information in the header of an entity. When switching to an activity history overview, sometimes seeing the account name is just not enough. This can be fixed with some very easy javascript.&lt;br /&gt;&lt;br /&gt;In the code we first loop through the td elements to find a td element which has a class of formTitle assigned to it. This td contains the header text. We just add any field we want to it.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;javascript:&lt;/b&gt;&lt;br /&gt;var doc = document.getElementsByTagName('td');&lt;br /&gt;for (var i = 0; i &lt; doc.length; i++)&lt;br /&gt;{&lt;br /&gt;   &lt;br /&gt; if(doc[i].className == "formTitle")&lt;br /&gt; {&lt;br /&gt;  var header = doc[i].innerText;&lt;br /&gt; &lt;br /&gt;  //address1_line1&lt;br /&gt;  if (typeof(crmForm.all.address1_line1) != "undefined" &amp;&amp; crmForm.all.address1_line1 != null)&lt;br /&gt;  {&lt;br /&gt;   if(crmForm.all.address1_line1.DataValue != "" &amp;&amp; crmForm.all.address1_line1.DataValue != null)&lt;br /&gt;   {&lt;br /&gt;         header = header + " | " + crmForm.all.address1_line1.DataValue;&lt;br /&gt;   }&lt;br /&gt;  }&lt;br /&gt;  &lt;br /&gt;  doc[i].innerText = header;&lt;br /&gt; }&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20700981-114226510169381634?l=robbakkers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://robbakkers.blogspot.com/feeds/114226510169381634/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20700981&amp;postID=114226510169381634' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/114226510169381634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/114226510169381634'/><link rel='alternate' type='text/html' href='http://robbakkers.blogspot.com/2006/03/update-header-information.html' title='Update header information'/><author><name>Rob Bakkers</name><uri>http://www.blogger.com/profile/14309849884072825330</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20700981.post-113983936647955600</id><published>2006-02-13T14:59:00.000+01:00</published><updated>2006-02-13T15:02:46.500+01:00</updated><title type='text'>Workflow/Import troubles</title><content type='html'>With some installations the Import and workflow will not be working as well as we would want to. Imports keep pending instead of being imported or workflow rules not being triggered.&lt;br /&gt;&lt;br /&gt;Try to set the account for the Microsoft CRM Workflow Service to Local System or NT Authority.&lt;br /&gt;&lt;br /&gt;Also try to create the workflow rules with another user than the special account which installed the CRM Server.&lt;br /&gt;&lt;br /&gt;These changes might help with the import and workflow problems.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20700981-113983936647955600?l=robbakkers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://robbakkers.blogspot.com/feeds/113983936647955600/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20700981&amp;postID=113983936647955600' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/113983936647955600'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/113983936647955600'/><link rel='alternate' type='text/html' href='http://robbakkers.blogspot.com/2006/02/workflowimport-troubles.html' title='Workflow/Import troubles'/><author><name>Rob Bakkers</name><uri>http://www.blogger.com/profile/14309849884072825330</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20700981.post-113869987028321895</id><published>2006-01-31T10:28:00.000+01:00</published><updated>2006-01-31T10:31:10.283+01:00</updated><title type='text'>CRM 3.0 Sample Data tool</title><content type='html'>When importing the Sample data for CRM 3.0 using the tool, you need to take in account that the number of users returned from AD has a maximim of 1000. I had some contact with the people from Microsoft and it seems this is by design to minimize the load on the AD.&lt;br /&gt;&lt;br /&gt;So if you want to use the Sample Data tool for CRM 3.0 and want to do so on an environment with more than 1000 users in Active Directory, make sure you create an account with has less permissions. Give the account permissions to a specific OU where the users are stored. This way you should get the users you want.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20700981-113869987028321895?l=robbakkers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://robbakkers.blogspot.com/feeds/113869987028321895/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20700981&amp;postID=113869987028321895' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/113869987028321895'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/113869987028321895'/><link rel='alternate' type='text/html' href='http://robbakkers.blogspot.com/2006/01/crm-30-sample-data-tool.html' title='CRM 3.0 Sample Data tool'/><author><name>Rob Bakkers</name><uri>http://www.blogger.com/profile/14309849884072825330</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20700981.post-113835789775993501</id><published>2006-01-27T11:28:00.000+01:00</published><updated>2006-01-31T10:27:43.066+01:00</updated><title type='text'>Settings disappearing in CRM 3.0</title><content type='html'>Today I was running into some troubles with the CRM 3.0 webapplication not showing the Settings section. When I manually opened the pages for editing, exporing, etc error messages would be shown. I was working on a Virtual PC which had crashed the day before.&lt;br /&gt;&lt;br /&gt;The problem seemed to occur when the Virtual PC crashed and the Outlook Client was running. The CRM application checks if someone is using the Outlook Client and if so, the settings area won't be available.&lt;br /&gt;&lt;br /&gt;So starting Outlook and closing it again solved this problem.....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20700981-113835789775993501?l=robbakkers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://robbakkers.blogspot.com/feeds/113835789775993501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20700981&amp;postID=113835789775993501' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/113835789775993501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/113835789775993501'/><link rel='alternate' type='text/html' href='http://robbakkers.blogspot.com/2006/01/settings-disappearing-in-crm-30.html' title='Settings disappearing in CRM 3.0'/><author><name>Rob Bakkers</name><uri>http://www.blogger.com/profile/14309849884072825330</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-20700981.post-113675038139890948</id><published>2006-01-08T20:57:00.000+01:00</published><updated>2006-01-08T20:59:41.406+01:00</updated><title type='text'>First Blog</title><content type='html'>Last week I was rewarded as a Microsoft Dynamics CRM MVP. Because of this award I decided to start my own blog and try to help the community even further.&lt;br /&gt;&lt;br /&gt;The main goal of my blog is not to post news on Dynamics CRM but to provide know-how on developing for the CRM product.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/20700981-113675038139890948?l=robbakkers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://robbakkers.blogspot.com/feeds/113675038139890948/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=20700981&amp;postID=113675038139890948' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/113675038139890948'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/20700981/posts/default/113675038139890948'/><link rel='alternate' type='text/html' href='http://robbakkers.blogspot.com/2006/01/first-blog.html' title='First Blog'/><author><name>Rob Bakkers</name><uri>http://www.blogger.com/profile/14309849884072825330</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
