P_Matval_Manage_Max_Hdpp
P_Matval_Manage_Max_Hdpp is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (ckmlhd, ckmlpp) and exposes 4 fields with key fields ValuationArea, CostEstimate.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | PMATVALMGMPPHD | view |
@VDM.private: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PMATVALMGMPPHD'
define view P_Matval_Manage_Max_Hdpp
as select from ckmlhd as hd
inner join ckmlpp as pp on hd.kalnr = pp.kalnr
{
key hd.bwkey as ValuationArea,
key pp.kalnr as CostEstimate,
concat(pp.bdatj,pp.poper) as FiscalYearPeriod,
pp.sdm_version
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CKMLHD",
"CKMLPP"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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