I_CustomCDSViewCompOpText

DDL: I_CUSTOMCDSVIEWCOMPOPTEXT SQL: APS_CCV_I_CO_T Type: view Package: SAPS_CCV_DB

Custom CDS View Comparison Operator Text

I_CustomCDSViewCompOpText is a CDS View that provides data about "Custom CDS View Comparison Operator Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ComparisonOperator, Language. It has 2 associations to related views. Part of development package SAPS_CCV_DB.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName APS_CCV_I_CO_T view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Custom CDS View Comparison Operator Text view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ComparisonOperator
KEY Language ddlanguage
ComparisonOperatorText ddtext
_DD07L _DD07L
_Language _Language
@AbapCatalog.sqlViewName: 'APS_CCV_I_CO_T'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Custom CDS View Comparison Operator Text'
@Search.searchable: true
define view I_CustomCDSViewCompOpText
  as select from dd07t
  association [0..1] to I_CustomCDSViewCompOperator as _DD07L    on $projection.ComparisonOperator = _DD07L.ComparisonOperator
  association [0..1] to I_Language                  as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_DD07L'
  key substring(domvalue_l,1,2) as ComparisonOperator,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                as Language,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      ddtext                    as ComparisonOperatorText,

      //Associations

      _DD07L,
      _Language
}
where
      dd07t.domname    = 'APS_CCV_COMP_OPERATOR'
  and dd07t.as4local   = 'A'
  and dd07t.ddlanguage = $session.system_language;