I_EngmntProjCostCenterActyType

DDL: I_ENGMNTPROJCOSTCENTERACTYTYPE SQL: IEPCCACTYTYPE Type: view COMPOSITE

Engagement Project Cost Center Activity Type

I_EngmntProjCostCenterActyType is a Composite CDS View that provides data about "Engagement Project Cost Center Activity Type" in SAP S/4HANA. It reads from 2 data sources (I_CostCenterActivityType, I_CostCtrActytypeCostCtrCat) and exposes 4 fields with key fields ValidityEndDate, ControllingArea, CostCtrActivityType. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_CostCenterActivityType CostCenterActivityType from
I_CostCtrActytypeCostCtrCat CostCenterCategory inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CostCenterActivityTypeText _Text $projection.ControllingArea = _Text.ControllingArea

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IEPCCACTYTYPE view
EndUserText.label Engagement Project Cost Center Activity Type view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ValidityEndDate I_CostCenterActivityType ValidityEndDate ValidTo
KEY ControllingArea I_CostCenterActivityType ControllingArea Controlling Area
KEY CostCtrActivityType I_CostCenterActivityType CostCtrActivityType Activity Type
_Text _Text

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_EngmntProjCostCenterActyType.
-- 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: IEPCCACTYTYPE

CREATE VIEW I_EngmntProjCostCenterActyType AS
SELECT
  CostCenterActivityType.ValidityEndDate AS ValidityEndDate,
  CostCenterActivityType.ControllingArea AS ControllingArea,
  CostCenterActivityType.CostCtrActivityType AS CostCtrActivityType
FROM I_CostCenterActivityType AS CostCenterActivityType
INNER JOIN I_CostCtrActytypeCostCtrCat AS CostCenterCategory ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CostCenterActivityTypeText AS _Text ON ControllingArea = _Text.ControllingArea  -- association [0..*]
;