I_CustomCDSViewDatasrcTypeText

DDL: I_CUSTOMCDSVIEWDATASRCTYPETEXT SQL: APS_CCV_I_DS_T_T Type: view

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)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CustomCDSViewDatasourceType _DatasourceType $projection.DatasourceType = _DatasourceType.DataSourceType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (6)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_CUSTOMCDSVIEWDATASOURCETYPE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/