crm2011QueryByAttribute的事例,他和QueryExpression都是crm用于查询,但是他比较简单,用于不是很复杂的查询...
分类:
其他好文 时间:
2014-06-08 03:26:22
阅读次数:
245
function getServiceUrl() { var serverUrl =
Xrm.Page.context.getServerUrl(); if (serverUrl.match(/\/$/)) { serverUrl =
serverUrl.substring(0, serverUrl...
分类:
其他好文 时间:
2014-05-31 05:01:55
阅读次数:
214
CRM2011对删除和添加操作会自动做判断,比如A打开纪录x,B也打开纪录x,然后B删除了纪录x,A去更新的话就会有提示。更新的话是后者覆盖前者,比如A打开纪录x,B打开纪录x,然后B把记录x中的字段y更新成了3,然后点保存,A把字段y更新成了5保存,最后5会覆盖3。这篇日志解决的问题就是当A改成5...
分类:
其他好文 时间:
2014-05-24 12:45:49
阅读次数:
363
在CRM2011里面,我们可以在页面的控制台里面输入:contentIFrame.Xrm.Page.data.entity.getEntityName();
contentIFrame.Xrm.Page.data.entity.getId();是可以得到当前实体的名称和记录的id而2013里面不行,...
分类:
其他好文 时间:
2014-05-22 05:45:45
阅读次数:
172
function getServiceUrl() { var serverUrl =
Xrm.Page.context.getServerUrl(); if (serverUrl.match(/\/$/)) { serverUrl =
serverUrl.substring(0, server...
分类:
其他好文 时间:
2014-05-20 07:40:00
阅读次数:
250
public Guid GetUserIdByOrganizationService(IOrganizationService service)
{
var userRequest = new WhoAmIRequest();
var userResponse = (WhoAmIResponse)service.Execute...
分类:
其他好文 时间:
2014-05-12 15:38:56
阅读次数:
240
在CRM2011里面,我们可以在页面的控制台里面输入:
contentIFrame.Xrm.Page.data.entity.getEntityName();
contentIFrame.Xrm.Page.data.entity.getId();
是可以得到当前实体的名称和记录的id
而2013里面不行,那到底是怎么回事?
在2013里面,页面的排版布局跟2011不同,contentIF...
分类:
其他好文 时间:
2014-05-12 15:12:06
阅读次数:
242
function getServiceUrl() {
var serverUrl = Xrm.Page.context.getServerUrl();
if (serverUrl.match(/\/$/)) {
serverUrl = serverUrl.substring(0, serverUrl.length - 1);
}
retur...
分类:
其他好文 时间:
2014-05-11 22:01:16
阅读次数:
261