We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34dd7a commit 957b662Copy full SHA for 957b662
docs/Creating_an_Entity_c9723f8.md
@@ -53,7 +53,10 @@ If you have called [`ODataListBinding#create`](https://sdk.openui5.org/api/sap.u
53
oContext.created().then(function () {
54
// sales order successfully created
55
}, function (oError) {
56
- // handle rejection of entity creation; if oError.canceled === true then the transient entity has been deleted
+ // handle rejection of entity creation; if oError.canceled === true then the transient entity has been deleted
57
+ if (!oError.canceled) {
58
+ throw oError; // unexpected error
59
+ }
60
});
61
},
62
0 commit comments