回答

0

您無法使用業務規則設置今天的日期。

相反,你可以使用JavaScript的CreatedOn部分時間12:00相比,它可以做如下:

function onLoad() { 
    var createdOn = Xrm.Page.getAttribute("createdon").getValue(); 
    var noon = new Date(createdOn.getTime()); 
    noon.setHours(12, 0, 0); 

    Xrm.Page.getAttribute("description").setValue(createdOn < noon ? "Good Morning" : "It's after noon!"); 
}