I_ListingSourceT

DDL: I_LISTINGSOURCET SQL: ILISTINGSOURCET Type: view BASIC

Listing Source Text

I_ListingSourceT is a Basic CDS View that provides data about "Listing Source Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ListingSource, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ILISTINGSOURCET view
EndUserText.label Listing Source Text view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ListingSource view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ListingSource
KEY Language
ListingSourceName ddtext
_Language _Language
@AbapCatalog.sqlViewName: 'ILISTINGSOURCET'
@EndUserText.label: 'Listing Source Text'

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC
@ObjectModel: {
    dataCategory: #TEXT,
    representativeKey: 'ListingSource',
    usageType: {
        serviceQuality: #A,
        sizeCategory: #S,
        dataClass: #META
   }
}

define view I_ListingSourceT
  as select from dd07t
  association [0..1] to I_Language      as _Language      on $projection.Language = _Language.Language
{
  key cast ( substring( domvalue_l, 1, 1 ) as w_ursac_li preserving type ) as ListingSource,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast( ddlanguage as langu preserving type )                          as Language,
      @Semantics.text: true
      ddtext                                                               as ListingSourceName,
      _Language
}
where
      domname  = 'W_URSAC_LI'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/