需要为dynamics CRM 2011中的每个列表获取注释(注释)

时间:2015-03-20 20:39:31

标签: dynamics-crm-2011 odata

我正在尝试根据列表ID获取与每个列表实体关联的注释实体(注释)。按日期创建的降序排序时,我想要前1条记录。为此,我在JavaScript的按钮点击事件中使用oDATA查询编写了下面的RESTfull调用。

function Button1_onclick() {
            var filterCriteria = "$select=notetext&$top=1&$orderby=createdon&$expand=List_Annotation&$filter=List_Annotation/ListId eq '" + document.getElementById("Text1").value + "'";
        SDK.JQuery.retrieveMultipleRecords(
 "Annotation",
 filterCriteria,
 function (results) {
     if (results != null) {
         alert("Success.");
     }
     else {
         alert("No notes available.");
     }
 },
 errorHandler,
 function () {
     //OnComplete handler
 }
   );

0 个答案:

没有答案