CRM

Introducing Microsoft Dynamics CRM 2011

articolo

CRM SDK V4.0.6

link

Crm Book

http://www.thecrmbook.com

[Crm] Microsoft Dynamics CRM 4.0 Logical Database Diagrams

www.microsoft.com/downloads/details.aspx

[Crm] CRM 4.0 : Come creare via codice un account

A differenze del precedente Crm 3.0 , essendo quest'ultimo, multi società, ogni volta che ci collega al servizio del Crm è necessario passargli oltre alle solite credenziali anche un token con il riferimento alla societa (Organization)                 CrmAuthenticationToken token = new CrmAuthenticationToken();             token.AuthenticationType = 0; // Use Active Directory authentication.             token.OrganizationName = "AdventureWorksCycle";             // Use the global user ID of the system user that is to be impersonated.             token.CallerId = new Guid("94092D6F-B367-DC11-9C93-0003FFDFCE28");             CrmService crmService = new CrmService();             crmService.Url = "http://localhost/MSCRMServices/2007/CrmService.asmx";             crmService.CrmAuthenticationTokenValue = token;             crmService.Credentials = System.Net.CredentialCache.DefaultCredentials;             // Create a new account owned by the impersonated user.             account account...

[CRM] Microsoft Dynamics CRM 4.0 SDK

http://www.microsoft.com/downloads/details.aspx?FamilyId=82E632A7-FAF9-41E0-8EC1-A2662AAE9DFB&displaylang=en

[Crm] Splendidcrm

crm opensource scritto in c# (net 2.0 ) www.splendidcrm.com

[CRM] Working with Microsoft Dynamics

per chi lavora (purtroppo) con il CRM di Microft in attesa dell'uscita della versione 4.0 (Titan speriamo non Titanic) ègià uscito un manuale in proposito: www.amazon.com/Working-Microsoft-Dynamics-CRM-4-0/dp/0735623783/

[CRM] Prefiltrare il risultato di un campo Lookup

Attraverso javascript è possibile associare ad un campo lookup un filtro.Esempio in una form di un'entità, abbiamo un campo hotel di tipo lookup (new_hotel) e un campo città (new_cityid), per far si che la lookup dell'hotel sia filtrato per la città occorre: (la città deve essere un'entità referenziata all'entità hotel ) crmForm.all.new_hotelid.lookupbrowse = 1; crmForm.all.new_hotelid.additionalparams = "fetchXml=<fetch mapping='logical'><entity name='new_hotel'><all-attributes/><filter type='and'><condition attribute='new_cityid' operator='eq' value='" +crmForm.all.new_cityid.DataValue[0].id+"' /></filter></entity></fetch>";< /FONT>

[CRM] Share di un systemuser/team ad un account

CrmService service = new CrmService(); service.Credentials = ......passare credenziali di amministratore SecurityPrincipal principal = new SecurityPrincipal(); principal.Type = principalType; principal.PrincipalId = entityId; //guid del team o systemuser PrincipalAccess principalAccess = new PrincipalAccess(); principalAccess.Principal = principal; principalAccess.AccessMask = AccessRights.ReadAccess | AccessRights.WriteAccess; //tipi di accesso TargetOwnedAccount target = new TargetOwnedAccount(); target.EntityId = accountId; ModifyAccessRequest request = new ModifyAccessRequest(); request.PrincipalAccess = principalAccess; request.Target = target; service.Execute(request);

Full CRM Archive

«luglio»
domlunmarmergiovensab
30123456
78910111213
14151617181920
21222324252627
28293031123
45678910