"EXECUTE on the container schema"
Hi Arne,
regarding the documentation, I have created two files, the hdbrole file and the hdbroleconfing file.
http://help.sap.com/hana/SAP_HANA_Developer_Guide_for_SAP_HANA_XS_Advanced_Model_en.pdf
Because I couldn't find any example, I'm not sure if this is the right way to do it.
tbase_schema.hdbroleconfig
{
"RoleX":{
"Ref1":{
"schema":"285BH6G95SZF188B_TBASE_HDI_CONTAINER"
}
}
}
cdsTablesRole.hdbrole
{
"role": {
"name": "TBASE.db.roles::cdsTablesRole",
"schema_roles": [{
"schema_reference": "Ref1",
"names": ["???"]
}],
"schema_privileges": [{
"reference": "Ref1",
"privileges": ["EXECUTE"]
}],
"object_privileges": [{
"name": "TBASE.db.data::tbase.cds.PATIENT",
"type": "TABLE",
"privileges": ["SELECT"]
}]
}
}
But if I try to deploy this files it fails.
I don't know, what this bolded text expects.
"RoleX":
"names": ["???"]
Would be nice, if you could help one more time.