DD_DRTY_ST_ENUM_VALUES_CHAR_2
CDS ST: Enumeration Values CHAR 2
DD_DRTY_ST_ENUM_VALUES_CHAR_2 is a CDS View in S/4HANA. CDS ST: Enumeration Values CHAR 2. It contains 3 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| dd_drty_st_enum_value_t_char_2 | view_entity | from | CDS ST: Enum Values CHAR 2 with Text | |
| ddcds_type_enumval_char2_scp | view_entity | from | CDS Simple Type: Enum Values CHAR2 |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | enumIdentifier | enumIdentifier | 1 |
| KEY | enumValue | enumValue | 1 |
| KEY | simpleType | simpleType | 1 |
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'CDS ST: Enumeration Values CHAR 2'
define root view entity dd_drty_st_enum_values_char_2
as select from dddrty_smpl_type as type
inner join dddrty_smpl_enum as enum on type.type_name = enum.type_name
composition [0..*] of dd_drty_st_enum_value_t_char_2 as _Text
{
key type.type_name as simpleType,
key enum.enum_name as enumIdentifier,
key enum.value_char_2 as enumValue,
_Text
}
where
type.datatype = 'CHAR'
and type.leng = '000002'