Different operators used with workflow

There are six different operators used in e workflow. 1. Set to: This operator is used to set value of the field of any data type. 2. Append with: This operator can only be used with text field. It will append specified field’s value or the default value to the existing value. This operator has… Read More »

Working with CRM 2011 Solutions

With Dynamics CRM 2011, Microsoft goes one step further in simplifying the process of moving the customizations from one system to another. In the CRM 2011 you can now simply export and import the customizations in the form of solutions. There are two type of solution in the CRM 2011. 1. Default Solution: This is… Read More »

Fault and Exception Handling in Dynamics CRM 2011

Microsoft Dynamics CRM Web service can throw a number of exceptions. When we use Microsoft Dynamics CRM Web service in application development we need to handle service related exceptions. All Web service method calls use a communication channel to the server based on the Windows Communication Foundation (WCF) technology. In WCF terms, exceptions returned from… Read More »

How to pass field values to Form

Sometimes you have requirement to open the particular type of new record with some default values already filled. This can be achieved by passing the field values to the query string. To open the new record form https:///main.aspx?etn=&pagetype=entityrecord Pass field values as query string parameters http:///main.aspx?etn=&pagetype=entityrecord&extraqs== If you need to pass the multiple field values… Read More »