P_ProjectLastPredictedOn
P_ProjectLastPredictedOn is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (P_ProjPredictionDteCalcintmd) and exposes 2 fields with key field ProjectInternalID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_ProjPredictionDteCalcintmd | P_ProjPredictionDteCalcintmd | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPROJLASTPREDON | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| AbapCatalog.preserveKey | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectInternalID | ProjectInternalID | ||
| CreationDate |
@AbapCatalog.sqlViewName: 'PPROJLASTPREDON'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel: {usageType: {
serviceQuality: #C,
dataClass: #MIXED,
sizeCategory: #S
}
}
@VDM.private: true
@VDM.viewType: #COMPOSITE
@AbapCatalog.preserveKey:true
define view P_ProjectLastPredictedOn
as select from P_ProjPredictionDteCalcintmd
{
key ProjectInternalID,
max(CreationDate) as CreationDate
}
where
PlanningCategory = 'PREDICT01'
group by
ProjectInternalID
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_PROJPREDICTIONDTECALCINTMD"
],
"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