A_CnsldtnInvesteeUnitHierT

DDL: A_CNSLDTNINVESTEEUNITHIERT Type: view COMPOSITE Package: FIN_CS_MD_API

Investee Consolidation Unit HierNode - Txt

A_CnsldtnInvesteeUnitHierT is a Composite CDS View that provides data about "Investee Consolidation Unit HierNode - Txt" in SAP S/4HANA. It reads from 3 data sources (A_CnsldtnInvesteeUnitHier, A_CnsldtnUnitHierDir, I_CnsldtnUnitHierNodeTextEnhcd) and exposes 8 fields with key fields ConsolidationUnitHierarchy, HierarchyNode, ValidityEndDate, Language. It has 1 association to related views. It is exposed through 5 OData services (ASQL_F7093, ASQL_F7094, ASQL_F7095, ...). Part of development package FIN_CS_MD_API.

Data Sources (3)

SourceAliasJoin Type
A_CnsldtnInvesteeUnitHier _CnsldtnInvesteeUnitHier inner
A_CnsldtnUnitHierDir _CnsldtnUnitHierDirJ inner
I_CnsldtnUnitHierNodeTextEnhcd _CnsldtnUnitHierNodeText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnUnitHierDir _CnsldtnUnitHierDir $projection.ConsolidationUnitHierarchy = _CnsldtnUnitHierDir.ConsolidationUnitHierarchy and $projection.ValidityEndDate = _CnsldtnUnitHierDir.ValidityEndDate

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ACSINVUNITHIERT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey HierarchyNode view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Investee Consolidation Unit HierNode - Txt view
OData.entitySet.name CnsldtnInvesteeUnitHierText view

OData Services (5)

ServiceBindingVersionContractRelease
ASQL_F7093 ASQL_F7093 C2 NOT_RELEASED
ASQL_F7094 ASQL_F7094 C2 NOT_RELEASED
ASQL_F7095 ASQL_F7095 C2 NOT_RELEASED
ASQL_F7096 ASQL_F7096 C2 NOT_RELEASED
ASQL_F7867 ASQL_F7867 C2 NOT_RELEASED

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationUnitHierarchy I_CnsldtnUnitHierNodeTextEnhcd ConsolidationUnitHierarchy Hierarchy ID
KEY HierarchyNode I_CnsldtnUnitHierNodeTextEnhcd HierarchyNode Node
KEY ValidityEndDate I_CnsldtnUnitHierNodeTextEnhcd ValidityEndDate ValidTo
KEY Language I_CnsldtnUnitHierNodeTextEnhcd Language Report Text Language
HierarchyNodeText I_CnsldtnUnitHierNodeTextEnhcd HierarchyNodeText Node Description
ValidityStartDate I_CnsldtnUnitHierNodeTextEnhcd ValidityStartDate Validity Start Date
NodeType A_CnsldtnInvesteeUnitHier NodeType Object Type
_CnsldtnUnitHierDir _CnsldtnUnitHierDir

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_CnsldtnInvesteeUnitHierT.
-- 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_CnsldtnInvesteeUnitHierT AS
SELECT
  _CnsldtnUnitHierNodeText.ConsolidationUnitHierarchy AS ConsolidationUnitHierarchy,
  _CnsldtnUnitHierNodeText.HierarchyNode AS HierarchyNode,
  _CnsldtnUnitHierNodeText.ValidityEndDate AS ValidityEndDate,
  _CnsldtnUnitHierNodeText.Language AS Language,
  _CnsldtnUnitHierNodeText.HierarchyNodeText AS HierarchyNodeText,
  _CnsldtnUnitHierNodeText.ValidityStartDate AS ValidityStartDate,
  _CnsldtnInvesteeUnitHier.NodeType AS NodeType
FROM I_CnsldtnUnitHierNodeTextEnhcd AS _CnsldtnUnitHierNodeText
INNER JOIN A_CnsldtnUnitHierDir AS _CnsldtnUnitHierDirJ ON /* join condition not captured in parsed metadata */
INNER JOIN A_CnsldtnInvesteeUnitHier AS _CnsldtnInvesteeUnitHier ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN A_CnsldtnUnitHierDir AS _CnsldtnUnitHierDir ON ConsolidationUnitHierarchy = _CnsldtnUnitHierDir.ConsolidationUnitHierarchy AND ValidityEndDate = _CnsldtnUnitHierDir.ValidityEndDate  -- association [0..1]
;