C_DmndDrivenVariabilityVH
Demand Driven Replenishment Variability
C_DmndDrivenVariabilityVH is a Consumption CDS View that provides data about "Demand Driven Replenishment Variability" in SAP S/4HANA. It reads from 1 data source (I_VariabilityText) and exposes 2 fields with key field VariabilityIndicator. Part of development package ODATA_PP_DD_REPL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_VariabilityText | XYZIndicator | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| EndUserText.label | Demand Driven Replenishment Variability | view | |
| ObjectModel.representativeKey | VariabilityIndicator | view | |
| Analytics.technicalName | CDDVARIABILITYVH | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | VariabilityIndicator | I_VariabilityText | VariabilityCode | |
| VariabilityDescription |
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@EndUserText.label: 'Demand Driven Replenishment Variability'
//@Search.searchable: true
@ObjectModel.semanticKey: [ 'VariabilityIndicator' ]
@ObjectModel.representativeKey: 'VariabilityIndicator'
@Analytics.technicalName: 'CDDVARIABILITYVH'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.dataClass: #MASTER
define view entity C_DmndDrivenVariabilityVH
as select from I_VariabilityText as XYZIndicator
{
// @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
@ObjectModel.text.element: ['VariabilityDescription']
key XYZIndicator.VariabilityCode as VariabilityIndicator,
concat(concat(concat(XYZIndicator.VariabilityCode,' ('),XYZIndicator.VariabilityDescription), ')') as VariabilityDescription
}
where
XYZIndicator.Language = $session.system_language
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