博文

How to Find CRM Version and Orgnization(2011-02-17 21:25:00)

摘要:http://mscrmonline.wordpress.com/2009/12/25/how-to-find-microsoft-crm-version-and-organization-info/ Here is how to find what version of the Microsoft CRM 4.0 including the Update Rollup applied and Organization Info you are running:   CRM Web Client >> Help >> About Microsoft Dynamics CRM           In the above example, the version is 4.0.7333.1644 and the organization name is “MicrosoftCRM” (Note: this is the Organization’s Friendly Name – the Unique Could be different).   You may wonder what are the numbers after the 4… – they indicate the Update Rollup applied.   Here is a list of v4.0 version numbers and their corresponding Update Rollups:   4.0.7333.3 – Base Installation, No Update Rollup 4.0.7333.1113 – Update Rollup 1 4.0.7333.1316 – Update Rollup 2 4.0.7333.1408 – Update Rollup 3 4.0.7333.1551 – Update Rollup 4 4.0.7333.1644 – Update Rollup 5 4.0.7333.1750 – Update Rollup 6 4.0.7333.2138 – Upda......

阅读全文(1208) | 评论:0

crm简单属性(2009-09-01 03:36:00)

摘要:ObjectId:       crmForm.ObjectIdObjectTypeCode: crmForm.ObjectTypeCodeSecurity:       crmFormSubmit.crmFormSubmitSecurity.value 下面举个例子, 比如在 contact entity form 中有一个 IFRAME_HistoryFrame 来显示activities history的。在onload 中, 需要: function GetFrameSource(tabSet){    if (crmForm.ObjectId != null)    {        var oId = crmForm.ObjectId;        var oType = crmForm.ObjectTypeCode;        var security = crmFormSubmit.crmFormSubmitSecurity.value;        return "areas.aspx?oId=" + oId + "&oType=" + oType + "&security=" + security + "&tabSet=" + tabSet;    }    else    {        return "about:blank";    }} crmForm.all.IFRAME_HistoryFrame.src = GetFrameSource("areaActiv......

阅读全文(1141) | 评论:0