Category Archives: Dynamics CRM

Business Process Flow in CRM 2013

The December 2012 Update of Microsoft Dynamic CRM Online introduced Business Process Flow for the OOB Lead, Opportunity and Case entities. With CRM 2013 Microsoft has extended this feature further and allowed creating of business process flows for any entity including custom entities. Enabling Business Process Flow for an entity:    The first step to… Read More »

How to pass Object or collection of Objects to a web resource in CRM 2011

In Dynamics CRM if we want to pass data to a web resource, then we use Xrm.Utility.openWebResourcefunction and pass as second parameter. But in this case we can’t pass Object or Array as parameter.  So to solve this problem one can use JSON. Using JSON we can convert Object or Collection of Object (Array) in… Read More »

Check attribute type/formats in CRM 2011 javascript.

Now we can check the attribute formats in CRM java script. To do this you just need to use the function “getFormat”. This function returns a string value that represents formatting options for the attribute. You can refer the below code to check the format of different types of attributes. functionGetFormatOfAttributes() {     var attributeFormat;… Read More »