Hi,
I am trying to create a table using CDS syntax, but facing a challenge to add column comments.(Comments that are part of table in systems view and not part of cds definition in project explorer)
Could you please help me with the syntax to add comments
Example : I want to see the comment "Original Name" when we open the table definition from the systems tab of developer perspective.
entity ZEMP_CDS1 {
firstname :String(20)notnull/*Original Name*/;
lastname :String(20)default'doe';//LAST NAME
age :Integernotnull;
salary :Decimal(7,2)notnull;
};
Regards
Vishwatej