C_CnsPstRlLgInvsteUntHierarchy

DDL: C_CNSPSTRLLGINVSTEUNTHIERARCHY Type: view_entity CONSUMPTION Package: FIN_CS_RT_LOG

Cnsldtn Pstg Rl Lg Invste Unt Hierarchy

C_CnsPstRlLgInvsteUntHierarchy is a Consumption CDS View that provides data about "Cnsldtn Pstg Rl Lg Invste Unt Hierarchy" in SAP S/4HANA. It reads from 1 data source (I_CnsPstRlLgInvsteUntHierarchy) and exposes 11 fields with key fields CnsldtnPostingRuleLogUUID, HierarchyNode, NodeType. It has 1 association to related views. It is exposed through 2 OData services (ASQL_F8345, UI_FINCS_PSTRLLG_DISPLAY). Part of development package FIN_CS_RT_LOG.

Data Sources (1)

SourceAliasJoin Type
I_CnsPstRlLgInvsteUntHierarchy I_CnsPstRlLgInvsteUntHierarchy projection

Associations (1)

CardinalityTargetAliasCondition
[0..1] C_CnsldtnPstRlLgInvesteeUnit _CnsldtnGroupStructure $projection.ConsolidationGroup = _CnsldtnGroupStructure.ConsolidationGroup and $projection.HierarchyNode = _CnsldtnGroupStructure.ConsolidationUnit and $projection.ConsolidationVersion = _CnsldtnGroupStructure.ConsolidationVersion and $projection.FiscalYearPeriod between _CnsldtnGroupStructure.FromFiscalYearPeriod and _CnsldtnGroupStructure.ToFiscalYearPeriod and $projection.FiscalYearPeriod between _CnsldtnGroupStructure.MethAssgmtFromFiscalYearPeriod and _CnsldtnGroupStructure.MethAssgmtToFiscalYearPeriod

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Cnsldtn Pstg Rl Lg Invste Unt Hierarchy view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #NOT_REQUIRED view
Feature FINCS_RT_PL30 view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F8345 ASQL_F8345 C2 NOT_RELEASED
UI_FINCS_PSTRLLG_DISPLAY UI_FINCS_PSTRLLG_DISPLAY V4 C1 NOT_RELEASED

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY CnsldtnPostingRuleLogUUID CnsldtnPostingRuleLogUUID
KEY HierarchyNode HierarchyNode Node
KEY NodeType NodeType Object Type
ParentNodeType ParentNodeType Object Type
HierarchyNodeText HierarchyNodeText
ConsolidationGroup ConsolidationGroup Cons. Group
ParentNode ParentNode Parent Node
ConsolidationVersion ConsolidationVersion Version
FiscalYearPeriod FiscalYearPeriod Period/Year
InvesteeConsolidationUnit InvesteeConsolidationUnit Investee Unit
_CnsldtnGroupStructure _CnsldtnGroupStructure

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_CnsPstRlLgInvsteUntHierarchy.
-- 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_CnsPstRlLgInvsteUntHierarchy AS
SELECT
  CnsldtnPostingRuleLogUUID,
  HierarchyNode,
  NodeType,
  ParentNodeType,
  HierarchyNodeText,
  ConsolidationGroup,
  ParentNode,
  ConsolidationVersion,
  FiscalYearPeriod,
  InvesteeConsolidationUnit
FROM I_CnsPstRlLgInvsteUntHierarchy
LEFT OUTER JOIN C_CnsldtnPstRlLgInvesteeUnit AS _CnsldtnGroupStructure ON ConsolidationGroup = _CnsldtnGroupStructure.ConsolidationGroup AND HierarchyNode = _CnsldtnGroupStructure.ConsolidationUnit AND ConsolidationVersion = _CnsldtnGroupStructure.ConsolidationVersion AND FiscalYearPeriod between _CnsldtnGroupStructure.FromFiscalYearPeriod AND _CnsldtnGroupStructure.ToFiscalYearPeriod AND FiscalYearPeriod between _CnsldtnGroupStructure.MethAssgmtFromFiscalYearPeriod AND _CnsldtnGroupStructure.MethAssgmtToFiscalYearPeriod  -- association [0..1]
;