0

CRMDynamicsを使用しています。ActiveXObjectを使用してリクエストを解決するJavaScriptがありますが、それをFetchリクエストに変換する必要があります。

古いコードは次のとおりです。

function fnSetStateActiveQuoteRequest() {
var xml = "" +
"<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
"<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">" +
GenerateAuthenticationHeader() +
"  <soap:Body>" +
"    <Execute xmlns=\"http://schemas.microsoft.com/crm/2007/WebServices\">" +
"      <Request xsi:type=\"SetStateQuoteRequest\">" +
"        <EntityId>" + Xrm.Page.data.entity.getId() + "</EntityId>" +
"        <QuoteState>Active</QuoteState>" +
"        <QuoteStatus>2</QuoteStatus>" +
"      </Request>" +
"    </Execute>" +
"  </soap:Body>" +
"</soap:Envelope>" +
"";

var xmlHttpRequest = new ActiveXObject("Msxml2.XMLHTTP");

xmlHttpRequest.Open("POST", "/mscrmservices/2007/CrmService.asmx", false);
xmlHttpRequest.setRequestHeader("SOAPAction", "http://schemas.microsoft.com/crm/2007/WebServices/Execute");
xmlHttpRequest.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
xmlHttpRequest.setRequestHeader("Content-Length", xml.length);
xmlHttpRequest.send(xml);

そして私はそれを次のように変換しようとしています:

var _oService; 
var _sOrgName = "myOrg"; 
var _sServerUrl = Xrm.Page.context.getServerUrl();
function fnSetStateActiveQuoteRequest(){
var sFetch = '<fetch mapping="logical">';
 sFetch+=  '<entity name='+Xrm.Page.data.entity.getId()'>';
 sFetch+=  '</filter>';
 sFetch+=  '</entity>';
 sFetch+= '</fetch>';

 _oService = new FetchUtil(_sOrgName, _sServerUrl);
 var oEntity = _oService.Fetch(sFetch, myCallBack); 
} 

しかし、Request>とQuoteState>を宣言する方法がわかりません。

4

1 に答える 1