Category Archives for "CRM 2011"

Book Release: Dynamics Deep Dive Security

Today I am releasing the first in a series of Deep Dive books related to all things Dynamics CRM: The first book is a dive deep into Dynamics CRM 2011 security where you will discover what really happens behind–the–scenes. We will cover the following topics: Business units Security roles and privileges Users and teams Auditing […]

Continue reading

Sandboxed Plugin Development: HtmlDecode Tidbit

When working with things like Email, it is sometimes necessary to decode a string of text that has been HTML-encoded. This is the process where special characters are replaced with their numerical equivalents to prevent misinterpretation of the HTML text. You use it like this: string xmlPacket = HttpUtility.HtmlDecode(input); This method is found inside of […]

Continue reading

Converting to CRM 2011 JavaScript: Form Elements

One of the most fascinating things I found during the creation of the CRM Migration Assistant is the different methods developers use to access CRM form fields, and other form elements. Normally, people access a form field using the following style of JavaScript: crmForm.all.name This is the normal and perfectly acceptable (and supported) method for […]

Continue reading

2 Debugging Sandboxed Plugins

I learned some interesting things about working with Sandboxed plugins last week that I thought I’d share. Attaching to Processes Sandboxed plugins are run by Microsoft.Crm.Sandbox.WorkerProcess.exe so that is the process that you will need to attach to in order to debug your plugin.  If there are more than one, then attach to all of […]

Continue reading

CRM Online Organization Unique Name

A CRM Organization’s unique name is the name of the organization as it referred to internally. For example, it’s the name of the SQL database. Usually, the organization unique name is simply the Friendly Name with any illegal characters ( spaces, punctuation, etc. ) removed from the name. For sample: CRM Accelerators is my friendly […]

Continue reading

Update Rollup 6 for Microsoft Dynamics CRM 2011 Released

You can download it here. For more information about this release, see Microsoft Knowledge Base article 2600640: Update Rollup 6 is available for Microsoft Dynamics CRM 2011 To maintain parity between the application components of Microsoft Dynamics CRM 2011, this update rollup includes packages for Microsoft Dynamics CRM Server, Microsoft Dynamics CRM for Outlook, Microsoft […]

Continue reading

1 Developer Tip ‘o the Day: Ribbons and Web Resources

You can customize the CRM 2011 Ribbon to add additional functionality via buttons, for example. When you add such a button, you use Web Resources to identify things such as icons and JavaScript functions, like this: $webresource:new_CloneRecord.js $webresource:new_CloneRecord32x32 It important to remember that any Web Resources referenced by the Ribbon exist ( added to CRM […]

Continue reading