Robs MS CRM Blog
Tips, tricks and thoughts related to Microsoft CRM.
Friday, May 27, 2011
Thursday, August 26, 2010
User Creation
The Error:
AddPrincipalToGroupByName should never be called when AutoGroupManagement is turned off.
The Solution
Just switch the registry entry HKLMMicrosoftMSCRMAutoGroupManagement from 0 to 1
Gleaned from: http://mrhodes.net/?s=AutoGroupManagement
AddPrincipalToGroupByName should never be called when AutoGroupManagement is turned off.
The Solution
Just switch the registry entry HKLMMicrosoftMSCRMAutoGroupManagement from 0 to 1
Gleaned from: http://mrhodes.net/?s=AutoGroupManagement
Monday, August 16, 2010
Using Regular Expressions
I had to re-learn (again) reg Exp so thought I would write it down :-)
The idea here is to search for a bit of text in antother:
The /gi option means global and case insensitive
var pattern = //gi
var match = stringToSearch.search( pattern )
If match > -1 a match has been found.
for example:
var stringToSearch = "Is Rob here"
var pattern = /rob/gi
var match = stringToSearch( pattern );
This "should" return 3.
The idea here is to search for a bit of text in antother:
The /gi option means global and case insensitive
var pattern = /
var match = stringToSearch.search( pattern )
If match > -1 a match has been found.
for example:
var stringToSearch = "Is Rob here"
var pattern = /rob/gi
var match = stringToSearch( pattern );
This "should" return 3.
Wednesday, June 23, 2010
Cloning-Entities using Javascript - great posting
http://mscrm4ever.blogspot.com/2008/06/cloning-entity-using-javascript.html
Tuesday, June 15, 2010
Internet Facing deployment config
http://rc.crm.dynamics.com/rc/regcont/en_us/op/articles/ifd_common_issues.aspx
Monday, January 11, 2010
Duplicate Detection Rules
A Short MS Video on creating duplicate detection rules
http://rc.crm.dynamics.com/rc/regcont/en_us/op/articles/vid_duplicatedetect.aspx?WTT.rss_f=CRMRC_OP
http://rc.crm.dynamics.com/rc/regcont/en_us/op/articles/vid_duplicatedetect.aspx?WTT.rss_f=CRMRC_OP
Network Ports Used By CRM
This article lists the network ports used by CRM
http://rc.crm.dynamics.com/rc/regcont/en_us/op/articles/crmports.aspx?WTT.rss_f=CRMRC_OP
http://rc.crm.dynamics.com/rc/regcont/en_us/op/articles/crmports.aspx?WTT.rss_f=CRMRC_OP
Personalising CRM
A brief MS video on how to personalise CRM
http://rc.crm.dynamics.com/rc/regcont/en_us/op/articles/vid_personalize.aspx?WTT.rss_f=CRMRC_OP
http://rc.crm.dynamics.com/rc/regcont/en_us/op/articles/vid_personalize.aspx?WTT.rss_f=CRMRC_OP
Subscribe to:
Posts (Atom)