P_ProjectRespPerson
Project Responsible Person
P_ProjectRespPerson is a Composite CDS View that provides data about "Project Responsible Person" in SAP S/4HANA. It reads from 1 data source (I_Project) and exposes 8 fields with key field ResponsiblePerson. Part of development package FINS_REV_REC_PECRUN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Project | Project | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #ORGANIZATIONAL | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Project Responsible Person | view |
@VDM.private: true
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #ORGANIZATIONAL
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Project Responsible Person'
define view entity P_ProjectRespPerson
as select from I_Project as Project
left outer to one join I_PersonWorkAgreement_1 as PersonWorkAgreement on Project.ResponsiblePerson = PersonWorkAgreement.PersonWorkAgreement
{
key Project.ResponsiblePerson,
PersonWorkAgreement._WorkforcePerson.PersonExternalID as Employee,
cast ( Project.ResponsiblePersonName as bu_name1tx ) as EmployeeFullName,
PersonWorkAgreement._WorkforcePerson._BusinessUser.UserID as ProjManagerUserID,
Project.ResponsiblePerson as ProjectResponsiblePerson,
//Access control fields
Project._ResponsiblePerson.ResponsiblePersonIsBlocked as IsBusinessPurposeCompleted,
cast ( ' ' as bu_augrp preserving type ) as AuthorizationGroup,
//cast ( '' as bu_xpcpt preserving type ) as IsBusinessPurposeCompleted,
Project._ResponsiblePerson
}
where
Project.ResponsiblePerson <> '00000000'
and Project.ResponsiblePerson is not null
group by
Project.ResponsiblePerson,
PersonWorkAgreement._WorkforcePerson.PersonExternalID,
Project.ResponsiblePersonName,
PersonWorkAgreement._WorkforcePerson.PersonFullName,
PersonWorkAgreement._WorkforcePerson._BusinessUser.UserID,
//Access control fields
Project._ResponsiblePerson.ResponsiblePersonIsBlocked;
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