I_DevProjectElementType
Development Project Element
I_DevProjectElementType is a Basic CDS View that provides data about "Development Project Element" in SAP S/4HANA. It reads from 5 data sources (dpr_clh_type, dpr_clh_type, dpr_pha_type, dpr_tsk_type, dpr_tsk_type) and exposes 17 fields with key fields DevProjElmntObjectType, DevProjElmntType, DevProjElmntType, DevProjElmntType, DevProjElmntType. It has 2 associations to related views.
Data Sources (5)
| Source | Alias | Join Type |
|---|---|---|
| dpr_clh_type | CPO | union_all |
| dpr_clh_type | CTO | union_all |
| dpr_pha_type | PHA | union_all |
| dpr_tsk_type | TPO | union_all |
| dpr_tsk_type | TTO | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_DevelopmentProjectObjectType | _ProjObjectType | $projection.DevProjElmntObjectType = _ProjObjectType.DevelopmentProjectObjectType |
| [0..1] | I_DevProjectElementTypeText | _Text | $projection.DevProjElmntObjectType = _Text.DevProjElmntObjectType and $projection.DevProjElmntType = _Text.DevProjElmntType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Development Project Element | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | DevProjElmntType | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.sapObjectNodeType.name | DevelopmentProjectElementType | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view |
Fields (17)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DevProjElmntObjectType | Project Element Object Type | ||
| KEY | DevProjElmntType | dpr_tsk_type | tsk_type | |
| DevProjectElementTypeIsActive | active | |||
| _ProjObjectType | _ProjObjectType | |||
| KEY | DevProjElmntType | dpr_tsk_type | tsk_type | |
| DevProjectElementTypeIsActive | active | |||
| _ProjObjectType | _ProjObjectType | |||
| KEY | DevProjElmntType | dpr_pha_type | pha_type | |
| DevProjectElementTypeIsActive | active | |||
| _ProjObjectType | _ProjObjectType | |||
| KEY | DevProjElmntType | dpr_clh_type | clh_type | |
| DevProjectElementTypeIsActive | active | |||
| _ProjObjectType | _ProjObjectType | |||
| KEY | DevProjElmntType | dpr_clh_type | clh_type | |
| DevProjectElementTypeIsActive | active | |||
| _ProjObjectType | _ProjObjectType | |||
| _Text | _Text |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Development Project Element'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
representativeKey: 'DevProjElmntType',
resultSet.sizeCategory: #XS,
supportedCapabilities: [ #SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#SEARCHABLE_ENTITY ],
modelingPattern: #NONE,
usageType: {
serviceQuality: #B,
dataClass: #CUSTOMIZING,
sizeCategory: #S
},
sapObjectNodeType.name:'DevelopmentProjectElementType'
}
@Search.searchable: true
@VDM: {
lifecycle.contract.type: #PUBLIC_LOCAL_API,
viewType: #BASIC
}
define view entity I_DevProjectElementType
as select from dpr_tsk_type as TTO
association [0..1] to I_DevelopmentProjectObjectType as _ProjObjectType on $projection.DevProjElmntObjectType = _ProjObjectType.DevelopmentProjectObjectType
association [0..1] to I_DevProjectElementTypeText as _Text on $projection.DevProjElmntObjectType = _Text.DevProjElmntObjectType
and $projection.DevProjElmntType = _Text.DevProjElmntType
{
@EndUserText.label: 'Project Element Object Type'
@ObjectModel.foreignKey.association: '_ProjObjectType'
key 'TTO' as DevProjElmntObjectType,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
key TTO.tsk_type as DevProjElmntType,
@Semantics.booleanIndicator: true
active as DevProjectElementTypeIsActive,
_ProjObjectType,
_Text
}
union all
select from dpr_tsk_type as TPO
association [0..1] to I_DevelopmentProjectObjectType as _ProjObjectType on $projection.DevProjElmntObjectType = _ProjObjectType.DevelopmentProjectObjectType
association [0..1] to I_DevProjectElementTypeText as _Text on $projection.DevProjElmntObjectType = _Text.DevProjElmntObjectType
and $projection.DevProjElmntType = _Text.DevProjElmntType
{
key 'TPO' as DevProjElmntObjectType,
key TPO.tsk_type as DevProjElmntType,
active as DevProjectElementTypeIsActive,
_ProjObjectType,
_Text
}
union all
select from dpr_pha_type as PHA
association [0..1] to I_DevelopmentProjectObjectType as _ProjObjectType on $projection.DevProjElmntObjectType = _ProjObjectType.DevelopmentProjectObjectType
association [0..1] to I_DevProjectElementTypeText as _Text on $projection.DevProjElmntObjectType = _Text.DevProjElmntObjectType
and $projection.DevProjElmntType = _Text.DevProjElmntType
{
key 'PPO' as DevProjElmntObjectType,
key PHA.pha_type as DevProjElmntType,
active as DevProjectElementTypeIsActive,
_ProjObjectType,
_Text
}
union all
select from dpr_clh_type as CPO
association [0..1] to I_DevelopmentProjectObjectType as _ProjObjectType on $projection.DevProjElmntObjectType = _ProjObjectType.DevelopmentProjectObjectType
association [0..1] to I_DevProjectElementTypeText as _Text on $projection.DevProjElmntObjectType = _Text.DevProjElmntObjectType
and $projection.DevProjElmntType = _Text.DevProjElmntType
{
key 'CPO' as DevProjElmntObjectType,
key CPO.clh_type as DevProjElmntType,
active as DevProjectElementTypeIsActive,
_ProjObjectType,
_Text
}
union all
select from dpr_clh_type as CTO
association [0..1] to I_DevelopmentProjectObjectType as _ProjObjectType on $projection.DevProjElmntObjectType = _ProjObjectType.DevelopmentProjectObjectType
association [0..1] to I_DevProjectElementTypeText as _Text on $projection.DevProjElmntObjectType = _Text.DevProjElmntObjectType
and $projection.DevProjElmntType = _Text.DevProjElmntType
{
key 'CTO' as DevProjElmntObjectType,
key CTO.clh_type as DevProjElmntType,
active as DevProjectElementTypeIsActive,
_ProjObjectType,
_Text
}
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