I_CAWorklistPriorityText

DDL: I_CAWORKLISTPRIORITYTEXT SQL: ICAWRKLSTPRIO Type: view BASIC

Text Association for Priority

I_CAWorklistPriorityText is a Basic CDS View that provides data about "Text Association for Priority" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, CAWorklistPriority. 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 (10)

NameValueLevelField
AbapCatalog.sqlViewName ICAWRKLSTPRIO view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text Association for Priority view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY CAWorklistPriority
CAWorklistPriorityText ddtext
_Language _Language
@AbapCatalog.sqlViewName: 'ICAWRKLSTPRIO'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Text Association for Priority'
define view I_CAWorklistPriorityText as select from dd07t 
    association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  //dd07t

  @Semantics.language
  @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage as Language,
  key cast(domvalue_l as prioy_kk) as CAWorklistPriority,
  @Semantics.text
  ddtext    as CAWorklistPriorityText,
  _Language
    
    
}
where domname = 'PRIOY_KK'
and as4local = 'A'