Hi Thomas,
the Error comes from
service namespace "uniorg.bonvendo.uis.ume.usermgmt" {
// HDB tables
"uniorg.bonvendo.data::Bonvendo.Ume.User" as "UmeUsers"
without ("AvatarImage")
navigates ("Ume_UserAccount" as "UmeAccount");
"uniorg.bonvendo.data::Bonvendo.Ume.Account" as "UmeAccounts"
without ("Password")
create forbidden
delete forbidden;
association "Ume_UserAccount" principal "UmeUsers"("ID") multiplicity "1"
dependent "UmeAccounts"("UmeUserID") multiplicity "1";
"uniorg.bonvendo.data::Bonvendo.Sys.DataDictionaryView" as "SysDataDictionaries"
key generate local "GenID"
create forbidden
update forbidden
delete forbidden;
}
annotations {
enable OData4SAP;
}
I thought i would be able to passthru metainformation by using
annotations
inside my DataDefinition
Something like
@MyTableInfo : 'System Jobs'
or addtional metadata on columns i would like to passthrough via OData
I would not like to add an attribute only for addtional metadata.
If i mix AttributeViews and native views (hdbdd), how can i avoid this error?
Cheers Holger