C_MKT_CalculationSourceVH
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA