P_Matval_Manage_Cost_Max_Pre
P_Matval_Manage_Cost_Max_Pre is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (keko, mbew) and exposes 7 fields with key fields bzobj, kalnr, kalka, kadky, tvers.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PMATVALMGMCOSTMP | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
@AbapCatalog.sqlViewName: 'PMATVALMGMCOSTMP'
@VDM.private: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_Matval_Manage_Cost_Max_Pre
as select from keko as k
inner join mbew as m on k.kalnr = m.kalnr
or k.kalnr = m.kaln1
{
key k.bzobj,
key k.kalnr,
key k.kalka,
key k.kadky,
key k.tvers,
key k.bwvar,
key k.kkzma,
concat( bdatj, poper ) as keko_fiscyearper,
concat( m.lfgja, concat( '0', m.lfmon ) ) as mbew_fiscyearper
}
where
bzobj = '0'
and(
feh_sta = 'FR'
or feh_sta = 'FF'
)
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"KEKO",
"MBEW"
],
"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