by support
28. May 2009 03:41
1816a23a-d24f-432c-b0f3-e80f708b5bec|0|.0
Tags:
Deployment
by support
27. May 2009 12:45
When importing an organization into a CRM with a different base language, this is what is occurring.
Error Details:
Exception of type 'System.Web.HttpUnhandledException' was thrown.
Full Stack:
[NullReferenceException: Object reference not set to an instance of an object.]
at Microsoft.Crm.Query.CrmSqlSelectCommandStrategy.AddPicklistCaseStatement(AttributeMetadata attribute, StringBuilder sqlString, String tableAlias)
at Microsoft.Crm.Query.CrmSqlSelectCommandStrategy.AddOrderByClause(OrderExpression order, AttributeMetadata orderAttribute, String tableAlias)
at Microsoft.Crm.Query.SelectVisitor.Visit(OrderExpression order)
at Microsoft.Crm.Query.OrderExpression.GetSql(ExpressionVisitor visitor)
at Microsoft.Crm.Query.SelectVisitor.Visit(EntityExpression entity)
at Microsoft.Crm.Query.EntityExpression.GetSql(ExpressionVisitor visitor)
at Microsoft.Crm.Query.SelectPlan.GetSql()... ...
Ref:
http://social.microsoft.com/forums/en-US/crm/thread/32dc4284-feea-49bf-85d1-45b3fad7ca8d
42b2b6e1-82ab-4ff9-ae19-124c00846d24|0|.0
Tags:
Installation
by support
27. November 2008 09:52
8d43afad-712f-4732-aa3d-74db7d55e8ca|0|.0
Tags:
Deployment
by support
19. November 2008 10:24
Problem with the Calendar Schedule? With reports? and maybe a another bunch of CRM 3.0 modules?
... the first thing is to check the Framework Version used. CRM 3.0 works almost all with .NET 2.0. But it is not developed for the Framework 2.0. Version 1.1 should be used, and this solve almost all problems.
-f.
7042d7c4-791c-407d-a487-cdbba4412659|0|.0
Tags:
Deployment
by support
29. September 2008 05:25
I found this article that explains how to redeploy an organization including the data to another instance in the enterprise version of CRM.
http://blogs.technet.com/crmbipl/archive/2008/01/14/changing-crm-4-0-organizations-database-name.aspx
-f.
1cdc5fb6-5048-4ea1-aed2-89ff92179497|0|.0
Tags:
Deployment
by support
29. August 2008 10:53
Yes, you understand correctly, even if you are developing in .NET, you must use the appropriate SDK Assemblies. And this was introduced in the latest (to date) SDK version , v.4.0.5.
Here is a brief example on how you must choose the assemblies, by Ross Lotharius
http://rosslotharius.com/archive/2008/08/07/crm-plugins-in-a-64-bit-environment.aspx
If you are not using the right version, this error can occurred
Unhandled Exception: System.BadImageFormatException: Could not load file or asse
mbly 'Microsoft.Crm.SdkTypeProxy, Version=4.0.0.0, Culture=neutral, PublicKeyTok
en=31bf3856ad364e35' or one of its dependencies. An attempt was made to load a p
rogram with an incorrect format.
-f.
ef25af2a-e724-48b5-9f5f-6ac6c2face41|0|.0
Tags:
Development
by support
3. June 2008 07:30
>Crm Exception: Message: Organization With Name = Full Organization Name Does Not Exist, ErrorCode: -2147220969
http://support.microsoft.com/kb/948746
There is an hotfix, but here is a workaround: Change the display name and rename it to the Unique Name.
-f.
77247917-17c0-4fb1-adcd-963cbd4fe2e3|0|.0
Tags:
Development
by support
3. June 2008 06:17
The answer is simple, access rights. The modification resides in calling
IContextService contextService = (IContextService)executionContext.GetService(typeof(IContextService));
IWorkflowContext context = contextService.Context;
ICrmService crmService = context.CreateCrmService(false);
not
IContextService contextService = (IContextService)executionContext.GetService(typeof(IContextService));
IWorkflowContext context = contextService.Context;
ICrmService crmService = context.CreateCrmService(true);
Because the administrative web services cannot issue tracking token... ! and you receive this error in the logs...
---> System.InvalidCastException: Specified cast is not valid.
at Microsoft.Crm.ObjectModel.TrackingManager.GetNextTrackingToken(String subject, String& trackingToken)
at Microsoft.Crm.ObjectModel.EmailService.Send(Guid emailId, Boolean issueSend, String trackingToken, ExecutionContext context)
-f.
be158cdf-9ee6-46df-acaf-edc89db7f49d|0|.0
Tags:
Development
by support
2. June 2008 06:20
When installing the Email router without having exchange installed there is a link that point to the Microsoft Exchange Server MAPI Client and Collaboration Data Objects 1.2.1 download, and it is no longer working.
To fix this issue you can install the Collaboration Data Objects, version 1.2.1 but this requires to have
I have make it available, you can download it from my files (registration required to avoid hot linking).
-f.
99374930-ffc4-4da6-ad48-2fda06a2ec9e|0|.0
Tags:
Installation
by support
23. April 2008 06:37
When importing Customization under CRM 4.0, you may accounter a freeze of the interface. The problem is when the customization file is greater than the configured maximum request length of 8 megs in the web.config of the CRM 4.0 Server.
You just have to change the web.config by modifying the line
<httpRuntime executionTimeout="300" maxRequestLength="8192"/>
with
<httpRuntime executionTimeout="300" maxRequestLength="16384"/>
And everything should be fine.
-f.