Wednesday 4 November 2015

Type-Cast oData Service Datetime field in CRM 2011/2013/2015

Hi,

When you retrieve CRM date time values using oData Service from CRM, you will get the date in different format as below which we cannot set to Date field.
 
Here is the way to type cast it.
 
var vDate = jsonResult[0].new_date;
vDate = vDate.replace("/Date(", "");
vDate = vDate.replace(")/", "");
var dateValue = new Date(parseInt(vDate, 10));

Hope this helps.
 
--
Happy Coding

Gopinath

No comments:

Post a Comment