I_ProdCmplncTaskTypeText

DDL: I_PRODCMPLNCTASKTYPETEXT Type: view BASIC

Text view for Prod Cmplnc Task Type Text

I_ProdCmplncTaskTypeText is a Basic CDS View that provides data about "Text view for Prod Cmplnc Task Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, ProdCmplncTaskType. 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 (14)

NameValueLevelField
AbapCatalog.sqlViewName IPCTTYPETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text view for Prod Cmplnc Task Type Text view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.representativeKey ProdCmplncTaskType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY ProdCmplncTaskType
DomainValue dd07t domvalue_l
ProdCmplncTaskTypeText
_Language _Language
_ProdCmplncTaskType _ProdCmplncTaskType
@AbapCatalog: {
  sqlViewName: 'IPCTTYPETXT',
  compiler.compareFilter: true,
  preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Text view for Prod Cmplnc Task Type Text'
@Metadata.ignorePropagatedAnnotations: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
  representativeKey: 'ProdCmplncTaskType',
  dataCategory: #TEXT,
  usageType:{ serviceQuality: #C,
              sizeCategory:   #S,
              dataClass:      #META
            }
}
@Search.searchable: true
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_ProdCmplncTaskTypeText
  as select from dd07t
  association        to parent I_ProdCmplncTaskType as _ProdCmplncTaskType on $projection.ProdCmplncTaskType = _ProdCmplncTaskType.ProdCmplncTaskType
  association [0..1] to I_Language                  as _Language           on $projection.Language = _Language.Language
{
      /****  Keys  ****/
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast(ddlanguage as spras preserving type )                    as Language,

      @ObjectModel.foreignKey.association: '_ProdCmplncTaskType'
      @ObjectModel.text.element:['ProdCmplncTaskTypeText']
  key cast(domvalue_l as ehfnd_pct_task_type)                       as ProdCmplncTaskType,


      /****  Content  ****/
      @Consumption.hidden: true
      dd07t.domvalue_l                                              as DomainValue,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      cast(ddtext   as   ehfnd_pct_task_type_text preserving type ) as ProdCmplncTaskTypeText, 


      /****  Associations  ****/
      _Language,
      _ProdCmplncTaskType
}
where
      dd07t.domname  = 'EHFND_PCT_TASK_TYPE'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000'