C_MKT_CalculationSourceVH

DDL: C_MKT_CALCULATIONSOURCEVH SQL: CMKTCALCSRCVH Type: view CONSUMPTION Package: CUAN_CDS_CONTACT

Marketing: Calculation Source Value Help

C_MKT_CalculationSourceVH is a Consumption CDS View that provides data about "Marketing: Calculation Source Value Help" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field MktgTxnmCalculationSourceKey. Part of development package CUAN_CDS_CONTACT.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CMKTCALCSRCVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Marketing: Calculation Source Value Help view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MktgTxnmCalculationSourceKey Calculation Source
MktgTxnmCalculationSourceName ddtext Calculation Source Name
@AbapCatalog.sqlViewName: 'CMKTCALCSRCVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Marketing: Calculation Source Value Help'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@VDM.viewType:#CONSUMPTION 
@ObjectModel.dataCategory:#VALUE_HELP 
@ClientHandling.algorithm: #SESSION_VARIABLE

define view C_MKT_CalculationSourceVH as select from dd07t {
  @EndUserText.label: 'Calculation Source'
  key cast(domvalue_l as cuan_txnm_calc_source) as MktgTxnmCalculationSourceKey, //cast is unnessecary, but required to avoid ATC Issues 

  @EndUserText.label: 'Calculation Source Name'
  @Semantics.text: true
  ddtext as MktgTxnmCalculationSourceName
} where dd07t.as4local = 'A' and dd07t.ddlanguage = $session.system_language and dd07t.domname = 'CUAN_TXNM_CALC_SOURCE'