I_PhysInvtryMatValnTypeVH
Material Valuation Type
I_PhysInvtryMatValnTypeVH is a Composite CDS View that provides data about "Material Valuation Type" in SAP S/4HANA. It reads from 1 data source (I_Plant) and exposes 4 fields with key fields InventoryValuationType, Material, ValuationArea, Plant.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Plant | _Plant | inner |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Material Valuation Type | view | |
| AbapCatalog.dataMaintenance | #RESTRICTED | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.representativeKey | InventoryValuationType | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #NONE | view | |
| Search.searchable | true | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Consumption.ranked | true | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@EndUserText.label: 'Material Valuation Type'
@AbapCatalog: { dataMaintenance: #RESTRICTED }
@ObjectModel: {
usageType:{
sizeCategory: #M,
serviceQuality: #C,
dataClass: #MASTER
},
dataCategory: #VALUE_HELP,
modelingPattern: #ANALYTICAL_DIMENSION,
representativeKey: 'InventoryValuationType',
supportedCapabilities: [#VALUE_HELP_PROVIDER,#ANALYTICAL_DIMENSION] //PAT2
}
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #NONE
}
@Search.searchable: true
@Metadata: {
allowExtensions: true,
ignorePropagatedAnnotations: true
}
@AccessControl: {
authorizationCheck: #MANDATORY,
personalData.blocking: #NOT_REQUIRED
}
@Consumption.ranked: true
define view entity I_PhysInvtryMatValnTypeVH
as select distinct from I_MaterialValuation as _Matval
inner join I_Plant as _Plant on _Matval.ValuationArea = _Plant.ValuationArea
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key _Matval.InventoryValuationType,
key _Matval.Material,
@UI.hidden: true
key _Matval.ValuationArea,
key _Plant.Plant
}
where _Matval.InventoryValuationType <> ''
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