Hi there,
I'm building a SAPUI5 app on the trial cloud. I have a local table in the xs application, which i present via odata. In my SAPUI5 app i have a list showing the content of this table.
I currently have the whole app working, but with authorization, i want to be able to access the data without authorization. I have tried the following based on this thread SAP Hana Anonymous User? And HTTP POST method? | SAP HANA
So i have the following in my .xsaccess file
{
"anonymous_connection": "XXXXXXX.myxsapp::anonuser",
"exposed" : true,
"authentication": null
}
i have a anonuser.sqlcc file which have the following content
{
"description" : "Anon SQL connection"
}
In the above thread it mentions i should update the table _SYS_XS"."SQL_CONNECTIONS either via SQL command or the xs admin tool. However i don't have the privilege to use the SQL command and i can't seem to gain access to the xs admin tool.
Please any help is much appreciated.