A_EngagementProject

DDL: A_ENGAGEMENTPROJECT SQL: AENGPROJECT Type: view CONSUMPTION

Engagement Project

A_EngagementProject is a Consumption CDS View that provides data about "Engagement Project" in SAP S/4HANA. It reads from 1 data source (I_EngagementProject) and exposes 24 fields with key field EngagementProject. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_EngagementProject A from

Associations (3)

CardinalityTargetAliasCondition
[0..*] A_EngmntProjWrkPckg _WorkPackage $projection.EngagementProject = _WorkPackage.EngagementProject
[0..*] A_EngagementProjectRoles _EngagementProjectRoles $projection.EngagementProject = _EngagementProjectRoles.EngagementProject
[1..1] E_CustomerProject _Extension $projection.EngagementProject = _Extension.CustomerProject

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName AENGPROJECT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Engagement Project view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY EngagementProject I_EngagementProject EngagementProject Engmnt Project ID
EngagementProjectName I_EngagementProject EngagementProjectName User Group
EngagementProjectType I_EngagementProject EngagementProjectType
EngagementProjectStage I_EngagementProject EngagementProjectStage Stage
EngagementProjectServiceOrg I_EngagementProject EngagementProjectServiceOrg Service Org.
EngagementProjectCategory I_EngagementProject EngagementProjectCategory
Currency
ProjectStartDate I_EngagementProject ProjectStartDate Latest Planned Start
ProjectEndDate I_EngagementProject ProjectEndDate Ltst Planned Finish
ProjectVisibility I_EngagementProject ProjectVisibility Confidential
ProjectManager
LastChangeDateTime I_EngagementProject LastChangeDateTime Timestamp
CreationDateTime I_EngagementProject CreationDateTime Timestamp
CostCenter I_EngagementProject CostCenter Cost Center
ProfitCenter I_EngagementProject ProfitCenter Profit Center
Customer I_EngagementProject Customer Sold-to Party
ControllingArea I_EngagementProject ControllingArea Controlling Area
ProjectProfileCode I_EngagementProject ProjectProfileCode Project Profile
CompanyCode I_EngagementProject CompanyCode Receiver Company Code
TimePostingIsRestricted I_EngagementProject RestrictedTimePosting Restrict Unstaffed
ProjectBillingIsUsed I_EngagementProject ProjectBillingIsUsed Invoicing Solution
_WorkPackage _WorkPackage
_EngagementProjectRoles _EngagementProjectRoles
_Customer I_EngagementProject _Customer

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 A_EngagementProject.
-- 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: AENGPROJECT

CREATE VIEW A_EngagementProject AS
SELECT
  A.EngagementProject AS EngagementProject,
  A.EngagementProjectName AS EngagementProjectName,
  A.EngagementProjectType AS EngagementProjectType,
  A.EngagementProjectStage AS EngagementProjectStage,
  A.EngagementProjectServiceOrg AS EngagementProjectServiceOrg,
  A.EngagementProjectCategory AS EngagementProjectCategory,
  A._EngagementProjFinancialPlan.Currency AS Currency,
  A.ProjectStartDate AS ProjectStartDate,
  A.ProjectEndDate AS ProjectEndDate,
  A.ProjectVisibility AS ProjectVisibility,
  A._PersonWorkAgreementDet.PersonWorkAgreement AS ProjectManager,
  A.LastChangeDateTime AS LastChangeDateTime,
  A.CreationDateTime AS CreationDateTime,
  A.CostCenter AS CostCenter,
  A.ProfitCenter AS ProfitCenter,
  A.Customer AS Customer,
  A.ControllingArea AS ControllingArea,
  A.ProjectProfileCode AS ProjectProfileCode,
  A.CompanyCode AS CompanyCode,
  A.RestrictedTimePosting AS TimePostingIsRestricted,
  A.ProjectBillingIsUsed AS ProjectBillingIsUsed,
  A._Customer AS _Customer
FROM I_EngagementProject AS A
LEFT OUTER JOIN A_EngmntProjWrkPckg AS _WorkPackage ON EngagementProject = _WorkPackage.EngagementProject  -- association [0..*]
LEFT OUTER JOIN A_EngagementProjectRoles AS _EngagementProjectRoles ON EngagementProject = _EngagementProjectRoles.EngagementProject  -- association [0..*]
LEFT OUTER JOIN E_CustomerProject AS _Extension ON EngagementProject = _Extension.CustomerProject  -- association [1..1]
;