C_EngmntProjectActivityTypeVH

DDL: C_ENGMNTPROJECTACTIVITYTYPEVH Type: view_entity CONSUMPTION Package: CPD_CDS

Engagement Project Activity Type

C_EngmntProjectActivityTypeVH is a Consumption CDS View that provides data about "Engagement Project Activity Type" in SAP S/4HANA. It reads from 1 data source (I_EngmntProjectActivityType) and exposes 6 fields with key fields EngagementProjectResourceType, EngagementProjectResource, ValidityEndDate. Part of development package CPD_CDS.

Data Sources (1)

SourceAliasJoin Type
I_EngmntProjectActivityType I_EngmntProjectActivityType from

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Engagement Project Activity Type view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey EngagementProjectResource view
Search.searchable true view
Consumption.ranked true view
Consumption.valueHelpDefault.fetchValues #AUTOMATICALLY_WHEN_DISPLAYED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY EngagementProjectResourceType EngagementProjectResourceType Resource Type ID
KEY EngagementProjectResource EngagementProjectResource Resource ID
KEY ValidityEndDate ValidityEndDate Validity End Date
ValidityStartDate ValidityStartDate Validity Start Date
ControllingArea ControllingArea Controlling Area
CostCtrActivityTypeQtyUnit CostCtrActivityTypeQtyUnit Activity Unit

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 C_EngmntProjectActivityTypeVH.
-- 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 C_EngmntProjectActivityTypeVH AS
SELECT
  EngagementProjectResourceType,
  EngagementProjectResource,
  ValidityEndDate,
  ValidityStartDate,
  ControllingArea,
  CostCtrActivityTypeQtyUnit
FROM I_EngmntProjectActivityType
;