我有一个提取xml查询,我想用日期& 时间字段。
我在之前或之前使用表达,但这似乎只过滤了日期(没有时间)。
FetchXml= ...
'<filter type="and">'+
'<filter type="or">'+
'<condition attribute="scheduledend" value="'+ currentdate +'" operator="on-or-before"/>'+
'<condition attribute="scheduledend" operator="null"/>'+
'</filter>'+
'</filter>'+
答案 0 :(得分:1)
您可以构建日期并将0影响到时间部分。这是你想要的吗?
var date = Xrm.Page.getAttribute("createdon").getValue();
var d = new Date(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0, 0);