我正在尝试使用OData和SAP Gateway服务更新SAP后端数据 在执行时,它会抛出错误并且不会在后端更新数据 我基本上是在尝试更新帐户' SAP CRM后端中的数据 错误消息包含此响应:
"文件{ServiceName}({BP_Number_of_that_Account})已成功上传"。
此应用程序已部署到SAP netweaver门户网站上 我在后端放了断点,我发现它甚至没有到达后端。
代码如下:
OData.request(
{
headers: {'x-requested-with' : 'XMLHttpRequest','Content-Type': 'application/atom+xml', 'DataServiceVersion': '2.0'},
requestUri: "/sap/Gateway/PGY/SERVICEACCOUNTS/SERVICEACCOUNTSCollection("+recordToUpdate.data.BP_NUMBER+")?sap-client=100&$format=xml",
method: "PUT",
data: {
ACCOUNT_NAME: recordToUpdate.data.ACCOUNT_NAME,
BP_NUMBER: recordToUpdate.data.BP_NUMBER,
CITY: recordToUpdate.data.CITY,
COUNTRY: recordToUpdate.data.COUNTRY,
E_MAIL: recordToUpdate.data.E_MAIL,
HOUSE_NO: recordToUpdate.data.HOUSE_NO,
POSTL_COD1: recordToUpdate.data.POSTL_COD1,
REGION: recordToUpdate.data.REGION,
STREET: recordToUpdate.data.STREET,
TELEPHONE: recordToUpdate.data.TELEPHONE
},
user: "****",
password: "****"},
function (data, response) {
//success handler
console.log(response);
console.log('Successfully updated object');
},
function (err)
{
//error handler
console.log('error while updating');
console.log(err);
}
);
任何帮助将不胜感激。谢谢。
答案 0 :(得分:0)
登录Gateway系统并检查transaction / IWFND / ERROR_LOG中的日志
始终启动事务SRDEBUG并确保为您用于请求的同一用户设置断点。