I_CustomCDSViewDatasrcTypeText
Custom CDS View Datasource Type Text
I_CustomCDSViewDatasrcTypeText is a CDS View that provides data about "Custom CDS View Datasource Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields DatasourceType, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CustomCDSViewDatasourceType | _DatasourceType | $projection.DatasourceType = _DatasourceType.DataSourceType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APS_CCV_I_DS_T_T | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | DatasourceType | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Custom CDS View Datasource Type Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DatasourceType | |||
| KEY | Language | ddlanguage | ||
| DatasourceTypeText | ddtext | |||
| _DatasourceType | _DatasourceType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'APS_CCV_I_DS_T_T'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'DatasourceType'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Custom CDS View Datasource Type Text'
define view I_CustomCDSViewDatasrcTypeText
as select from dd07t
association [0..1] to I_CustomCDSViewDatasourceType as _DatasourceType on $projection.DatasourceType = _DatasourceType.DataSourceType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_DatasourceType'
key substring(domvalue_l,1,1) as DatasourceType,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@Semantics.text: true
ddtext as DatasourceTypeText,
_DatasourceType,
_Language
}
where
dd07t.domname = 'APS_CCV_DATASOURCE_TYPE'
and dd07t.as4local = 'A'
and dd07t.ddlanguage = $session.system_language;
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