I_EngagementProjectVH

DDL: I_ENGAGEMENTPROJECTVH SQL: IENGMNTPROJVH Type: view COMPOSITE

Engagement Project Value Help

I_EngagementProjectVH is a Composite CDS View that provides data about "Engagement Project Value Help" in SAP S/4HANA. It reads from 1 data source (I_EngagementProject) and exposes 7 fields with key field EngagementProject.

Data Sources (1)

SourceAliasJoin Type
I_EngagementProject EngagementProject from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IENGMNTPROJVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Engagement Project Value Help view
Consumption.ranked true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY EngagementProject EngagementProject Project ID
EngagementProjectName EngagementProjectName Project Name
EngagementProjectServiceOrg EngagementProjectServiceOrg Service Org.
EngagementProjectType EngagementProjectType
Customer I_EngagementProject Customer Sold-to Party
_Customer I_EngagementProject _Customer
EngagementProjectCategory I_EngagementProject EngagementProjectCategory

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_EngagementProjectVH.
-- 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: IENGMNTPROJVH

CREATE VIEW I_EngagementProjectVH AS
SELECT
  EngagementProject,
  EngagementProjectName,
  EngagementProjectServiceOrg,
  EngagementProjectType,
  EngagementProject.Customer AS Customer,
  EngagementProject._Customer AS _Customer,
  EngagementProject.EngagementProjectCategory AS EngagementProjectCategory
FROM I_EngagementProject AS EngagementProject
;