Quantcast
Channel: Dynamics 365 Customer Engagement
Viewing all articles
Browse latest Browse all 286

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

$
0
0
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

Viewing all articles
Browse latest Browse all 286

Trending Articles