C_OvhdAllocAcctWithCtrlgAreaVH

DDL: C_OVHDALLOCACCTWITHCTRLGAREAVH Type: view_entity CONSUMPTION

Overhead Alloc Account Controlling Area

C_OvhdAllocAcctWithCtrlgAreaVH is a Consumption CDS View that provides data about "Overhead Alloc Account Controlling Area" in SAP S/4HANA. It reads from 2 data sources (I_ControllingArea, I_CostElementOnControllingArea) and exposes 4 fields with key fields CostElement, ControllingArea. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_ControllingArea _ControllingArea from
I_CostElementOnControllingArea _CostElement inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CostElementText _Text _CostElement.ChartOfAccounts = _Text.ChartOfAccounts and _CostElement.CostElement = _Text.CostElement

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Overhead Alloc Account Controlling Area view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.dataCategory #VALUE_HELP view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CostElement
KEY ControllingArea I_CostElementOnControllingArea ControllingArea Controlling Area
CostElementDescription
CostElementName

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_OvhdAllocAcctWithCtrlgAreaVH.
-- 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_OvhdAllocAcctWithCtrlgAreaVH AS
SELECT
  cast( _CostElement.CostElement as fco_alloc_cost_element ) AS CostElement,
  _CostElement.ControllingArea AS ControllingArea,
  _Text[1:Language = $session.system_language].CostElementDescription AS CostElementDescription,
  _Text[1:Language = $session.system_language].CostElementName AS CostElementName
FROM I_ControllingArea AS _ControllingArea
INNER JOIN I_CostElementOnControllingArea AS _CostElement ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CostElementText AS _Text ON _CostElement.ChartOfAccounts = _Text.ChartOfAccounts AND _CostElement.CostElement = _Text.CostElement  -- association [0..*]
;