P_MPE_MaterialMrpAreaStock
Stock data for Material Plant MrpArea
P_MPE_MaterialMrpAreaStock is a Consumption CDS View that provides data about "Stock data for Material Plant MrpArea" in SAP S/4HANA. It reads from 1 data source (matdoc) and exposes 5 fields with key fields matnr, werks, berid.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| matdoc | mat | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.private | true | view | |
| EndUserText.label | Stock data for Material Plant MrpArea | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@VDM.private: true
@EndUserText.label: 'Stock data for Material Plant MrpArea'
@Metadata.ignorePropagatedAnnotations: true
define view entity P_MPE_MaterialMrpAreaStock as select from matdoc as mat
{
key mat.matbf as matnr,
key mat.werks as werks,
key mat.berid as berid,
@Semantics.quantity.unitOfMeasure: 'BaseUnit'
cast(sum(mat.stock_qty) as nsdm_stock_qty) as VltdUnrestrictedUseStkQty,
mat.meins as BaseUnit
}
group by
mat.matbf,
mat.werks,
mat.berid,
mat.meins
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