I_ResponsiblePersonForProj

DDL: I_RESPONSIBLEPERSONFORPROJ SQL: IRESPPERSONFRPRJ Type: view BASIC Package: ODATA_PS_PUR_REQORD_MNG

Project Responsible Person

I_ResponsiblePersonForProj is a Basic CDS View that provides data about "Project Responsible Person" in SAP S/4HANA. It reads from 1 data source (proj) and exposes 2 fields with key field ProjectInternalID. Part of development package ODATA_PS_PUR_REQORD_MNG.

Data Sources (1)

SourceAliasJoin Type
proj proj from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IRESPPERSONFRPRJ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
EndUserText.label Project Responsible Person view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProjectInternalID
ResponsiblePersonName proj verna Pers.Resp.Name

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_ResponsiblePersonForProj.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IRESPPERSONFRPRJ

CREATE VIEW I_ResponsiblePersonForProj AS
SELECT
  cast ( proj.pspnr as ps_s4_proj_pspnr preserving type ) AS ProjectInternalID,
  proj.verna AS ResponsiblePersonName
FROM proj
;