05 2019 档案
摘要:这里是作为开发贴的总结. 现在plugin和workflow系列已经终结. 希望这些教程能给想入坑的小伙伴一些帮忙. CRM中文教材不多, 我会不断努力为大家提供更优质的教程. Plugin 开发系列 Plugin开发基本知识点 Plugin Pipeline Pre-Validation, Pre
阅读全文
摘要:首先,我们需要install Profiler 我们选中一个plugin, 并且选择start Profilling 然后我们选择Persist to Entity 然后我们执行trigger这个plugin。 e.g. 如果是create contact 就重新建立一个contact 我们去set
阅读全文
摘要:我们也deploy部署了custom workflows, debugging是开发当中不可或缺的一个步骤. debug workflow的步骤和debug有些许不一样: 1. install profiler 2. 从 列表中选择 plugin profiler 并且点击 profile work
阅读全文
摘要:这里的前提想大家了解一下. Dynamics 365 online的产品的session是30分钟 timeout. 如果你logout之后, session还是会储存在服务器端不会release. 这样的bug, dev team竟然不去修复. 我们可以通过这样的bug做一些get 和post 请
阅读全文
摘要:我们打开plugin registeration tool. 注册一个新的assembly. custom workflow 和 plugin注册的方法还有些不同. 这一步custom workflow就结束了. 因为custom workflow是通过business workflow来使用的 下
阅读全文
摘要:首先我们需要确定windows workflow foundation 已经安装. 创建之后先移除MyCustomWorkflows 里面的 Activity.xaml 从packages\Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool.9.0.
阅读全文
摘要:我们可以使用Command来实现快速获取custom entity的值. 创建cmd 并且在nuget中引用 CRMSDK 复制下面的代码. userName 为登陆CRM的email password 为登陆CRM密码 url 是 svc 可以在这里找到: Settings -> Customiz
阅读全文
摘要:怎样移除email subject标题中出现的CRM:0000xxxx Settings->Administration->System Settings->Email->Uncheck Use tracking token 需要把use tracking token 勾掉 Use correlat
阅读全文
摘要:上个帖子中, 我们创建了个发email的workflow. 但是我们邮件当中的tax 值是 hard code, 这在开发当中是不容许的. 那今天我们来把这个build in workflow用 input parameter 来加持一下. 我们需要创建一个contact 并且把值存进去 我们要定义
阅读全文
摘要:这里我们不着重讲解build in workflow. 但是, 如果要上手custom workflow, 我们必须要了解 build in workflow. build-in workflow 在input parameters 的加持下, 会成为custom workflow(C#) cust
阅读全文
摘要:Workflow: Use this process to model and automate real world business processes. These processes can be configured to run in the background or in real
阅读全文