SAP CDS SIMPLE TYPE



Get Example source ABAP code based on a different SAP table
  



ABAP_CDS_DDL - CDS Simple Type, simple_type

ABAP_SYNTAX
... simple_type ...

What does it do?
A CDS simple type can be typed using another CDS simple type. The annotations of the underlying simple type are inherited. It is possible to overwrite these annotations using locally defined annotations in the overlying simple type.
When stacking CDS simple types, the maximum nesting depth is five. This means that a stack of simple types can have a maximum of five layers, from base to top-most.

ABAP_EXAMPLE_VX5
The following CDS simple type is created with reference to another CDS simple type. It inherits all the properties and annotations of the referenced simple type.
DRTY DEMO_SIMPLE_TYPE_2
ABAP_EXAMPLE_END