Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Microsoft Dynamics CRM as a software development platform?

Tags:

dynamics-crm

My organisation is in the final stages of acquiring CRM 4.0 for use as a general purpose software development platform. The company who is selling it to us has convinced upper management that CRM will solve all our productivity problems and make software development as easy as point and click. (They don't read Brooks.)

Having resigned to the fact that I can't stop CRM from being foisted upon us developers, I have been doing research on how to manage the complexities of large scale CRM development.

I have so far identified the following complexities that need to be addressed:

  1. CRM seems wholly incompatible with basic configuration management practices.
  2. Keeping the black box CRM database in bidirectional synchronisation with external LOB systems is both very hard and critical to project success.

What other complexities must I take into account when building a large scale CRM application?

What limitations does CRM have as a development platform?

Edit: This topic provided additional insight.

like image 376
Ryan Michela Avatar asked Dec 23 '22 10:12

Ryan Michela


2 Answers

I've worked with MS CRM 3.0 and now 4.0 here's my take:

  1. Whenever possible focus on standard best practices. Don't get overly confused by what CRM is doing or wants you to do.

  2. Don't be afraid to break what's "supported" by MS. With some caveats on 2 major factors - will your company let you think outside the box to solve problems and do customizations/integrations that are not officially supported? - and are you comfortable enough with .Net, SQL, javascript etc to weave through their code and implement what you need?

    I have sometimes banged me head 100 times trying to do something in a "supported" fashion when one small tweak to a js file here or a small db modification there gave me what I needed.

  3. If constant data integration with other LOB apps is critical you should consider a 3rd party tool like Scribe (http://www.scribesoft.com/). It's not cheap but can basically get you 90% of the way when it comes to integrating with your other LOB apps.

  4. As a general rule, MS CRM is great at contact management - doing things like tracking appointments, doing mail merges, etc. Could you use it as your core HR system - probably. Finance system - maybe a bit more difficult. The further you go from it's core competency of performing contact management the more custom work you'll have to do. The more custom work you have to do the more you should consider if MS CRM is the right solution to that problem.

like image 77
brendan Avatar answered Dec 31 '22 12:12

brendan


I know you're likely well underway into your deployment of Dynamics CRM, but just a few quick tips:

  • I'd avoid making unsupported changes purely because it becomes too hard to track the changes eventually. Since Dynamics CRM allows developers to make C# Plugins and access to web services, it's usually unnecessary to make unsupported changes for anything non-trivial. Plus you run the roulette of having to hide changes from MS if you have to call their support. I know many people will include external javascript files (jquery, etc) and other somewhat benign changes, but try to mentally stop yourself when an unsupported edit involves anything non-visual.

  • Look into the phrase Microsoft Dynamics Xrm, there are several books on the subject that are excellent, http://www.thecrmbook.com/ is particularly good because it comes with some nice custom code to use with your CRM.

  • Source Control your customizations xml's and don't let people touch the database, also, Google Halan CRM tool, and use it for scripting out CRM customizations and javascript files. Easier than writing custom powershell scripts to do the same job.

like image 33
npeterson Avatar answered Dec 31 '22 13:12

npeterson