P_EmpProjects
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)
| Source | Alias | Join Type |
|---|---|---|
| I_Employee | EE | from |
| I_EmployOrgDet | ET | left_outer |
| I_CustomerProjectPlanData | plan | left_outer |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CustomerProject | _proj | plan.CustomerProject = _proj.CustomerProject |
| [0..*] | I_CostCenterActivityTypeText | _ActivityTypeText | $projection.Role = _ActivityTypeText.CostCtrActivityType |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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..*]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA