A_CnsldtnFunctionalAreaHierT_2

DDL: A_CNSLDTNFUNCTIONALAREAHIERT_2 Type: view_entity BASIC

Cnsldtn Functional Area Hierarchy - Text

A_CnsldtnFunctionalAreaHierT_2 is a Basic CDS View that provides data about "Cnsldtn Functional Area Hierarchy - Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnFuncnlAreaHierarchyT) and exposes 6 fields with key fields Language, CnsldtnFunctionalAreaHierarchy, ValidityEndDate. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnFuncnlAreaHierarchyT _Source from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_CnsldtnFunctionalAreaHier_2 _Hierarchy $projection.CnsldtnFunctionalAreaHierarchy = _Hierarchy.CnsldtnFunctionalAreaHierarchy and $projection.ValidityEndDate = _Hierarchy.ValidityEndDate

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #TEXT view
OData.entityType.name CnsldtnFuncnlAreaHierarchyText_Type view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Cnsldtn Functional Area Hierarchy - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language I_CnsldtnFuncnlAreaHierarchyT Language Report Text Language
KEY CnsldtnFunctionalAreaHierarchy I_CnsldtnFuncnlAreaHierarchyT CnsldtnFunctionalAreaHierarchy
KEY ValidityEndDate I_CnsldtnFuncnlAreaHierarchyT ValidityEndDate ValidTo
ValidityStartDate I_CnsldtnFuncnlAreaHierarchyT ValidityStartDate Validity Start Date
CnsldtnFunctionalAreaHierText I_CnsldtnFuncnlAreaHierarchyT FunctionalAreaHierarchyName
_Hierarchy _Hierarchy

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_CnsldtnFunctionalAreaHierT_2.
-- 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 A_CnsldtnFunctionalAreaHierT_2 AS
SELECT
  _Source.Language AS Language,
  _Source.CnsldtnFunctionalAreaHierarchy AS CnsldtnFunctionalAreaHierarchy,
  _Source.ValidityEndDate AS ValidityEndDate,
  _Source.ValidityStartDate AS ValidityStartDate,
  _Source.FunctionalAreaHierarchyName AS CnsldtnFunctionalAreaHierText
FROM I_CnsldtnFuncnlAreaHierarchyT AS _Source
LEFT OUTER JOIN A_CnsldtnFunctionalAreaHier_2 AS _Hierarchy ON CnsldtnFunctionalAreaHierarchy = _Hierarchy.CnsldtnFunctionalAreaHierarchy AND ValidityEndDate = _Hierarchy.ValidityEndDate  -- association [1..1]
;