I_Mkt_InteractionDirectionText

DDL: I_MKT_INTERACTIONDIRECTIONTEXT SQL: IMKTIADRCTT Type: view BASIC Package: CUAN_CDS_CONTACT

Marketing: Interaction Direction - Text

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

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMKTIADRCTT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Marketing: Interaction Direction - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ObjectModel.representativeKey InteractionDirection view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY InteractionDirection
InteractionDirectionName ddtext
@AbapCatalog.sqlViewName: 'IMKTIADRCTT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Marketing: Interaction Direction - Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'InteractionDirection' 
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING} 
@ObjectModel.supportedCapabilities: 
   [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]
define view I_Mkt_InteractionDirectionText as select from dd07t {

@Semantics.language
  key cast( ddlanguage as spras ) as Language,
  key cast( substring( domvalue_l, 1, 1 )  as cuan_ce_direction ) as InteractionDirection,
  @Semantics.text: true
  ddtext  as InteractionDirectionName
  
}
where domname = 'CUAN_CE_DIRECTION' and as4local = 'A'