C_ProjectForNetworkGraph
Project for Network Graph
C_ProjectForNetworkGraph is a Consumption CDS View that provides data about "Project for Network Graph" in SAP S/4HANA. It reads from 1 data source (I_ProjectByInternalKey) and exposes 11 fields with key field ProjectInternalID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProjectByInternalKey | Project | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ControllingArea | _ControllingArea | $projection.ControllingArea = _ControllingArea.ControllingArea |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CPROJFORNTWKGR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Project for Network Graph | view | |
| ObjectModel.representativeKey | ProjectInternalID | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectInternalID | ProjectInternalID | ||
| ProjectExternalID | ProjectWithCodingMask | |||
| ResponsiblePerson | ResponsiblePerson | |||
| ResponsiblePersonName | ResponsiblePersonName | Person Responsible Name | ||
| ProfitCenter | ProfitCenter | |||
| ControllingArea | ControllingArea | |||
| PlannedStartDate | PlannedStartDate | |||
| PlannedEndDate | PlannedEndDate | |||
| IsMarkedForDeletion | IsMarkedForDeletion | |||
| ControllingAreaName | _ControllingArea | ControllingAreaName | ||
| _ControllingArea | _ControllingArea |
@AbapCatalog.sqlViewName: 'CPROJFORNTWKGR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Project for Network Graph'
@ObjectModel.representativeKey: 'ProjectInternalID'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MIXED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #CONSUMPTION
define view C_ProjectForNetworkGraph
as select from I_ProjectByInternalKey as Project
association [1..1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea
{
key ProjectInternalID,
ProjectWithCodingMask as ProjectExternalID,
case
when Project._ProjectShortText.LanguageBasedShortText is not initial
then Project._ProjectShortText.LanguageBasedShortText
else ProjectDescription
end as ProjectDescription,
//ProjectDescription,
ResponsiblePerson,
@EndUserText.label: 'Person Responsible Name'
ResponsiblePersonName,
ProfitCenter,
ControllingArea,
PlannedStartDate,
PlannedEndDate,
IsMarkedForDeletion,
_ControllingArea.ControllingAreaName as ControllingAreaName,
//associacions
_ControllingArea
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CONTROLLINGAREA",
"I_PROJECTBYINTERNALKEY",
"I_PROJECTOBJECTSHORTTEXT"
],
"ASSOCIATED":
[
"I_CONTROLLINGAREA"
],
"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