Hi,
I've created at basic odata service on my AWS HANA Instance but I'm having issues when testing in the browser.
Whenever I add the parameter "inlinecount=allpages" as a parameter to the service call I get the error -
400 Bad Request Error - "Service exception: column store error."
e.g. http://<hanaserver>:8000/com/kringas/temperature/services/tempService.xsodata/StationDetails?$top=3&$format=json&$inlinecount=allpages
If I remove the parameter or have it set to "inlinecount=none" the service works correctly, returning the expected results.
e.g. http://<hanaserver>:8000/com/kringas/temperature/services/tempService.xsodata/StationDetails?$top=3&$format=json&$inlinecount=none
The reason I need it to work with the "inlinecount=allpages" set is the SAPUI5 app where I'm trying to bind the odata service to a table seems to append this parameter to the service call.
Thanks,
Stephen