Sep 202011
 

Another HTML control example that adds a star rating form control to CRM 2011 as a web-resource. It includes a managed solution that you can download and install as well as the source and all images used in creating the solution.

Click to continue reading
Click Here To View Post With Syntax Highlighting

Jul 082010
 

The CRM Workflow Manipulation Library is now on CodePlex. The CRM Workflow Manipulation Library for CRM is a set of custom workflows for OnPremise Microsoft Dynamics® CRM to solve equations, manipulates strings, perform regex (regular expression) formatting and matching, as well as SoundEx and Metaphone-Like codification.

Click to continue reading
Click Here To View Post With Syntax Highlighting

May 202010
 

Bing Maps are great. You can geocode and correct your addresses. While this isn’t anything complicated, it is a good example of a custom workflow that uses an external webservice.

Click to continue reading
Click Here To View Post With Syntax Highlighting

Feb 102009
 

Paging Limits control how many items show up on the list pages in crm. Most notably advanced finds. I like to be able to display a lot of information, and I need to be able to run operations on more than 250 items. Using the following SQL query I was able to increase my paging limit to 1000.

UPDATE UserSettings SET PagingLimit=1000 WHERE SystemUserId IN
(Select SystemUserId from SystemUserBase WHERE FullName like 'Carlton%')

Click Here To View Post With Syntax Highlighting

Feb 042009
 

The CRM 4 System Administrators group does not have access to assign other people’s saved advanced finds (user queries). I have created a single aspx page that uses the CRM SDK to allow a system administrator to assign any user’s saved view to another user.

Click to continue reading
Click Here To View Post With Syntax Highlighting