I_SingleResponsibleForProj

DDL: I_SINGLERESPONSIBLEFORPROJ SQL: ISNGLRSPFRPRJ Type: view COMPOSITE

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)

SourceAliasJoin Type
P_PPM_SingleResponsibleForObj P_PPM_SingleResponsibleForObj from

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/