P_MRPPlantCurrency
P_MRPPlantCurrency is a Basic CDS View in SAP S/4HANA. It reads from 4 data sources (t001, t001k, t001w, tcurx) and exposes 5 fields with key field Plant.
Data Sources (4)
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PMRPPLNTCURR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
@AbapCatalog.sqlViewName: 'PMRPPLNTCURR'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private: true
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #M, dataClass: #MASTER}
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_MRPPlantCurrency as select from t001w
inner join t001k on t001w.bwkey = t001k.bwkey
inner join t001 on t001.bukrs = t001k.bukrs
left outer join tcurx as tcurx
on tcurx.currkey = t001.waers
{
key t001w.werks as Plant,
t001w.bwkey as ValuationArea,
t001.bukrs as CompanyCode,
t001.waers as CompanyCurrency,
tcurx.currdec as Decimals
}
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