A_CnsldtnProject
Combined Project
A_CnsldtnProject is a Composite CDS View that provides data about "Combined Project" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnProject) and exposes 6 fields with key field Project. It has 2 associations to related views. Part of development package FIN_CS_MD_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnProject | I_CnsldtnProject | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_CnsldtnProjectT | _CnsldtnProjectT | $projection.Project = _CnsldtnProjectT.Project |
| [0..*] | A_CnsldtnProjectHier | _CnsldtnProjectHier | $projection.MDHierType = _CnsldtnProjectHier.MDHierType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACSPROJECT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Combined Project | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| OData.entitySet.name | Project | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
@AbapCatalog.sqlViewName: 'ACSPROJECT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Combined Project'
@VDM.viewType: #COMPOSITE
@ObjectModel.representativeKey: ['Project']
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #C ,
sizeCategory: #L
}
@OData.entitySet.name: 'Project'
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_CnsldtnProject
as select from I_CnsldtnProject _Source
association [0..*] to A_CnsldtnProjectT as _CnsldtnProjectT on $projection.Project = _CnsldtnProjectT.Project
association [0..*] to A_CnsldtnProjectHier as _CnsldtnProjectHier on $projection.MDHierType = _CnsldtnProjectHier.MDHierType
{
@ObjectModel.text.association: '_CnsldtnProjectT'
key _Source.Project,
@Consumption.hidden: true
cast ( 'CS10' as hrytype ) as MDHierType,
@Consumption.hidden: true
cast ( 'CS10' as hrytype ) as HierarchyType,
_Source.AdditionalMasterDataSource,
/* associations*/
_CnsldtnProjectHier,
_CnsldtnProjectT
}
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