I_SingleResponsibleForProj
Single responsible person for a project
I_SingleResponsibleForProj is a Composite CDS View that provides data about "Single responsible person for a project" in SAP S/4HANA. It reads from 1 data source (P_PPM_SingleResponsibleForObj) and exposes 9 fields with key field ReferencedObjectUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_PPM_SingleResponsibleForObj | P_PPM_SingleResponsibleForObj | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISNGLRSPFRPRJ | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Single responsible person for a project | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ReferencedObjectUUID | ReferencedObjectUUID | ||
| BusinessPartnerUUID | BusinessPartnerUUID | |||
| ProjectRoleUUID | ProjectRoleUUID | |||
| BusinessPartnerFullName | _BusinessUser | PersonFullName | ||
| IsBusinessPurposeCompleted | _BusinessUser | IsBusinessPurposeCompleted | ||
| AuthorizationGroup | _BusinessUser | AuthorizationGroup | ||
| _BusinessUser | _BusinessUser | |||
| _BusinessPartner | _BusinessPartner | |||
| _ProjectRoleName | _ProjectRoleName |
@AbapCatalog.sqlViewName: 'ISNGLRSPFRPRJ'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Single responsible person for a project'
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory : #XL
@ObjectModel.usageType.dataClass: #MASTER
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.buffering.status: #NOT_ALLOWED
@AccessControl.personalData.blocking: #REQUIRED
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_SingleResponsibleForProj
as select from P_PPM_SingleResponsibleForObj
{
key ReferencedObjectUUID,
BusinessPartnerUUID,
ProjectRoleUUID,
_BusinessUser.PersonFullName as BusinessPartnerFullName,
_BusinessUser.IsBusinessPurposeCompleted,
_BusinessUser.AuthorizationGroup,
_BusinessUser,
_BusinessPartner,
_ProjectRoleName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BUSINESSUSERBASIC",
"P_PPM_SINGLERESPONSIBLEFOROBJ"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNER",
"I_BUSINESSUSERBASIC",
"I_PPM_TEXT"
],
"BASE":
[
"P_PPM_SINGLERESPONSIBLEFOROBJ"
],
"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