P_EmpProjects

DDL: P_EMPPROJECTS SQL: PEMPPROJECTS Type: view CONSUMPTION

Projects of an Employee

P_EmpProjects is a Consumption CDS View that provides data about "Projects of an Employee" in SAP S/4HANA. It reads from 3 data sources (I_Employee, I_EmployOrgDet, I_CustomerProjectPlanData) and exposes 16 fields with key fields PersonnelNumber, EmploymentInternalID, CustomerProject. It has 2 associations to related views.

Data Sources (3)

SourceAliasJoin Type
I_Employee EE from
I_EmployOrgDet ET left_outer
I_CustomerProjectPlanData plan left_outer

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CustomerProject _proj plan.CustomerProject = _proj.CustomerProject
[0..*] I_CostCenterActivityTypeText _ActivityTypeText $projection.Role = _ActivityTypeText.CostCtrActivityType

Annotations (5)

NameValueLevelField
VDM.private true view
AbapCatalog.sqlViewName PEMPPROJECTS view
VDM.viewType #CONSUMPTION view
EndUserText.label Projects of an Employee view
AccessControl.authorizationCheck #CHECK view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY PersonnelNumber I_Employee PersonnelNumber Personnel No.
KEY EmploymentInternalID I_EmployOrgDet EmploymentInternalID WorkForce Assgmt ID
KEY CustomerProject I_CustomerProjectPlanData CustomerProject Engmnt Project ID
ProjectName _proj CustomerProjectName
Role I_CustomerProjectPlanData CustomerProjectResource
RoleName
ManagerEmployeeExtID
Manager
Customer
CustomerID
AddressID
_StandardAddress
_CustProjResourceText I_CustomerProjectPlanData _CustProjResourceText
_ActivityTypeText _ActivityTypeText
AuthorizationGroup I_Employee AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted I_Employee IsBusinessPurposeCompleted Purpose Completed

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 P_EmpProjects.
-- 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: PEMPPROJECTS

CREATE VIEW P_EmpProjects AS
SELECT
  EE.PersonnelNumber AS PersonnelNumber,
  ET.EmploymentInternalID AS EmploymentInternalID,
  plan.CustomerProject AS CustomerProject,
  _proj.CustomerProjectName AS ProjectName,
  plan.CustomerProjectResource AS Role,
  LPAD('',20,'x') AS RoleName,
  _proj._PersonWorkAgreement._WorkforcePerson.PersonExternalID AS ManagerEmployeeExtID,
  _proj._PersonWorkAgreement._WorkforcePerson.PersonFullName AS Manager,
  _proj._Customer.CustomerName AS Customer,
  _proj._Customer.Customer AS CustomerID,
  '' AS AddressID,
  plan._CustProjResourceText AS _CustProjResourceText,
  EE.AuthorizationGroup AS AuthorizationGroup,
  EE.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted
FROM I_Employee AS EE
LEFT OUTER JOIN I_EmployOrgDet AS ET ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CustomerProjectPlanData AS plan ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CustomerProject AS _proj ON plan.CustomerProject = _proj.CustomerProject  -- association [0..1]
LEFT OUTER JOIN I_CostCenterActivityTypeText AS _ActivityTypeText ON Role = _ActivityTypeText.CostCtrActivityType  -- association [0..*]
;