A_DevProjectElementResponsible
Development Project Element Responsible
A_DevProjectElementResponsible is a Composite CDS View that provides data about "Development Project Element Responsible" in SAP S/4HANA. It reads from 1 data source (R_DevProjResponsibleTP) and exposes 12 fields with key fields BusinessPartnerUUID, ProjectUUID, DevProjElmntUUID. It has 3 associations to related views. It is exposed through 1 OData service (API_DEVELOPMENTPROJECT).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_DevProjResponsibleTP | R_DevProjResponsibleTP | projection |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_DevProjRoleStaffing | _Staffing | $projection.BusinessPartnerUUID = _Staffing.BusinessPartnerUUID and $projection.ProjectUUID = _Staffing.ProjectUUID |
| [1..*] | A_DevelopmentProjectElement | _ProjectElement | $projection.DevProjElmntUUID = _ProjectElement.DevProjElmntUUID |
| [1..1] | A_DevelopmentProjectRole | _Role | $projection.ProjectUUID = _Role.ProjectUUID and $projection.ProjectRoleUUID = _Role.ProjectRoleUUID |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Development Project Element Responsible | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| OData.entityType.name | DevProjectElementResponsible_Type | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_DEVELOPMENTPROJECT | API_DEVELOPMENTPROJECT | V4 | C2 | C1 |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartnerUUID | BusinessPartnerUUID | ||
| KEY | ProjectUUID | ProjectUUID | ||
| KEY | DevProjElmntUUID | DevProjElmntUUID | ||
| ProjectRoleUUID | ProjectRoleUUID | |||
| BusinessPartner | BusinessPartner | |||
| ProjectRoleName | ProjectRoleName | |||
| DevProjElmntRespObjType | DevProjElmntRespObjType | |||
| BusinessPartnerIsBlocked | BusinessPartnerIsBlocked | |||
| IsBusinessPurposeCompleted | IsBusinessPurposeCompleted | |||
| _Staffing | _Staffing | |||
| _ProjectElement | _ProjectElement | |||
| _Role | _Role |
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@VDM.viewType: #COMPOSITE
@VDM.usage.type: [#TRANSACTIONAL_PROCESSING_SERVICE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Development Project Element Responsible'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #D,
sizeCategory: #L,
dataClass: #TRANSACTIONAL
}
@OData.entityType.name : 'DevProjectElementResponsible_Type'
define view entity A_DevProjectElementResponsible
as projection on R_DevProjResponsibleTP as _ResponsibleTP
association [0..*] to A_DevProjRoleStaffing as _Staffing on $projection.BusinessPartnerUUID = _Staffing.BusinessPartnerUUID
and $projection.ProjectUUID = _Staffing.ProjectUUID
association [1..*] to A_DevelopmentProjectElement as _ProjectElement on $projection.DevProjElmntUUID = _ProjectElement.DevProjElmntUUID
association [1..1] to A_DevelopmentProjectRole as _Role on $projection.ProjectUUID = _Role.ProjectUUID
and $projection.ProjectRoleUUID = _Role.ProjectRoleUUID
{
key BusinessPartnerUUID,
key ProjectUUID,
key DevProjElmntUUID,
ProjectRoleUUID,
BusinessPartner,
ProjectRoleName,
@ObjectModel.sapObjectNodeTypeReference: 'DevelopmentProjectObjectType'
DevProjElmntRespObjType,
BusinessPartnerIsBlocked,
IsBusinessPurposeCompleted,
_Staffing,
_ProjectElement,
_Role
}
where
DevProjElmntRespObjType != 'DPO'
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