I_RtlPromnProcessingStatusT

DDL: I_RTLPROMNPROCESSINGSTATUST Type: view_entity BASIC

Retail Promotion Processing Status Text

I_RtlPromnProcessingStatusT is a Basic CDS View that provides data about "Retail Promotion Processing Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields PromotionProcessingStatus, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_RtlPromnProcessingStatus _RtlPromnProcessingStatus $projection.PromotionProcessingStatus = _RtlPromnProcessingStatus.PromotionProcessingStatus
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
Analytics.technicalName IRTLPROMNPROCSTT view
EndUserText.label Retail Promotion Processing Status Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey PromotionProcessingStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PromotionProcessingStatus
KEY Language
PromnProcessingStatusName ddtext
_RtlPromnProcessingStatus _RtlPromnProcessingStatus
_Language _Language
@Analytics.technicalName: 'IRTLPROMNPROCSTT'
@EndUserText.label: 'Retail Promotion Processing Status Text'

@AccessControl.authorizationCheck:  #NOT_REQUIRED
@Search.searchable: true

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

/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ] }*/
define view entity I_RtlPromnProcessingStatusT
  as select from dd07t

  association [1..1] to I_RtlPromnProcessingStatus as _RtlPromnProcessingStatus on $projection.PromotionProcessingStatus = _RtlPromnProcessingStatus.PromotionProcessingStatus
  association [1..1] to I_Language                 as _Language                 on $projection.Language = _Language.Language
{

      @ObjectModel.foreignKey.association: '_RtlPromnProcessingStatus'
  key cast(substring(domvalue_l, 1, 1) as w_akvst preserving type)
        as  PromotionProcessingStatus,


      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast( ddlanguage as langu preserving type )
        as  Language,

      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
      ddtext
        as  PromnProcessingStatusName,

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _RtlPromnProcessingStatus,
      _Language
}

where
      domname  = 'AKVST'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RTLPROMNPROCESSINGSTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/