e_mrp_currency
e_mrp_currency is a CDS View in SAP S/4HANA. It reads from 3 data sources (t001, t001k, t001w) and exposes 2 fields.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | V_MRP_CURRENCY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #P | view |
@AbapCatalog.sqlViewName: 'V_MRP_CURRENCY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {serviceQuality: #P} /*sizeCategory: #S, dataClass: #MIXED*/
define view e_mrp_currency as
select from t001w as t001w
inner join t001k as t001k
on t001k.mandt = t001w.mandt and
t001k.bwkey = t001w.bwkey
inner join t001 as t001
on t001.mandt = t001k.mandt and
t001.bukrs = t001k.bukrs
left outer to one join tcurx as tcurx
on tcurx.currkey = t001.waers
{ t001w.werks as plant,
t001w.bwkey as valuationarea,
t001k.bukrs as companycode,
t001.waers as companycodecurrency,
tcurx.currdec as targetcurrencydecimals
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T001",
"T001K",
"T001W",
"TCURX"
],
"ASSOCIATED":
[],
"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