如何在使用 sapui5 执行更新操作时定义 HTTP PUT 方法

我想执行更新操作,但我遇到以下错误。

HTTP请求失败(400 Bad Request): {"error":{"code":"SY/530","message":{"lang":"en","value":"Inline component is not defined or not允许 (HTTP PUT)"},"innererror":{"transactionid":"50EFF5DC7C760020E005F672522CBC10","timestamp":"20201018162311.0364030","Error_Resolution":{"SAP_Transaction":"在 SAP NW Gateway hub 上运行事务 /IWFND/ERROR_LOG系统并搜索带有上述时间戳的条目以获取更多详细信息","SAP_Note":"请参阅 SAP Note 1797736 进行错误分析 ( https://service.sap.com/sap/support/notes/1797736)","Batch_SAP_Note " :"有关使用 $batch 的详细信息,请参阅 SAP Note 1869434。

var oEntry1 = {};

oEntry1.Ebeln = Ebeln;

oEntry1.Bukrs = Bukrs;

oEntry1.Bsart = "EC";

oEntry1.Lifnr = Lifnr;

oEntry1.Ekorg = Ekorg;

oEntry1.Ekgrp = Ekgrp;

oEntry1.Waers = Waers; // set the item data to ProductSet

oEntry1.POItem = itemData;


oModel.update("/POHeaderSet('" + Ebeln + "')", oEntry1, {

  success: function(data) {

    alert("success");

  },

  error: function(e) {

    alert("error");

  }

});


喵喵时光机
浏览 101回答 1
1回答

不负相思意

深度插入是可能的,但深度更新是不可能的,因为这不受支持。要在一次 Gateway 调用中更新父项和子项,您可以使用 $batch 功能。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript