• Dynamics CRM - 通过 C# Plugin 来 abandon Business Process Flow


    需求说明:

          当一个 Entity 存在 Business Process Process 时,有时我们需要改变其状态,在之前写的博客有讲了可以通过 JavaScript 来实现,本篇就来讲一下如何通过 C# Plugin 来实现对 BPF 的 abandon( abandon 后的 BPF 会变成灰色,BPF 里的  Stages 变成不可编辑,不能点击上一步和下一步,也不能 Set Active;如果想要使 Steps 也不可编辑,可通过 JavaScript 控制)。

    解决方案:

          通过 Solution 查看 Entities 组件时可以发现:在为一个 Entity 添加一个 Business Process Flow 的时候,实际上也是创建了一个新的 Entity(后面简称 BPF Entity),Entity 与 BPF Entity 之间的关系是 1:N。BPF Entity 中存在 Lookup 其 Primary Entity 的 Field,可以通过这个字段来查询当前 Entity 下的 BPF,之后改变其 State 和 Stauts 的值就可以将 BPF abandon 了。

    Note:State -> statecode,Status -> statuscode,这两个字段都是 BPF Entity 的 Default Field,每个 Entity 都有的,表示状态,通过改变这两个字段的值来改变 Entity 的状态。

    示例代码:

    private void AbandonBPF(IOrganizationService service, Guid new_entity_id)
    {
        using (OrganizationServiceContext orgService = new OrganizationServiceContext(service))
        {
            var bpf_entity = (from _bpf_entity in orgService.CreateQuery()
                              where _bpf_entity.bpf_new_entityid.Id == new_entity_id
                              select _bpf_entity).FirstOrDefault();
    
            if (bpf_entity != null && bpf_entity.GetAttributeValue("statecode").Value == 0)
            {
                //statecode = 1 and statuscode = 3 for abandon workflow
                SetStateRequest setStateRequest = new SetStateRequest()
                {
                    EntityMoniker = new EntityReference
                    {
                        Id = bpf_entity.BusinessProcessFlowInstanceId.Value,
                        LogicalName = Entities.new_bpfenity.EntityLogicalName,
                    },
                    State = new OptionSetValue(1),
                    Status = new OptionSetValue(3)
                };
                service.Execute(setStateRequest);
            }
        }
    }

    Note:这里 new_entity 是 Entity name,new_bpfentity 是其对应 BPF Entity 的 name。

    函数调用:

    Entities.new_entity entity =  ((Entity)context.InputParameters["Target"]).ToEntity();
    AbandonBPF(service, entity.id);

  • 相关阅读:
    传输层 用户数据报协议(UDP)
    日常开发方案设计指北
    【ATT&CK】MITRE Caldera-emu插件
    【leetCode:剑指 Offer】20. 表示数值的字符串
    以效率为导向:用ChatGPT和HttpRunner实现敏捷自动化测试(二)
    Ubuntu20.04安装Nvidia显卡驱动、CUDA11.3、CUDNN、TensorRT、Anaconda、ROS/ROS2
    Windows/Linux系统ftp服务器搭建
    Docker安装InfluxDB_用户名密码和策略使用
    互联网Java工程师面试题·Java 总结篇·第一弹
    cmake guides
  • 原文地址:https://blog.csdn.net/m0_72495985/article/details/127864177