Monthly Archives: March 2013

How to retrieve dynamic marketing list member in Dynamics CRM 2011

To retrieve dynamic marketing list member in Dynamics CRM 2011 follow below steps: Pass list Guid as string and it will return dynamic marketing list member private EntityCollection RetrieveDynamicMemberList(IOrganizationService service, string strList) { ColumnSet cols = new ColumnSet(new string[] { … Continue reading

Posted in MS CRM 2011 | Tagged , | Leave a comment

How to retrieve static marketing list member in Dynamics CRM 2011

To retrieve static marketing list member in Dynamics CRM 2011 follow below steps: Use Link Entities to get relationship entity details Passing list Guid as object and it will return static marketing list member private EntityCollection RetrieveMarketingListMembers(IOrganizationService service, object strList) … Continue reading

Posted in MS CRM 2011 | Tagged , | 2 Comments

How to debug offline plugin in Dynamics CRM 2011 for Outlook Offline

Following are the steps to start debug a offline plugin in Dynamics CRM 2011 for outlook offline mode: Build the solution on your machine Register the plugin on the server Register the step deployment as server and offline Synchronize the … Continue reading

Posted in MS CRM 2011 | Tagged , , | Leave a comment

How to retrieve campaign and target product in Dynamics CRM 2011

To retrieve campaign and target products in Dynamics CRM 2011 follow below steps: Use Link Entities to get N:N relationship entity details Passing Campaign Activity Guid array and it will return campaign details and target products associated with campaign private … Continue reading

Posted in MS CRM 2011 | Tagged , , | Leave a comment

How to create static marketing list and associated marketing list member in Dynamics CRM 2011

To create static marketing list and associated marketing list member in Dynamics CRM 2011 below are the steps: Create the array of contacts/accounts/leads. Set type attribute as false to create static list. Make sure createdfromcode attribute is set as contact/account/lead … Continue reading

Posted in MS CRM 2011 | Tagged , , | Leave a comment