P_EngmntProjActyRsceType

DDL: P_ENGMNTPROJACTYRSCETYPE Type: view COMPOSITE

P_EngmntProjActyRsceType is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_CostCenterActivityType, I_EngmntProjRsceType) and exposes 7 fields with key fields EngagementProjectResourceType, EngagementProjectResource, ResourceType, ActivityType.

Data Sources (2)

SourceAliasJoin Type
I_CostCenterActivityType CCActivityType left_outer
I_EngmntProjRsceType ResourceType from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PPROJACTYRSCTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MASTER view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY EngagementProjectResourceType I_EngmntProjRsceType EngagementProjectResourceType ResourceTypeID
KEY EngagementProjectResource I_EngmntProjRsceType EngagementProjectResource Resource ID
KEY ResourceType I_EngmntProjRsceType EngagementProjectResourceType ResourceTypeID
KEY ActivityType I_EngmntProjRsceType EngagementProjectResource Resource ID
ControllingArea I_CostCenterActivityType ControllingArea Controlling Area
CostCtrActivityTypeQtyUnit I_CostCenterActivityType CostCtrActivityTypeQtyUnit Unit
ValidityEndDate I_CostCenterActivityType ValidityEndDate ValidTo

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_EngmntProjActyRsceType.
-- 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.

CREATE VIEW P_EngmntProjActyRsceType AS
SELECT
  ResourceType.EngagementProjectResourceType AS EngagementProjectResourceType,
  ResourceType.EngagementProjectResource AS EngagementProjectResource,
  ResourceType.EngagementProjectResourceType AS ResourceType,
  ResourceType.EngagementProjectResource AS ActivityType,
  CCActivityType.ControllingArea AS ControllingArea,
  CCActivityType.CostCtrActivityTypeQtyUnit AS CostCtrActivityTypeQtyUnit,
  CCActivityType.ValidityEndDate AS ValidityEndDate
FROM I_EngmntProjRsceType AS ResourceType
LEFT OUTER JOIN I_CostCenterActivityType AS CCActivityType ON /* join condition not captured in parsed metadata */
;