Tag Archives for " MSCRM2011 "

Upcoming Webinar: JavaScripting with Dynamics CRM 2011

JavaScript allows an administrator to enhance the functionality of Dynamics CRM 2011 in order to better fit your business processes. This Lunch and Learn session delivers an introduction to JavaScript development and will cover the following topics: Setting up your development environment Introduction to the form editor Using web resources CRM form events JavaScript basics […]

Continue reading

CRM Migration Assistant 1.3.3 Released

We have released a small update to the CRM Migration Assistant which includes the following updates: Added 0 and 1 as supported Submit Options Fixed issues with converting .AddOption to .addOption method. Conversion alerts were added for the following JavaScript properties: .title .vAlign .contentEditable .innerText Any .style property that is not either display or visible […]

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

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 Changing the Lead Qualification Status Values

The Lead Entity within Microsoft Dynamics CRM 2011 is used to track your relationship with prospective customers. At some point in the relationship, they change from being simply a Lead into either a customer or someone who is no longer a prospect. The Lead Qualification Process Here is how leads are generally worked by a […]

Continue reading
1 2 3 4