on 2017 Apr 19 12:37 PM
Hello there,
I've created an UI5 application with OData service, I am able to update the data which entered on application to backend via OData service. but couldn't delete the data in the same way. Getting below error message in log.
The Data Services Request contains SystemQueryOptions that are not allowed for this Request Type
below is my code:
deleteEntry: function(oEvent) {
var oModel = oEvent.getSource().getModel();
var oBindingContext = oEvent.getSource().getBindingContext();
var sPath = oBindingContext.getPath();
oModel.remove(sPath, {
success: function() {
MessageToast.show("Delete Success");
},
error: function() {
MessageToast.show("Delete Failed");
}
});
oModel.refresh();
}
Request clarification before answering.
Hi chengalarayulu.d,
Did you got any solution for the above issue ?
i am also facing the same issue..
Odata call is going well and also getting response Ok 200, but the record is not deleting from backend.
the same URI which is sending request to delete record is working fine in sap gateway client.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
30 | |
21 | |
16 | |
8 | |
7 | |
6 | |
5 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.