I_PPM_ProjectCostSumToDate
Project Cost To Date
I_PPM_ProjectCostSumToDate is a Composite CDS View that provides data about "Project Cost To Date" in SAP S/4HANA. It reads from 1 data source (I_PPM_ProjectSummaryTask) and exposes 4 fields with key field ProjectInternalID. Part of development package VDM_PPM_OBJECTS_ANALYTICS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PPM_ProjectSummaryTask | Project | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMPRJCTD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| EndUserText.label | Project Cost To Date | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectInternalID | |||
| GlobalCurrency | ||||
| StartDateYearMonth | ||||
| EndDateYearMonth |
@AbapCatalog.sqlViewName: 'IPPMPRJCTD'
/*
This CDS view does not return any Cost Results
*/
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType:{ sizeCategory: #XXL,
dataClass: #MIXED,
serviceQuality: #D }
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@EndUserText.label: 'Project Cost To Date'
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_PPM_ProjectCostSumToDate
as select from I_PPM_ProjectSummaryTask as Project
{
key cast( '00000001' as ps_s4_proj_pspnr ) as ProjectInternalID,
cast( 'EUR' as abap.cuky ) as GlobalCurrency,
cast( '200001' as vdm_yearmonth ) as StartDateYearMonth,
cast( '200001' as vdm_yearmonth ) as EndDateYearMonth
}
where Project.ProjectInternalID = '00000001'
/* CDS view is obsolete */
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