I_MKT_CommDirectionText

DDL: I_MKT_COMMDIRECTIONTEXT SQL: IMKTCOMMDRCTNT Type: view BASIC Package: CUAN_CDS_MARKETING_PERMISSION

Mktg: Communication Direction - Text

I_MKT_CommDirectionText is a Basic CDS View that provides data about "Mktg: Communication Direction - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields CommunicationDirection, Language. Part of development package CUAN_CDS_MARKETING_PERMISSION.

Data Sources (1)

SourceAliasJoin Type
dd07t CommunicationDirectionText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMKTCOMMDRCTNT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CommunicationDirection view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
EndUserText.label Mktg: Communication Direction - Text view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CommunicationDirection
KEY Language dd07t ddlanguage
CommunicationDirectionName
@AbapCatalog.sqlViewName: 'IMKTCOMMDRCTNT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
    dataCategory: #TEXT,
    representativeKey: 'CommunicationDirection',
    usageType: {
        dataClass: #META,
        serviceQuality: #B,
        sizeCategory: #S
    }
}
@Analytics.dataExtraction : {enabled:true}
@VDM.viewType: #BASIC
@EndUserText.label: 'Mktg: Communication Direction - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT ]

define view I_MKT_CommDirectionText
  as select from dd07t as CommunicationDirectionText
{

  key cast(CommunicationDirectionText.domvalue_l as hpa_comm_direction)                    as CommunicationDirection,

      @Semantics.language: true
  key CommunicationDirectionText.ddlanguage                                                as Language,

      @Semantics.text: true
      cast(CommunicationDirectionText.ddtext as hpa_comm_direction_text preserving type)   as CommunicationDirectionName

}

where
      CommunicationDirectionText.domname  = 'HPA_COMM_DIRECTION'
  and CommunicationDirectionText.as4local = 'A'