ddcds_type_enumval_char3_scp
CDS Simple Type: Enum Values CHAR3
ddcds_type_enumval_char3_scp is a CDS View that provides data about "CDS Simple Type: Enum Values CHAR3" in SAP S/4HANA. It reads from 2 data sources (ARS_OBJECTS_ALL_SW_COMP_SCP, dd_drty_st_enum_values_char_3) and exposes 4 fields with key fields simpleType, enumIdentifier, enumValue. It has 1 association to related views. Part of development package SD_CDS_INFO_PROVIDER.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| ARS_OBJECTS_ALL_SW_COMP_SCP | ARS_OBJECTS_ALL_SW_COMP_SCP | inner |
| dd_drty_st_enum_values_char_3 | enum | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | ddcds_type_enumval_char3_t_scp | _Text | |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.entityBuffer.definitionAllowed | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | CDS Simple Type: Enum Values CHAR3 | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | simpleType | CDS Type Name | ||
| KEY | enumIdentifier | Enum of CDS Type | ||
| KEY | enumValue | Enum Value Char 3 | ||
| _Text | _Text |
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'CDS Simple Type: Enum Values CHAR3'
define view entity ddcds_type_enumval_char3_scp
as select from dd_drty_st_enum_values_char_3 as enum
inner join ARS_OBJECTS_ALL_SW_COMP_SCP on ARS_OBJECTS_ALL_SW_COMP_SCP.program_id = 'R3TR'
and ARS_OBJECTS_ALL_SW_COMP_SCP.object_type = 'DRTY'
and ARS_OBJECTS_ALL_SW_COMP_SCP.object_name = enum.simpleType
composition [0..*] of ddcds_type_enumval_char3_t_scp as _Text
{
@EndUserText.label: 'CDS Type Name'
key cast( enum.simpleType as abap.char(30) ) as simpleType,
@EndUserText.label: 'Enum of CDS Type'
key cast( enum.enumIdentifier as abap.char(30) ) as enumIdentifier,
@EndUserText.label: 'Enum Value Char 3'
key cast( enum.enumValue as abap.char(3) ) as enumValue,
_Text
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA