C_CnsldtnProject
Consolidation Project
C_CnsldtnProject is a Consumption CDS View that provides data about "Consolidation Project" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnProject) and exposes 3 fields with key field Project. Part of development package FIN_CS_MD_PROJECT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnProject | _Source | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| UI.textArrangement | #TEXT_LAST | view | |
| EndUserText.label | Consolidation Project | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Project | I_CnsldtnProject | Project | |
| CnsldtnIsAdditionalMasterData | I_CnsldtnProject | CnsldtnIsAdditionalMasterData | ||
| ProjectDescription |
@AccessControl.authorizationCheck: #MANDATORY
@Metadata:{
ignorePropagatedAnnotations: true
}
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #C,
sizeCategory: #L
}
}
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
@UI.textArrangement: #TEXT_LAST
@EndUserText.label: 'Consolidation Project'
define view entity C_CnsldtnProject
as select from I_CnsldtnProject as _Source
{
@Search:{
defaultSearchElement: true,
ranking: #HIGH,
fuzzinessThreshold: 0.8
}
@Consumption.valueHelpDefinition: [{
entity:{
name:'I_CnsldtnProjectVH',
element:'Project'
}
}]
@UI: {
lineItem: [{
position: 10
}],
selectionField: [{
position: 1
}]
}
@UI.textArrangement: #TEXT_LAST
key _Source.Project,
@Consumption.filter.selectionType: #SINGLE
@Consumption.filter.multipleSelections: false
@UI: {
lineItem: [{
position: 30
}]
}
_Source.CnsldtnIsAdditionalMasterData,
@Search:{
defaultSearchElement: true,
ranking: #LOW,
fuzzinessThreshold: 0.7
}
@UI: {
lineItem: [{
position: 20
}]
}
_Source._Text[1: Language=$session.system_language].AdditionalMasterDataText as ProjectDescription
}
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