Hi
After spending several hours to fix this and trying out several possibilities, i still cannot manage to make it work, Here is the issue
Below is the code
| var ofilter = new sap.ui.model.Filter({ |
path: "Property",
operator: sap.ui.model.FilterOperator.EQ,
value1: "Something"
});
.../EntityName?$filter=Property eq 'Something' - This is how the string SHOULD be formed
.../EntityName?$filter=Property eq Something - This is how it IS formed(notice the missing quotes
I get the below error if if the url is not formed in the "should" way
Invalid filter expression: 'Property eq Something '
Does anyone have any suggestions to fix this?
Thanks
Jayant
Request clarification before answering.
Hi Jayant,
And if you pass the filter like this:
new sap.ui.model.Filter("Property", sap.ui.model.FilterOperator.EQ, "Something");
Regards,
Robin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.