C_MDChangeProcessStrategyVH
Master Data Change Process Strategy
C_MDChangeProcessStrategyVH is a Consumption CDS View that provides data about "Master Data Change Process Strategy" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MDChgProcessDuplicateStrategy. It has 1 association to related views. It is exposed through 1 OData service (MASTERDATACHANGEPROCESSSD).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | C_MDChangeProcessStrategyText | _Text | _Text.MDChgProcessDuplicateStrategy = $projection.MDChgProcessDuplicateStrategy |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CMDCHGPROCSTRVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Master Data Change Process Strategy | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #CONSUMPTION | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| MASTERDATACHANGEPROCESSSD | MASTERDATACHANGEPROCESSSB | V2 | C1 | NOT_RELEASED |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MDChgProcessDuplicateStrategy | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'CMDCHGPROCSTRVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Master Data Change Process Strategy'
@ObjectModel: {
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #MIXED }
@VDM.viewType: #CONSUMPTION
define view C_MDChangeProcessStrategyVH
as select from dd07l
association [0..*] to C_MDChangeProcessStrategyText as _Text on _Text.MDChgProcessDuplicateStrategy = $projection.MDChgProcessDuplicateStrategy
{
@ObjectModel.text.association: '_Text'
key cast ( substring( domvalue_l, 1, 1 ) as mdc_duplicate_strategy ) as MDChgProcessDuplicateStrategy,
_Text
}
where
domname = 'MDC_DUPLICATE_STRATEGY'
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