Hi guys,
I was wondering if it is possible to display two properties of an entity in one datafield?
Since I did not see a possibility within the OData annotations for the Fiori UI, I thought I could be done via CQL.
In assumption, that we have the following entity. I want to combine the forename and the surname and access it as fullname.
entity Persons: cuid {
forename : String;
surname : String;
age: Int;
placeOfBirth: String;
}
Is there a possibilty to do so?
Cheers,
Thorsten