
Dynamics CRM
Dynamics CRM
Admini$trat0r
本人擅长JAVA,C,C++,C#,Python,PHP,JS,Jsp,Asp的拼写。
熟悉Windows,Linux,Unix,IOS,Android的开关机。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CRM的Encryption Date
查询Encryption Data是不是Active状态IsDataEncryptionActiveRequest request = new IsDataEncryptionActiveRequest();IsDataEncryptionActiveResponse response = (IsDataEncryptionActiveResponse)organizationServ...原创 2019-12-28 18:12:55 · 2983 阅读 · 0 评论 -
CRM Share操作及Plugin
Share新共享给某个用户 // Grant the team read/write access to the lead. var teamReference = new EntityReference(Team.EntityLogicalName, _teamId); var grantAccessRequest = new Grant...原创 2019-11-19 11:43:00 · 3097 阅读 · 0 评论 -
CRM QueryExpression的分页查询
#大于5000条数据分页查询QueryExpression附上一个链接https://blog.youkuaiyun.com/y_f123/article/details/51307526public static void QueryPage(IOrganizationService service, QueryExpression query, Action<EntityCollection...原创 2019-11-19 11:33:39 · 3388 阅读 · 1 评论 -
CRM JS的基本操作
//JS//取值:var oResult = Xrm.Page.getAttribute(sFieldName).getValue();var oResult = Xrm.Page.getControl(sFieldName).getAttribute().getValue();//赋值:一般类型:Xrm.Page.getAttribute(sFieldName).set...原创 2019-11-19 11:23:53 · 3067 阅读 · 0 评论 -
CRM Plugin的基本操作
/Plugin//获取contextIPluginExecutionContext context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));//获取organizationServiceIOrganizationServiceFactory ser...原创 2019-11-19 11:17:45 · 3240 阅读 · 0 评论 -
CRM 连接Dynamics 365 环境
//连接CRM环境ClientCredentials clientCredentials = new ClientCredentials(); clientCredentials.UserName.UserName = "..."; clientCredentials.UserName.Password = "..."; ...原创 2019-11-19 11:13:17 · 3231 阅读 · 1 评论 -
Dynamic CRM Plugin
//Plugin//获取contextIPluginExecutionContext context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));//获取organizationServiceIOrganizationServiceFactory service...原创 2019-10-24 17:15:33 · 3041 阅读 · 0 评论 -
CRM js删除OptionSetValue中的字段属性
//隐藏字段属性https://neilparkhurst.com/2015/12/01/javascript-control-optionset-values/https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/controls/removeoptionf...原创 2019-10-24 17:11:53 · 2953 阅读 · 0 评论