9. May 2011 15:42
To import an organization in Microsoft CRM 2011, you can use the deploymentservice by using the BeginImportOrganizationRequest. See the code sample below
BeginImportOrganizationRequest request = new BeginImportOrganizationRequest();
request.DatabaseName = "DATABASE_MSCRM"; //Name of the database...
[More]
5. April 2011 09:55
The content of the sitemap can be changes by exporting and importing the sitemap. It also can be changes by using the CRM 2011 Webservice.
Step 1: Retrieve the sitemap
QueryExpression query = new QueryExpression();
query.EntityName = "sitemap";
query.ColumnSet = new Microsoft.Xrm.Sdk.Que...
[More]
1. April 2011 10:31
After using Solutions in CRM 2011 for a while now, there are a couple of tips how to use Managed and Unmanaged solutions in CRM 2011. If you are new in solutions in CRM 2011, look at this intro video
Tip 1: Understand the basic difference between managed and unmanaged solutions
In this video ...
[More]
bc73d6ee-4ea8-425e-b679-06153b9fe007|6|4.7
Tags:
31. March 2011 15:02
With the c# code below you can disable or enable an organisation in Microsoft CRM 2011 by using the Deployment Service:
EntityInstanceId i = new EntityInstanceId();
i.Id = OrganisationId; //Organisation Id
DeploymentService.Organization organization = (DeploymentServi...
[More]
29. March 2011 12:25
In Microsoft Dynamics CRM 2011 you can get the last login time of a CRM user by using the below query:
SELECT
AuthInfo, O.FriendlyName, SUO.LastAccessTime
FROM
SystemUserOrganizations SUO
LEFT JOI...
[More]
460014f3-ebb9-4a8b-90f2-7869921b99ff|0|.0
Tags:
14. October 2010 05:39
In this post I'll point out a few small changes that you'll love in CRM 2011:
Sorting can now be done on two columns
Maximum length ntext fields now 100,000 characters
Sorting on two columns
CRM 2011 can sort on two columns instead of only one. Still not much, but twice as good as in CRM 4.0...
[More]
a4e57edb-bc2a-439f-8f38-3cd700e87bf2|1|5.0
Tags:
12. October 2010 18:42
A new feature in CRM 2011 is the possibility of creating connections. Connections are a free form of relationships between records that can be used to connect any type of record to any other type of record. In this sense, connections are a bit like the customer relations in CRM 4.0, except that cust...
[More]
4e182790-97ea-4090-b79a-7b70f89f8e76|4|4.8
Tags:
12. October 2010 03:20
When you create a new quote based on an Opportunity (or an Order based on a Quote, or an Invoice based on an Order) not only is there a mapping of fields of the Opportunity itself but also of the fields of the Opportunity Products.
If add fields to the opportunitydetail, quotedetail, salesorderdeta...
[More]
44940372-1cb3-42c5-93c1-a47dbc1e3141|2|4.5
Tags:
11. October 2010 05:17
Picklists are a frequently used data type in Microsoft CRM, mostly to categorize data. A 'leaves to be desired' in CRM 4.0 was that these picklists had to be defined per field. This meant that when you had categories that were used in multiple data types, you had to manually make sure that all texts...
[More]
f805fa3a-19ed-4290-9a1a-9b359d8f7edf|2|3.5
Tags:
8. October 2010 16:44
One of the lesser known features in CRM 4.0 was the ability to 'save' an 'advanced find', thus creating a 'personal view'. Every end-user I explained this to was very enthusiastic about this but I'm very sure very little end-users found this feature by themselves. In Microsoft CRM 2011 this function...
[More]
9b8eb3a4-3b37-4717-beb0-52da93447c59|1|5.0
Tags: