C_MatlDocumentValuationTypeVH
Material Valuation Types for Reservation
C_MatlDocumentValuationTypeVH is a Consumption CDS View that provides data about "Material Valuation Types for Reservation" in SAP S/4HANA. It reads from 1 data source (I_ProductValuationBasic) and exposes 4 fields with key fields InventoryValuationType, ValuationArea, Material. Part of development package MM_IM_RAP_MATDOC_UI.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProductValuationBasic | I_ProductValuationBasic | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Material Valuation Types for Reservation | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | InventoryValuationType | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InventoryValuationType | ValuationType | ||
| KEY | ValuationArea | ValuationArea | ||
| KEY | Material | |||
| _InventoryValuationType | _InventoryValuationType |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Valuation Types for Reservation'
@ObjectModel: {
usageType: {
sizeCategory: #XL,
serviceQuality: #C,
dataClass:#MIXED
},
dataCategory: #VALUE_HELP,
semanticKey: ['InventoryValuationType'],
representativeKey: 'InventoryValuationType'
}
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@Consumption.ranked: true
define view entity C_MatlDocumentValuationTypeVH as
select from I_ProductValuationBasic {
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
@Consumption.valueHelpDefault.binding.usage:#FILTER_AND_RESULT
key ValuationType as InventoryValuationType,
@Consumption.valueHelpDefault.binding.usage:#FILTER_AND_RESULT
key ValuationArea,
@Consumption.valueHelpDefault.binding.usage:#FILTER_AND_RESULT
key cast (Product as matnr preserving type ) as Material,
@Consumption.hidden: true
_InventoryValuationType
}
where ValuationType is not initial
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