C_Costcenteractivityvalhlp

DDL: C_COSTCENTERACTIVITYVALHLP SQL: CCOSTCACTVALHLP Type: view CONSUMPTION

Cost Center Activity Value Help

C_Costcenteractivityvalhlp is a Consumption CDS View that provides data about "Cost Center Activity Value Help" in SAP S/4HANA. It reads from 1 data source (I_CostCenterActivityType) and exposes 9 fields with key fields ValidityEndDate, ControllingArea, CostCtrActivityType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CostCenterActivityType I_CostCenterActivityType from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_CostCenterActivityTypeText _Text $projection.ControllingArea = _Text.ControllingArea and $projection.CostCtrActivityType = _Text.CostCtrActivityType and $projection.ValidityEndDate = _Text.ValidityEndDate and _Text.Language = $session.system_language

Annotations (8)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.sqlViewName CCOSTCACTVALHLP view
VDM.viewType #CONSUMPTION view
EndUserText.label Cost Center Activity Value Help view
AccessControl.authorizationCheck #CHECK view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ValidityEndDate I_CostCenterActivityType ValidityEndDate ValidTo
KEY ControllingArea I_CostCenterActivityType ControllingArea Controlling Area
KEY CostCtrActivityType I_CostCenterActivityType CostCtrActivityType Activity Type
KEY Language _Text Language Report Text Language
CostCtrActivityTypeQtyUnit I_CostCenterActivityType CostCtrActivityTypeQtyUnit Unit
CostCtrActivityTypeName _Text CostCtrActivityTypeName
CostCtrActivityTypeDesc _Text CostCtrActivityTypeDesc
_Text _Text
_UnitOfMeasure _UnitOfMeasure

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_Costcenteractivityvalhlp.
-- 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: CCOSTCACTVALHLP

CREATE VIEW C_Costcenteractivityvalhlp AS
SELECT
  I_CostCenterActivityType.ValidityEndDate AS ValidityEndDate,
  I_CostCenterActivityType.ControllingArea AS ControllingArea,
  I_CostCenterActivityType.CostCtrActivityType AS CostCtrActivityType,
  _Text.Language AS Language,
  I_CostCenterActivityType.CostCtrActivityTypeQtyUnit AS CostCtrActivityTypeQtyUnit,
  _Text.CostCtrActivityTypeName AS CostCtrActivityTypeName,
  _Text.CostCtrActivityTypeDesc AS CostCtrActivityTypeDesc
FROM I_CostCenterActivityType
LEFT OUTER JOIN I_CostCenterActivityTypeText AS _Text ON ControllingArea = _Text.ControllingArea AND CostCtrActivityType = _Text.CostCtrActivityType AND ValidityEndDate = _Text.ValidityEndDate AND _Text.Language = $session.system_language  -- association [0..1]
;