[通过SAP网关与SAPUI5和OData V2创建1:1关联实体

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

我使用UI5和OData V2这样创建关联实体:

var oContext = this.oDataModel.createEntry("/RootEntity(Key1='key1',Key1='key2')/toItem", {
        groupId: "groupId",
        changeSetId: "changeSet",
        properties: {
            "Key1": "key1",
            "Key2": "key2",
            "Field": "value"
        }
});

如果“ toItem”是“ RootEntity”的1:*关联,则将调用Backend中的“ CreateEntity” -Methods,并正确创建该实体。如果“ toItem”是1:1关联,则抛出错误“数据服务请求URI所标识的资源不允许使用指定的HTTP方法”。

任何想法是什么问题或遗漏了?

odata sapui5 sap
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.