C_ProdnVersMatlPlntVH
Material Plant Value Help
C_ProdnVersMatlPlntVH is a Consumption CDS View that provides data about "Material Plant Value Help" in SAP S/4HANA. It reads from 1 data source (I_MaterialPlant) and exposes 6 fields with key fields Material, Plant. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MaterialPlant | I_MaterialPlant | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Material | _Material | $projection.Material = _Material.Material |
| [0..*] | I_MaterialText | _MaterialText | $projection.Material = _MaterialText.Material |
| [0..1] | I_Plant | _Plant | $projection.Plant = _Plant.Plant |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CPVMATLPLNTVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Material Plant Value Help | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Material | I_MaterialPlant | Material | |
| KEY | Plant | I_MaterialPlant | Plant | |
| _Material | _Material | |||
| _MaterialText | _MaterialText | |||
| PlantName | _Plant | PlantName | ||
| _Plant | _Plant |
@AbapCatalog.sqlViewName: 'CPVMATLPLNTVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Material Plant Value Help'
@ObjectModel.usageType:{ serviceQuality: #C, sizeCategory : #L, dataClass: #MIXED }
@ObjectModel.representativeKey: [ 'Material', 'Plant']
@ObjectModel.semanticKey: ['Material', 'Plant']
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
define view C_ProdnVersMatlPlntVH as select from I_MaterialPlant
association [0..1] to I_Material as _Material on $projection.Material = _Material.Material
association [0..*] to I_MaterialText as _MaterialText on $projection.Material = _MaterialText.Material
association [0..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
{
@Search:{defaultSearchElement: true, fuzzinessThreshold: 0.9, ranking: #HIGH}
@ObjectModel: {foreignKey.association: '_Material', text.association: '_MaterialText'}
key I_MaterialPlant.Material,
@Search:{defaultSearchElement: true, fuzzinessThreshold: 0.9, ranking: #LOW}
@ObjectModel:{foreignKey.association: '_Plant', text.element: [ 'PlantName' ]}
key I_MaterialPlant.Plant,
_Material,
_MaterialText,
@Semantics.text: true
_Plant.PlantName,
_Plant
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MATERIALPLANT",
"I_PLANT"
],
"ASSOCIATED":
[
"I_MATERIAL",
"I_MATERIALTEXT",
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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