Как добавить объект в решение с помощью JavaScript, используя действие Web Api AddSolutionComponent? - PullRequest
0 голосов
/ 12 апреля 2019

Я хочу добавить пользовательский объект в пользовательское решение в Dynamics CRM с помощью JavaScript. Я провел некоторое исследование, и оказалось, что это возможно сделать с помощью Actions. AddSolutionComponent должен выполнить работу, но я, вероятно, что-то не так, так как я получаю ошибку 400 Request message has unresolved parameters.

Сущность и решение, которое я передаю в параметрах, созданы с помощью javascript и могут найти их обоих в crm.

function associateEntityToSolution(entityId, solutionUniqueName, newSolutionId){

  var param = { 
      'ComponentId': entityId , // newly created entity id 
      'ComponentType':1, // entity type
      'SolutionUniqueName':solutionUniqueName,  //newly created solution id
      'AddRequiredComponents':false,
      'IncludedComponentSettingsValues':null
  };

  var req = new XMLHttpRequest();
  req.open("POST", window.parent.opener.Xrm.Page.context.getClientUrl() + "/api/data/v8.2/solutions("+newSolutionId+")/Microsoft.Dynamics.CRM.AddSolutionComponent", 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 === 204) {
              var uri = this.getResponseHeader("OData-EntityId");
              var regExp = /\(([^)]+)\)/;
              var matches = regExp.exec(uri);
              var newEntityId = matches[1];
              associateEntityToSolution(newEntityId,entityUniqueName);
          } else {
              window.parent.opener.Xrm.Utility.alertDialog(this.statusText);
          }
      }
  };
  req.send(JSON.stringify(param));
}

Я что-то упустил в коде? Есть ли другое решение, чтобы сделать работу с Javascript?

Ответы [ 2 ]

1 голос
/ 12 апреля 2019

Пара изменений:

  1. Прокомментировал эту строку associateEntityToSolution(newEntityId,entityUniqueName);, как я предполагаю, что это может зацикливаться.

  2. Поместите решениене указывайте идентификатор решения в строке параметров 'SolutionUniqueName':solutionUniqueName,

enter image description here

Изменил эту строку req.open("POST", window.parent.opener.Xrm.Page.context.getClientUrl() + "/api/data/v8.2/solutions("+newSolutionId+")/Microsoft.Dynamics.CRM.AddSolutionComponent", true); на правильный веб-вызов API Action, например: req.open("POST", window.parent.opener.Xrm.Page.context.getClientUrl() + "/api/data/v9.1/AddSolutionComponent", true);

-

function associateEntityToSolution(entityId, solutionUniqueName, newSolutionId){

  var param = { 
      'ComponentId': entityId , // newly created entity id 
      'ComponentType':1, // entity type
      'SolutionUniqueName':solutionUniqueName,  // solution name (without spaces)
      'AddRequiredComponents':false,
      'IncludedComponentSettingsValues':null
  };

  var req = new XMLHttpRequest();
  req.open("POST", window.parent.opener.Xrm.Page.context.getClientUrl() + "/api/data/v9.1/AddSolutionComponent", 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 === 204) {
              var uri = this.getResponseHeader("OData-EntityId");
              var regExp = /\(([^)]+)\)/;
              var matches = regExp.exec(uri);
              var newEntityId = matches[1];
              //associateEntityToSolution(newEntityId,entityUniqueName);
          } else {
              window.parent.opener.Xrm.Utility.alertDialog(this.statusText);
          }
      }
  };
  req.send(JSON.stringify(param));
}

Я проверял это в CRM REST Builder.

0 голосов
/ 12 апреля 2019

URL:

POST [Your Org]/api/data/v9.0/AddSolutionComponent

Body:

{
    "ComponentId" : "YourComponentGuid",
    "ComponentType" : "YourComponentType", 
    "SolutionUniqueName" : "YourSolutionUniqueName",
    "AddRequiredComponents" : "false", //false or true
    "DoNotIncludeSubcomponents" : "true" //false or true
}

ComponentId можно получить, выполнив запрос GET к [Your Org]/api/data/v9.0/EntityDefinitions(LogicalName='YourEntityLogicalName')?$select=MetadataId

Поиск доступных типов компонентов здесь

...