MS Dynamics CRM的PropagateByExpressionRequest需要原始xml

问题描述 投票:0回答:1

我需要一点帮助。

在MS Dynamics CRM中,有一个请求-PropagateByExpressionRequest。其目的是创建QuickCampaign。这是C#的范例:

MSDN

// create the bulkoperation
PropagateByExpressionRequest request = new PropagateByExpressionRequest() {
    Activity = emailActivityEntity,
    ExecuteImmediately = false, // Default value.
    FriendlyName = "Query Based Quick Campaign",
    OwnershipOptions = ownershipOption,
    QueryExpression = query,
    Owner = new EntityReference("systemuser", _currentUser),
    PostWorkflowEvent = true,
    SendEmail = false,
    TemplateId = Guid.Empty
};

事实是,我们正在使用Java,但我需要此请求的原始XML示例,但我找不到它。

[如果有人知道它的外观或用法-请提供帮助。 :)

Edit 1:CRM版本2015。编辑2:示例(属性名称,格式的问题):

<s:Envelope
    xmlns="http://schemas.microsoft.com/xrm/2011/Contracts/Services"
    xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:a="http://schemas.microsoft.com/xrm/2011/Contracts"
    xmlns:b="http://schemas.datacontract.org/2004/07/System.Collections.Generic"
    xmlns:i="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:c="http://www.w3.org/2001/XMLSchema"
>
  <s:Body>
    <Execute>
      <request i:type="a:PropagateByExpressionRequest">
        <a:Parameters>
          <a:KeyValuePairOfstringanyType>
            <b:key>FriendlyName</b:key>
            <b:value i:type="c:string">Query Based Quick Campaign</b:value>
          </a:KeyValuePairOfstringanyType>
          <a:KeyValuePairOfstringanyType>
            <b:key>ExecuteImmediately</b:key>
            <b:value i:type="c:boolean">true</b:value>
          </a:KeyValuePairOfstringanyType>
          <a:KeyValuePairOfstringanyType>
            <b:key>Activity</b:key>
            <b:value i:type="a:Entity">
              <a:KeyValuePairOfstringanyType>
                <b:key>activityid</b:key>
                <b:value i:type="c:string">00000000-0000-0000-0000-000000000000</b:value>
              </a:KeyValuePairOfstringanyType>
            </b:value>
          </a:KeyValuePairOfstringanyType>
          <a:KeyValuePairOfstringanyType>
            <b:key>TemplateId</b:key>
            <b:value i:type="a:EntityReference">
              <a:Id>00000000-0000-0000-0000-000000000000</a:Id>
              <a:LogicalName>phonecall</a:LogicalName>
              <a:Name></a:Name>
            </b:value>
          </a:KeyValuePairOfstringanyType>
          <a:KeyValuePairOfstringanyType>
            <b:key>OwnershipOptions</b:key>
            <b:value i:type="c:integer">1</b:value>
          </a:KeyValuePairOfstringanyType>
          <a:KeyValuePairOfstringanyType>
            <b:key>PostWorkflowEvent</b:key>
            <b:value i:type="c:boolean">true</b:value>
          </a:KeyValuePairOfstringanyType>
          <a:KeyValuePairOfstringanyType>
            <b:key>Owner</b:key>
            <b:value i:type="a:EntityReference">
              <a:Id>00000000-0000-0000-0000-000000000000</a:Id>
              <a:LogicalName>systemuserid</a:LogicalName>
              <a:Name></a:Name>
            </b:value>
          </a:KeyValuePairOfstringanyType>
          <a:KeyValuePairOfstringanyType>
            <b:key>SendEmail</b:key>
            <b:value i:type="c:boolean">false</b:value>
          </a:KeyValuePairOfstringanyType>
        </a:Parameters>
        <a:RequestId>00000000-0000-0000-0000-000000000000</a:RequestId>
        <a:RequestName>PropagateByExpression</a:RequestName>
      </request>
    </Execute>
  </s:Body>
</s:Envelope>
soap dynamics-crm crm
1个回答
0
投票

SOAP端点已弃用,并且我们拥有REST Web API-因此我们可以使用PropagateByExpression Action。 Read more

示例代码如下:(很抱歉,我不是来自Java背景,但我知道Javascript)

var parameters = {};
parameters.FriendlyName = "Query Based Quick Campaign";
parameters.ExecuteImmediately = false;
var activity = {};
activity.activityid = "00000000-0000-0000-0000-000000000000"; //Delete if creating new record 
activity["@odata.type"] = "Microsoft.Dynamics.CRM.email";
parameters.Activity = activity;
parameters.TemplateId = "00000000-0000-0000-0000-000000000000";
parameters.OwnershipOptions = ownershipOption;
parameters.PostWorkflowEvent = true;
var owner = {};
owner.systemuserid = "00000000-0000-0000-0000-000000000000"; //Delete if creating new record 
owner["@odata.type"] = "Microsoft.Dynamics.CRM.systemuser";
parameters.Owner = owner;
parameters.SendEmail = false;

var req = new XMLHttpRequest();
req.open("POST", "https://devcrmorgname.crm.dynamics.com/api/data/v9.1/PropagateByExpression", true);
req.setRequestHeader("OData-MaxVersion", "4.0");
req.setRequestHeader("OData-Version", "4.0");
req.setRequestHeader("Accept", "application/json");
req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
req.onreadystatechange = function() {
    if (this.readyState === 4) {
        req.onreadystatechange = null;
        if (this.status === 200) {
            var results = JSON.parse(this.response);
        } else {

        }
    }
};
req.send(JSON.stringify(parameters));
© www.soinside.com 2019 - 2024. All rights reserved.