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<Entities.new_bpfentity>()
                          where _bpf_entity.bpf_new_entityid.Id == new_entity_id
                          select _bpf_entity).FirstOrDefault();

        if (bpf_entity != null && bpf_entity.GetAttributeValue<OptionSetValue>("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<Entities.new_entity>();
AbandonBPF(service, entity.id);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

枫叶思念

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值